/* SalesFision Bundle — shared across all *-salesfision blocks */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&family=Playfair+Display:ital,wght@1,400&display=swap');

/* ── Flag Icons (for language switcher) ── */
@import url('https://cdn.jsdelivr.net/npm/flag-icons@7.2.3/css/flag-icons.min.css');

/* ── Hide WordPress theme chrome when salesfision bundle is active ── */
body.sf-hide-chrome > header,
body.sf-hide-chrome > footer,
body.sf-hide-chrome .site-header,
body.sf-hide-chrome .site-footer,
body.sf-hide-chrome #wp-site-header,
body.sf-hide-chrome #wp-site-footer { display: none !important; }

body.sf-hide-chrome { margin: 0 !important; padding: 0 !important; }

/* ──────────────────────────────────────────────────────── */
/* NAV OVERRIDE — force transparent at rest, glass on scroll */
/* The index page had this pattern; other pages baked glass  */
/* styles in by default. We unify here across all pages.     */
/* ──────────────────────────────────────────────────────── */
body.sf-hide-chrome nav {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
}
body.sf-hide-chrome nav.glass {
    background: rgba(18,18,18,0.45) !important;
    backdrop-filter: blur(18px) saturate(1.6) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.6) !important;
    border-color: rgba(255,255,255,0.1) !important;
    box-shadow: 0 4px 32px rgba(0,0,0,0.4) !important;
}

/* ── Mobile responsive (from original css/mobile.css) ── */
/* ===== SALESFISION — MOBILE RESPONSIVE ===== */
/* Only affects screens ≤ 900px. Desktop design is completely untouched. */

/* ── FLAG ICONS (all screen sizes) ── */
#langFlag.fi,
.lang-menu a .fi {
  width: 18px !important;
  height: 13px !important;
  border-radius: 2px;
  vertical-align: middle;
  display: inline-block !important;
  margin-right: 2px;
  background-size: cover;
}

/* ── HAMBURGER BUTTON (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  /* position: relative is required for z-index to apply */
  position: relative;
  z-index: 10003;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 900px) {

  /* ── NAVBAR ── */
  /* Raise nav-wrapper above the overlay so hamburger stays clickable.
     IMPORTANT: drop the desktop transform — it would otherwise make
     `.nav-wrapper` a containing block for the position:fixed nav-links,
     trapping the fullscreen overlay inside the small navbar rectangle. */
  .nav-wrapper {
    width: calc(100% - 32px) !important;
    top: 10px !important;
    left: 16px !important;
    transform: none !important;
    z-index: 10003 !important;
  }
  nav { padding: 13px 20px !important; border-radius: 40px !important; }
  .nav-hamburger { display: flex !important; }

  /* When the fullscreen menu is open, <nav> must NOT establish a containing
     block for the position:fixed overlay (otherwise it opens "half" once the
     scroll-triggered .glass backdrop-filter is active).
     The `body.sf-hide-chrome` prefix is REQUIRED: it must out-specify the
     `body.sf-hide-chrome nav.glass` rule above, else (both !important) the
     glass backdrop-filter wins and traps the overlay. Do not remove it. */
  body.sf-hide-chrome nav.sf-menu-open,
  body.sf-hide-chrome nav.sf-menu-open.glass {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
    filter: none !important;
    /* Drop the filter INSTANTLY, not over the 0.35s nav transition: while the
       blur animates down it stays a containing block and traps the overlay at
       navbar size for ~350ms before it snaps to fullscreen (the "open stutter"). */
    transition: none !important;
  }

  .nav-links {
    /* Always laid out (fullscreen) but hidden, so opening can fade in smoothly.
       opacity/visibility (not display) is animatable; opacity creates no
       containing block, so the fixed overlay stays viewport-sized. */
    display: flex !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(8, 8, 8, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    flex-direction: column !important;
    align-items: center !important;
    /* flex-start + padding prevents the overflow-scroll bug with justify-content:center */
    justify-content: flex-start !important;
    gap: 0 !important;
    z-index: 10002 !important;
    padding: 90px 32px 48px !important;
    overflow-y: auto !important;
    border: none !important;
  }
  .nav-links.nav-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: opacity 0.3s ease !important;
  }

  .nav-links > a {
    font-size: 20px !important;
    color: #ccc !important;
    padding: 14px 0 !important;
    width: 100% !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    display: block !important;
  }
  .nav-links > a:last-child { border-bottom: none !important; }
  .nav-links > a:active, .nav-links > a:hover { color: #fff !important; }
  .nav-links .nav-lang {
    font-size: 15px !important;
    color: #666 !important;
    margin-top: 8px !important;
    border-bottom: none !important;
  }

  /* Services: always fully visible on mobile — no collapsible needed */
  .nav-dropdown {
    width: 100% !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    padding-bottom: 8px !important;
    margin-bottom: 4px !important;
  }
  /* "Our Services" label */
  .nav-dropdown-btn {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #e63946 !important;
    padding: 14px 0 8px !important;
    display: block !important;
    width: 100% !important;
    cursor: default !important;
    pointer-events: none !important;
  }
  /* Always show the dropdown links on mobile */
  .dropdown-menu {
    position: static !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    min-width: unset !important;
    max-width: 100% !important;
    width: 100% !important;
    transition: none !important;
  }
  /* Mega-menu stacks vertically on mobile — clean list, no heavy cards */
  .nav-mega .mega-menu {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
  }
  .nav-mega .mega-menu::before { display: none !important; }
  .mega-col {
    padding: 18px 0 14px !important;
    text-align: left !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .mega-col:last-child { border-bottom: none !important; }
  .mega-col:hover { background: transparent !important; }
  .mega-col .mega-tag {
    display: inline-block !important;
    align-self: flex-start !important;
    margin: 0 0 8px !important;
    font-size: 9.5px !important;
    font-weight: 800 !important;
    letter-spacing: 1.2px !important;
    color: #fca5a5 !important;
    background: rgba(230,57,70,0.14) !important;
    border: 1px solid rgba(230,57,70,0.30) !important;
    padding: 3px 9px !important;
    border-radius: 999px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }
  .mega-col h6 {
    display: block !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    color: rgba(255,255,255,0.85) !important;
    margin: 0 0 6px !important;
    padding: 0 !important;
    text-align: left !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
    min-height: 0 !important;
  }
  .mega-col h6::after { display: none !important; }
  .mega-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  .mega-col ul li a {
    padding: 8px 0 !important;
    background: transparent !important;
    border: none !important;
    border-left: 0 !important;
    text-align: left !important;
    display: block !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }
  .mega-col ul li a .mega-name {
    display: block !important;
    font-size: 17px !important;
    color: #f0f0f0 !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    margin-bottom: 1px !important;
  }
  /* Hide the service descriptions (Customer Research, Project Management, …)
     in the mobile mega-menu — names only on mobile. */
  .mega-col ul li a small {
    display: none !important;
  }
  .mega-col ul li a:hover .mega-name { color: #fff !important; }
  .mega-col ul li a:hover small { color: #fca5a5 !important; }
  .dropdown-menu a {
    text-align: center !important;
    font-size: 17px !important;
    color: #bbb !important;
    padding: 9px 0 !important;
    display: block !important;
    white-space: normal !important;
    border-radius: 0 !important;
    background: transparent !important;
  }
  .dropdown-menu a:active, .dropdown-menu a:hover { color: #fff !important; background: transparent !important; }

  /* Language switcher in mobile menu */
  .lang-switcher .nav-dropdown-btn {
    font-size: 13px !important;
    color: #888 !important;
    letter-spacing: 1px !important;
    cursor: default !important;
    pointer-events: none !important;
    padding: 12px 0 6px !important;
    text-transform: none !important;
  }
  .lang-switcher .dropdown-menu a {
    font-size: 18px !important;
    color: #ccc !important;
    padding: 8px 0 !important;
  }

  /* ── HERO ── */
  .hero { padding: 110px 24px 60px !important; }
  .hero h1 { font-size: clamp(36px, 9vw, 54px) !important; letter-spacing: -1px !important; margin-bottom: 16px !important; }
  .hero .sub { font-size: 14px !important; }
  .btn-hero { display: block !important; width: 100% !important; text-align: center !important; box-sizing: border-box !important; margin-bottom: 12px !important; }
  .btn-primary { display: block !important; width: 100% !important; text-align: center !important; box-sizing: border-box !important; margin-bottom: 32px !important; }
  .hero-socials { gap: 10px !important; flex-wrap: wrap !important; justify-content: center !important; }

  /* ── SECTION INNER ── */
  .section-inner { padding: 60px 20px !important; }
  .section-title h2 { font-size: 32px !important; }
  .section-title p { font-size: 15px !important; }

  /* ── FEATURE ROWS ── */
  .feature-row {
    flex-direction: column !important;
    padding: 60px 20px !important;
    gap: 40px !important;
  }
  .feature-row.reverse { flex-direction: column !important; }
  .feature-text h2 { font-size: 28px !important; line-height: 1.25 !important; }
  .feature-text p { font-size: 16px !important; margin-bottom: 24px !important; }
  .feature-text .feature-sub { font-size: 16px !important; }
  .feature-img { min-height: unset !important; width: 100% !important; }
  .see-more, .btn-outline { display: block !important; width: 100% !important; text-align: center !important; box-sizing: border-box !important; }

  /* ── SERVICE PAGE ANIMATION CONTAINERS ── */
  /* Scale down the animation boxes so they fit mobile without overflowing */
  .feature-img > div[style*="width:600px"],
  .feature-img > div[style*="width:500px"],
  .feature-img > div[style*="width:560px"],
  .feature-img > div[style*="width:520px"],
  .feature-img > div[style*="width:540px"],
  .fv-wrap, .ai-wrap, .hs-wrap, .sm-wrap, .ra-wrap, .soc-wrap {
    transform: scale(0.7) !important;
    transform-origin: top center !important;
    margin-bottom: -80px !important;
  }

  /* ── SERVICES GRID (5-col → 2-col) ── */
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; margin-top: 32px !important; }
  .svc-card { padding: 18px 12px !important; }
  .svc-card .svc-icon { width: 48px !important; height: 48px !important; margin-bottom: 12px !important; }

  /* ── BLOG / USE CASES ── */
  .usecases-grid { grid-template-columns: 1fr !important; padding: 0 20px !important; }
  .usecases-header { padding: 0 20px !important; }
  .usecases-header h2 { font-size: 28px !important; }
  .blog-grid { grid-template-columns: 1fr !important; }

  /* ── PRICING ── */
  .pricing-section { padding: 80px 20px !important; }
  .pricing-inner h2 { font-size: 30px !important; }
  .pricing-inner .sub { font-size: 14px !important; }
  .pricing-cards { flex-direction: column !important; align-items: center !important; gap: 20px !important; }
  .pricing-card { width: 100% !important; max-width: 420px !important; padding: 36px 24px !important; }
  .pricing-section .astronaut { display: none !important; }

  /* ── TESTIMONIALS ── */
  .testimonials-section { padding: 64px 20px !important; }
  .testimonials-grid { gap: 16px !important; margin-top: 36px !important; }
  .testimonial-card { width: 100% !important; min-width: unset !important; padding: 28px 20px !important; }

  /* ── CTA SECTION ── */
  .cta-section { padding: 64px 20px !important; }
  .cta-card { padding: 40px 20px !important; }
  .cta-section h2 { font-size: 26px !important; }
  .cta-section p { font-size: 14px !important; }
  .cta-section .btn-outline,
  .cta-section a.btn-outline { display: inline-block !important; width: auto !important; }

  /* ── FOOTER ── */
  footer { padding: 48px 20px 28px !important; }
  .footer-top { flex-direction: column !important; align-items: flex-start !important; gap: 20px !important; padding-bottom: 24px !important; margin-bottom: 32px !important; }
  .footer-cols { flex-direction: column !important; gap: 24px !important; margin-bottom: 32px !important; }
  .footer-col { min-width: unset !important; }
  .footer-bottom { flex-direction: column !important; align-items: flex-start !important; gap: 10px !important; }

  /* ── DECORATIVE ELEMENTS ── */
  .page-deco { display: none !important; }

  /* ── RESULTS / STATS (index) ── */
  .results-inner { flex-direction: column !important; gap: 32px !important; align-items: center !important; }
  .results-num { font-size: 48px !important; }

  /* ── PAGE HERO (sub-pages) ── */
  .page-hero { padding: 110px 20px 48px !important; }
  .page-hero h1 { font-size: 32px !important; }
  .page-hero p { font-size: 15px !important; }

  /* ── ABOUT PAGE TIMELINE ── */
  .timeline-inner { padding: 60px 20px !important; }
  .timeline-title { margin-bottom: 40px !important; }
  .timeline-title h2 { font-size: 28px !important; }
  .timeline::before { display: none !important; }
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) { flex-direction: column !important; gap: 12px !important; margin-bottom: 24px !important; }
  .timeline-dot { display: none !important; }
  .timeline-content { text-align: left !important; padding: 20px !important; }
  .timeline-content:nth-child(1) { text-align: left !important; }

  /* ── CONTACT PAGE ── */
  .contact-section { padding: 60px 20px !important; }
  .contact-info h2 { font-size: 26px !important; }
  .contact-form { padding: 24px 16px !important; }
  .map-section { padding: 40px 20px !important; }

  /* ── MODAL ── */
  #meetingModal { padding: 12px !important; }
  .modal-box-wrapper { max-width: 100% !important; width: 100% !important; }
  .modal-box-wrapper > div { padding: 32px 16px !important; border-radius: 16px !important; }
  .modal-options { grid-template-columns: 1fr !important; gap: 6px !important; }
  #meetingModal .modal-box-wrapper > div > div[style*="display:grid"] {
    grid-template-columns: 1fr !important;
  }
  #meetingModal h2 { font-size: 22px !important; }

  /* ── SERVICE PAGE INNER LAYOUTS ── */
  .section-inner [style*="display:flex"][style*="gap"] {
    flex-wrap: wrap !important;
  }

  /* Trusted logos — reduce height on mobile */
  .logo-item { height: 60px !important; min-width: 110px !important; padding: 0 16px !important; }
  .logo-item img { height: 26px !important; }

}

/* Extra small screens */
@media (max-width: 480px) {
  .hero h1 { font-size: 32px !important; }
  .section-title h2 { font-size: 26px !important; }
  .feature-text h2 { font-size: 24px !important; }
  .services-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .pricing-card { max-width: 100% !important; }
}

/* ── FOOTER COLUMN REORDER (all breakpoints) — Services → Extra's → Contact ── */
.footer-cols .footer-col:nth-child(1) { order: 4; } /* Contact → last */
.footer-cols .footer-col:nth-child(2) { order: 3; } /* Extra's → 3rd */
.footer-cols .footer-col:nth-child(3) { order: 1; } /* Services col 1 → 1st */
.footer-cols .footer-col:nth-child(4) { order: 2; } /* Services col 2 → 2nd */

/* ── FLOATING "BOOK MEETING" CTA ── */
.sf-sticky-book {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #e63946;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 0 rgba(230,57,70,0.6), 0 8px 28px rgba(230,57,70,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.sf-sticky-book:hover {
  transform: translateY(-2px) scale(1.03);
  background: #d62b38;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55), 0 0 0 4px rgba(230,57,70,0.18), 0 10px 32px rgba(230,57,70,0.6);
}
.sf-sticky-pulse {
  position: relative;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
.sf-sticky-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  animation: sfStickyPulse 2s ease-out infinite;
}
@keyframes sfStickyPulse {
  0%   { transform: scale(0.85); opacity: 0.55; }
  100% { transform: scale(1.7);  opacity: 0; }
}

@media (max-width: 600px) {
  .sf-sticky-book { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }
}

/* ── GLOBAL RED BUTTON STYLE (matches platform "See a live demo") ── */
.btn-primary {
  position: relative !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #e63946 !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 14.5px !important;
  letter-spacing: 0.2px !important;
  line-height: 1 !important;
  padding: 16px 32px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  box-shadow: 0 0 0 0 rgba(230,57,70,0.45), 0 18px 40px -12px rgba(230,57,70,0.55) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
}
.btn-primary:hover {
  transform: translateY(-2px) !important;
  background: #d62b38 !important;
  color: #fff !important;
  box-shadow: 0 0 0 4px rgba(230,57,70,0.18), 0 22px 44px -10px rgba(230,57,70,0.7) !important;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  pointer-events: none;
  animation: sfBtnShine 3.4s 1.2s ease-in-out infinite;
}
@keyframes sfBtnShine {
  0%   { transform: translateX(-120%); }
  55%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

/* ── COMPACT CTA (site-wide) ── */
.cta-compact {
  padding: 80px 24px !important;
  background: #0a0a0a !important;
}
.cta-compact .cta-card {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 38px 48px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #181818 0%, #0e0e0e 100%) !important;
  border: 1px solid rgba(230,57,70,0.32) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  text-align: center !important;
  box-shadow: 0 22px 60px -22px rgba(230,57,70,0.45), 0 0 0 1px rgba(230,57,70,0.05) !important;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.cta-compact .cta-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 520px 220px at 100% 0%, rgba(230,57,70,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-compact .cta-card > * { position: relative; z-index: 1; }
.cta-compact .cta-card:hover {
  border-color: rgba(230,57,70,0.55) !important;
  transform: translateY(-2px);
  box-shadow: 0 26px 70px -22px rgba(230,57,70,0.6), 0 0 0 1px rgba(230,57,70,0.1) !important;
}
.cta-compact .cta-card .section-badge { margin-bottom: 14px !important; }
.cta-compact .cta-card h2 {
  font-size: clamp(24px, 2.6vw, 34px) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.15 !important;
  margin: 0 0 10px !important;
  letter-spacing: -0.4px;
}
.cta-compact .cta-card h2 span { color: #e63946 !important; }
.cta-compact .cta-card h2 span.cta-h-white { color: #fff !important; }
.cta-compact .cta-card p {
  font-size: 14.5px !important;
  color: rgba(255,255,255,0.62) !important;
  margin: 0 0 24px !important;
  line-height: 1.5;
}
.cta-compact .cta-card .btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  padding: 16px 30px !important;
  font-size: 14.5px !important;
  white-space: nowrap;
  margin: 0 !important;
}
@media (max-width: 760px) {
  .cta-compact .cta-card { padding: 28px 26px !important; }
}

/* ── DASHBOARD MOCKUP (shared, used on platform & service pages) ── */
.sf-dash {
  width: 100%;
  background: linear-gradient(180deg, #14171f 0%, #0e1018 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.32), 0 0 0 1px rgba(232,54,66,0.04) inset;
}
.sf-dash-chrome { display: flex; align-items: center; gap: 14px; padding: 12px 16px; background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.06); }
.sf-dash-dots { display: flex; gap: 6px; }
.sf-dash-dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.sf-dash-dots span:nth-child(1) { background: #ff5f57; }
.sf-dash-dots span:nth-child(2) { background: #febc2e; }
.sf-dash-dots span:nth-child(3) { background: #28c840; }
.sf-dash-url { flex: 1; text-align: center; font-size: 12.5px; color: rgba(255,255,255,0.55); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; background: rgba(0,0,0,0.35); padding: 6px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.06); }
.sf-dash-url .lock { color: #28c840; margin-right: 6px; font-size: 9px; vertical-align: middle; }
.sf-dash-body { display: grid; grid-template-columns: 200px 1fr; min-height: 420px; }
.sf-dash-side { background: rgba(0,0,0,0.25); border-right: 1px solid rgba(255,255,255,0.06); padding: 18px 14px; font-size: 13px; }
.sf-dash-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.sf-dash-brand-dot { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, #e63946 0%, #ff7043 100%); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; letter-spacing: 0.5px; }
.sf-dash-brand-name { font-size: 12.5px; font-weight: 700; color: #fff; line-height: 1.25; }
.sf-dash-brand-name small { display: block; font-weight: 500; font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 1px; }
.sf-dash-side h6 { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 1.4px; text-transform: uppercase; margin: 18px 0 10px; padding: 0 6px; }
.sf-dash-side ul { list-style: none; padding: 0; margin: 0 0 6px; }
.sf-dash-side li { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 7px; color: rgba(255,255,255,0.7); font-size: 12.5px; }
.sf-dash-side li.active { background: rgba(232,54,66,0.12); color: #fff; }
.sf-dash-side li .dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.35); flex-shrink: 0; }
.sf-dash-side li.active .dot { background: #e63946; box-shadow: 0 0 8px #e63946; }
.sf-dash-side li .badge { margin-left: auto; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); padding: 1px 8px; border-radius: 999px; font-size: 10.5px; font-weight: 700; }
.sf-dash-main { padding: 22px 24px; min-width: 0; }
.sf-dash-topline { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; gap: 14px; flex-wrap: wrap; }
.sf-dash-topline h3 { font-size: 16px; font-weight: 700; color: #fff; margin: 0; line-height: 1.3; }
.sf-dash-topline h3 small { display: block; font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,0.4); margin-top: 4px; }
.sf-dash-pills { display: flex; gap: 4px; background: rgba(0,0,0,0.4); padding: 3px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.06); }
.sf-dash-pills .pill { background: transparent; border: 0; color: rgba(255,255,255,0.6); font-size: 11.5px; font-weight: 600; padding: 5px 12px; border-radius: 6px; cursor: pointer; }
.sf-dash-pills .pill.active { background: rgba(232,54,66,0.18); color: #fff; }
.sf-dash-funnel { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 12px; margin-bottom: 16px; }
.sf-dash-funnel .funnel-cell { padding: 0 6px; border-right: 1px solid rgba(255,255,255,0.05); min-width: 0; }
.sf-dash-funnel .funnel-cell:last-child { border-right: 0; }
.sf-dash-funnel .funnel-cell .stage { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sf-dash-funnel .funnel-cell .stage b { color: #e63946; font-weight: 800; }
.sf-dash-funnel .funnel-cell .num { font-size: 17px; font-weight: 800; color: #fff; line-height: 1; }
.sf-dash-funnel .funnel-cell .delta { font-size: 11px; font-weight: 700; margin-top: 4px; }
.sf-dash-funnel .funnel-cell .delta.up { color: #5fd49b; }
.sf-dash-funnel .funnel-cell .delta.down { color: #ff7c7c; }
.sf-dash-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sf-dash-card { background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 14px; min-width: 0; }
.sf-dash-card h5 { font-size: 13.5px; font-weight: 700; color: #fff; margin: 0 0 2px; }
.sf-dash-card .h5-sub { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.sf-dash-card .chart-wrap { width: 100%; height: 130px; }
.sf-dash-card .chart-wrap svg { width: 100%; height: 100%; display: block; }
.sf-dash-card .chart-grid line { stroke: rgba(255,255,255,0.05); stroke-dasharray: 2 4; }
.sf-work-list { display: flex; flex-direction: column; gap: 8px; }
.sf-work-list .work-item { display: grid; grid-template-columns: 78px 1fr auto; gap: 10px; align-items: center; padding: 8px 10px; border-radius: 8px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); }
.sf-work-list .work-item .key { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10.5px; color: rgba(255,255,255,0.5); }
.sf-work-list .work-item .title { font-size: 12.5px; font-weight: 600; color: #fff; line-height: 1.3; }
.sf-work-list .work-item .title small { display: block; font-size: 10.5px; font-weight: 500; color: rgba(255,255,255,0.4); margin-top: 2px; }
.sf-work-list .work-item .status { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 8px; border-radius: 4px; white-space: nowrap; }
.sf-work-list .work-item .status.doing { background: rgba(96,165,250,0.18); color: #93c5fd; }
.sf-work-list .work-item .status.review { background: rgba(255,179,71,0.18); color: #ffd28a; }
.sf-work-list .work-item .status.todo { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); }
.sf-work-list .work-item .status.done { background: rgba(95,212,155,0.18); color: #8eebbb; }
@media (max-width: 900px) {
  .sf-dash-body { grid-template-columns: 1fr; }
  .sf-dash-side { display: none; }
  .sf-dash-funnel { grid-template-columns: repeat(3, 1fr); }
  .sf-dash-funnel .funnel-cell:nth-child(3n) { border-right: 0; }
  .sf-dash-cols { grid-template-columns: 1fr; }
  .sf-dash-url { font-size: 10.5px; }
}

/* CTA badge always red, even on service pages with thematic badge colors */
.cta-compact .cta-card .section-badge {
  background: rgba(230,57,70,0.18) !important;
  border: 1px solid rgba(230,57,70,0.45) !important;
  color: #fca5a5 !important;
  border-radius: 10px !important;
  padding: 5px 13px !important;
}

.sf-dash-brand-dot img { width: 60%; height: 60%; object-fit: contain; display: block; }

/* ── KANBAN BOARD (shared with home + service pages) ── */
.feature-board { padding: 0 !important; }
.feature-board .sf-dash { max-width: none !important; margin: 0 !important; }

.feature-board .kanban {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.feature-board .kanban-col {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 8px;
  display: flex; flex-direction: column; gap: 8px;
  min-width: 0;
}
.feature-board .kb-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  padding: 0 4px 6px; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.feature-board .kb-dot { width: 7px; height: 7px; border-radius: 50%; }
.feature-board .kb-dot-todo   { background: rgba(255,255,255,0.5); }
.feature-board .kb-dot-doing  { background: #93c5fd; box-shadow: 0 0 6px rgba(147,197,253,0.7); }
.feature-board .kb-dot-review { background: #ffd28a; box-shadow: 0 0 6px rgba(255,210,138,0.7); }
.feature-board .kb-dot-done   { background: #5fd49b; box-shadow: 0 0 6px rgba(95,212,155,0.7); }
.feature-board .kb-title { flex: 1; }
.feature-board .kb-count {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  font-size: 10px; font-weight: 700; padding: 1px 7px; border-radius: 999px;
}

.feature-board .kb-card {
  background: linear-gradient(180deg, #1c1f29 0%, #14171f 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 9px 10px;
  display: flex; flex-direction: column; gap: 7px;
  cursor: grab;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.feature-board .kb-card:hover { transform: translateY(-1px); border-color: rgba(230,57,70,0.3); }
.feature-board .kb-card-done { opacity: 0.55; }
.feature-board .kb-card-done .kb-text { text-decoration: line-through; }

.feature-board .kb-tag {
  align-self: flex-start;
  font-size: 9px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 2px 7px; border-radius: 999px;
}
.feature-board .tag-purple { background: rgba(167,139,250,0.18); color: #c4b5fd; border: 1px solid rgba(167,139,250,0.32); }
.feature-board .tag-blue   { background: rgba(96,165,250,0.18);  color: #93c5fd; border: 1px solid rgba(96,165,250,0.32); }
.feature-board .tag-red    { background: rgba(230,57,70,0.18);   color: #fca5a5; border: 1px solid rgba(230,57,70,0.4); }
.feature-board .tag-orange { background: rgba(255,179,71,0.18);  color: #ffd28a; border: 1px solid rgba(255,179,71,0.32); }
.feature-board .tag-green  { background: rgba(95,212,155,0.18);  color: #8eebbb; border: 1px solid rgba(95,212,155,0.32); }

.feature-board .kb-text { font-size: 12px; font-weight: 600; color: #fff; line-height: 1.35; }
.feature-board .kb-meta { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.feature-board .kb-avatar {
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff; letter-spacing: 0.3px;
  border: 1.5px solid rgba(0,0,0,0.4);
}
.feature-board .a-1 { background: linear-gradient(135deg, #e63946, #ff7043); }
.feature-board .a-2 { background: linear-gradient(135deg, #5AA9FF, #1F4A8B); }
.feature-board .a-3 { background: linear-gradient(135deg, #B78CFF, #5A3FB7); }
.feature-board .kb-priority {
  font-size: 9px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 2px 6px; border-radius: 4px;
}
.feature-board .kb-priority.high { background: rgba(230,57,70,0.25); color: #fca5a5; }

@media (max-width: 1100px) {
  .feature-board .sf-dash-side { display: none; }
  .feature-board .sf-dash-body { grid-template-columns: 1fr; min-height: 0; }
}
@media (max-width: 720px) {
  .feature-board .kanban { grid-template-columns: 1fr; }
}

/* Reset native <button> defaults when used with .btn-primary */
button.btn-primary {
  border: 0 !important;
  cursor: pointer;
  font-family: inherit !important;
  -webkit-appearance: none;
  appearance: none;
}

/* ── MEGA MENU (Our Services dropdown) ── */
.nav-mega { position: relative; }
.nav-mega .mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 880px;
  max-width: 92vw;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 8px;
  padding: 22px;
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(230,57,70,0.04) inset;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s, visibility 0.22s, transform 0.22s;
  z-index: 200;
}
.nav-mega:hover .mega-menu,
.nav-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-mega .mega-menu::before {
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0; height: 14px;
  background: transparent;
}

.mega-col {
  padding: 10px 8px;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.mega-col:hover { background: rgba(255,255,255,0.025); }

.mega-col {
  display: flex;
  flex-direction: column;
  padding: 4px 0 4px 4px;
}
.mega-col:hover { background: transparent; }
.mega-col .mega-tag {
  display: inline-block;
  align-self: flex-start;
  margin-left: 0;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fca5a5;
  background: rgba(230,57,70,0.16);
  border: 1px solid rgba(230,57,70,0.32);
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 12px;
  white-space: nowrap;
}
.mega-col h6 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  padding: 0 0 10px;
  letter-spacing: -0.2px;
  position: relative;
  min-height: 30px;
}
.mega-col h6::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 22px; height: 2px;
  background: #e63946;
}
.mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-col ul li { margin: 0; }
.mega-col ul li a {
  display: flex !important;
  flex-direction: column;
  align-items: stretch !important;
  gap: 2px;
  padding: 8px 10px 8px 0 !important;
  margin: 0 0 0 -2px;
  border-radius: 8px !important;
  font-size: 13px !important;
  color: #ddd !important;
  white-space: normal !important;
  background: transparent !important;
  border-left: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, padding-left 0.15s ease;
}
.mega-col ul li a .mega-name {
  font-weight: 700;
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.2;
}
.mega-col ul li a small {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-top: 2px;
}
.mega-col ul li a:hover {
  background: rgba(230,57,70,0.10) !important;
  border-left-color: #e63946;
  padding-left: 8px !important;
  color: #fff !important;
}
.mega-col ul li a:hover small { color: #fca5a5; }

@media (max-width: 1100px) {
  .nav-mega .mega-menu { min-width: 680px; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-mega .mega-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    min-width: 0;
    max-width: 100%;
    grid-template-columns: 1fr;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 8px 0 !important;
  }
  .mega-col h6 { font-size: 14px; }
}

/* Language picker: re-enabled now the Translate routing layer is active
   (was: TEMP hidden). Only the legacy ?lang= fallback stays hidden — it is
   non-functional without Translate and was the block this rule used to hide. */
.lang-switcher--legacy-hidden { display: none !important; }

/* Hide service subtitles in mega-menu */
.mega-menu small { display: none !important; }

/* Legal page (Terms / Privacy) */
.sf-legal-page { background: #0c0c0c; color: #d7d7d7; margin: 0; }
.legal-hero { background: #0c0c0c; padding: 140px 24px 60px; text-align: center; }
.legal-hero-inner { max-width: 820px; margin: 0 auto; }
.legal-hero h1 { color: #fff; font-size: 48px; font-weight: 800; letter-spacing: -0.5px; margin: 16px 0 18px; }
.legal-hero-sub { color: #b5b5b5; font-size: 17px; line-height: 1.6; margin: 0 0 18px; }
.legal-hero-meta { display: inline-block; color: #888; font-size: 13px; letter-spacing: 0.4px; text-transform: uppercase; }
.legal-body { background: #0c0c0c; padding: 20px 24px 120px; }
.legal-body-inner { max-width: 820px; margin: 0 auto; }
.legal-body-inner h2 { color: #fff; font-size: 22px; font-weight: 700; margin: 48px 0 14px; letter-spacing: -0.2px; }
.legal-body-inner h2:first-child { margin-top: 0; }
.legal-body-inner h3 { color: #fff; font-size: 18px; font-weight: 700; margin: 36px 0 12px; }
.legal-body-inner h4 { color: #fff; font-size: 16px; font-weight: 600; margin: 24px 0 10px; }
.legal-body-inner p { color: #c0c0c0; font-size: 15.5px; line-height: 1.75; margin: 0 0 14px; }
.legal-body-inner ul, .legal-body-inner ol { color: #c0c0c0; font-size: 15.5px; line-height: 1.75; padding-left: 22px; margin: 0 0 14px; }
.legal-body-inner li { margin-bottom: 6px; }
.legal-body-inner strong { color: #fff; font-weight: 600; }
.legal-body-inner a { color: #ff6b75; text-decoration: underline; }
@media (max-width: 720px) {
  .legal-hero { padding: 100px 18px 40px; }
  .legal-hero h1 { font-size: 32px; }
  .legal-body { padding: 8px 18px 80px; }
  .legal-body-inner h2 { font-size: 19px; }
}

/* ── Shared per-page FAQ accordion (sf_render_faq). Accent via --sf-accent, set per page (defaults to brand red). Badge inherits the page's own .section-badge colour. ── */
.sf-faq { padding: 100px 40px; }
.sf-faq .section-inner { max-width: 1200px; margin: 0 auto; }
.sf-faq .section-title { text-align: center; margin-bottom: 48px; }
.sf-faq .section-title h2 { font-size: 36px; font-weight: 800; color: #fff; margin: 0; }
.sf-faq .sf-faq-list { max-width: 800px; margin: 0 auto; }
.sf-faq .sf-faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.sf-faq .sf-faq-q { width: 100%; background: none; border: none; color: #fff; font-family: inherit; font-size: 15px; font-weight: 600; text-align: left; padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.sf-faq .sf-faq-q:hover { color: var(--sf-accent, #e63946); }
.sf-faq .sf-faq-icon { width: 24px; height: 24px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; transition: transform 0.3s, background 0.2s, border-color 0.2s; }
.sf-faq .sf-faq-item.open .sf-faq-icon { transform: rotate(45deg); background: var(--sf-accent, #e63946); border-color: var(--sf-accent, #e63946); color: #fff; }
.sf-faq .sf-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.sf-faq .sf-faq-a-inner { padding: 0 0 24px; font-size: 14px; color: #888; line-height: 1.7; }
.sf-faq .sf-faq-item.open .sf-faq-a { max-height: 600px; }
@media (max-width: 720px) { .sf-faq { padding: 60px 20px; } }

/* ===================================================================
 * BASE CHROME + RESET — re-homed from the bespoke carrier blocks
 * (e.g. about-stats-salesfision/style.css) which previously supplied the
 * desktop nav/footer/typography base. After migrating carrier blocks to
 * library blocks, this base must live globally so site-chrome (nav/footer)
 * renders correctly on every page. Desktop base only; responsive/mega rules
 * remain above. =================================================== */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Open Sans', Arial, sans-serif; background-color: #0d0d0d; color: #ccc; line-height: 1.7; }
body a { text-decoration: none; color: inherit; }

/* nav */
.nav-wrapper { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 1000; width: calc(100% - 120px); max-width: 1400px; }
.nav-wrapper nav { background: transparent; border: 1px solid transparent; border-radius: 50px; padding: 20px 40px; display: flex; align-items: center; justify-content: space-between; transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; }
.nav-wrapper nav.glass { background: rgba(18,18,18,0.45); backdrop-filter: blur(18px) saturate(1.6); -webkit-backdrop-filter: blur(18px) saturate(1.6); border-color: rgba(255,255,255,0.1); box-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.nav-logo img { height: 22px; width: auto; display: block; }
.nav-logo { font-size: 19px; font-weight: 700; color: #fff; letter-spacing: -0.3px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 14px; color: #bbb; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #e63946; }
.nav-dropdown { position: relative; }
.nav-dropdown-btn { font-size: 14px; color: #bbb; font-weight: 500; cursor: pointer; transition: color 0.2s; white-space: nowrap; }
.nav-dropdown:hover .nav-dropdown-btn { color: #fff; }
.dropdown-menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px); background: rgba(14,14,14,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 8px; min-width: 210px; opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s, transform 0.2s; z-index: 200; box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { display: block; padding: 9px 14px; font-size: 13px; color: #aaa; border-radius: 8px; transition: background 0.15s, color 0.15s; white-space: nowrap; }
.dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: #fff; }

/* footer */
footer { background: #0a0a0a; padding: 80px 40px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 48px; }
.footer-logo img { height: 36px; width: auto; display: block; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; margin-bottom: 48px; }
.footer-col { flex: 1; min-width: 140px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a, .footer-col span { display: block; font-size: 13px; color: #888; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #e63946; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p, .footer-legal { font-size: 12px; color: #555; }
.footer-legal a { color: #555; transition: color 0.2s; }
.footer-legal a:hover { color: #e63946; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #888; font-size: 13px; transition: border-color 0.2s, color 0.2s; }
.footer-socials a:hover { border-color: #e63946; color: #e63946; }
/* Breadcrumbs (Yoast) — blogpost-template, donkere chrome */
.sf-breadcrumb { display: block; margin-bottom: 24px; font-size: 13px; color: #888; line-height: 1.5; }
.sf-breadcrumb a { color: #888; text-decoration: none; transition: color 0.2s; }
.sf-breadcrumb a:hover { color: var(--sf-accent, #e63946); }
.sf-breadcrumb .breadcrumb_last, .sf-breadcrumb [aria-current="page"] { color: #bbb; }
