/*
 * SFA Elementor Widgets – widgets.css
 *
 * These styles are loaded by the plugin on the frontend AND in the
 * Elementor editor preview, so widgets look identical while editing.
 *
 * This file depends on the SFA Theme's design tokens (main.css).
 * If this plugin is used WITHOUT the SFA theme, the :root block below
 * provides all necessary fallback values.
 */

/* ── Fallback tokens (only apply if SFA theme main.css isn't loaded) ── */
:root {
  --white:        #ffffff;
  --gray-50:      #f8f9fb;
  --gray-100:     #f1f3f6;
  --gray-200:     #e2e5eb;
  --gray-600:     #555d6e;
  --gray-700:     #3b4254;
  --gray-800:     #252b3a;
  --gray-900:     #181c26;
  --blue-50:      #eef2fa;
  --blue-500:     #1e3a6e;
  --blue-600:     #162d56;
  --blue-700:     #0f2040;
  --orange-400:   #e07832;
  --red:          #c8202a;
  --nav-h:        72px;
  --max-w:        1200px;
  --radius:       6px;
  --radius-lg:    10px;
}

/* ── Strip Elementor's default section padding from SFA widgets ── */
.elementor-element .sfa-hero,
.elementor-element .sfa-intro,
.elementor-element .sfa-products,
.elementor-element .sfa-trust,
.elementor-element .sfa-applications,
.elementor-element .sfa-contact-cta {
  /* Remove any extra margin Elementor adds around the widget */
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   FULL-BLEED HELPERS — Hero & Intro
   ══════════════════════════════════════════════════════════════
   Both widgets need to break out of the Elementor column/section
   so their backgrounds span the full viewport width.

   Elementor wraps each widget like this:
     .elementor-element.elementor-widget-{name}   ← column-constrained
       .elementor-widget-container                ← may have padding
         <our render() output>

   Fix:
   1. Zero the .elementor-widget-container padding so it doesn't
      eat into our section's edge-to-edge background.
   2. Use the CSS full-bleed breakout:
        width: 100vw  +  margin-left: calc(50% - 50vw)
      This shifts the element so its left edge aligns with the
      viewport left, regardless of how wide the column is.
   3. Prevent the horizontal scrollbar that 100vw causes.
   ══════════════════════════════════════════════════════════════ */

/* Step 1 – zero out Elementor's inner container padding */
.elementor-widget-sfa-hero > .elementor-widget-container,
.elementor-widget-sfa-intro > .elementor-widget-container,
.elementor-widget-sfa-trust-cards > .elementor-widget-container,
.elementor-widget-sfa-applications > .elementor-widget-container,
.elementor-widget-sfa-contact-cta > .elementor-widget-container {
  padding: 0 !important;
  width: 100%;
}

/* Step 2 – break out to full viewport width */
.elementor-widget-sfa-hero,
.elementor-widget-sfa-intro,
.elementor-widget-sfa-trust-cards,
.elementor-widget-sfa-applications,
.elementor-widget-sfa-contact-cta {
  width: 100vw !important;
  max-width: 100vw !important;
  /* calc(50% - 50vw):
     50%  = half the containing column width (centres the start point)
     50vw = half the viewport (pulls left edge to viewport left) */
  margin-left: calc(50% - 50vw) !important;
  margin-right: 0 !important;
  position: relative;
}

/* ── HERO ────────────────────────────────────────────────────── */

.sfa-hero {
  position: relative;
  width: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.sfa-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-color: #141e48;
  /* background-image, background-size, background-position and
     background-repeat are all set via inline style in render()
     so the Elementor image-picker value is always respected. */
}
.sfa-hero .hero-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 25%, transparent 60%);
}

/* Inset content container — stays centred with max-width */
.sfa-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .sfa-hero .container { padding: 0 40px; } }
.sfa-hero .hero-content { max-width: 640px; padding: 64px 0; }

.sfa-hero .hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-400);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.sfa-hero h1 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.sfa-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin-bottom: 36px;
}
.sfa-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.sfa-hero .hero-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sfa-hero .chip {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── INTRO ───────────────────────────────────────────────────── */
/* The full-bleed breakout is handled by .elementor-widget-sfa-intro
   above. The section itself just needs to fill its parent (100%). */
.sfa-intro {
  width: 100%;
  padding: 96px 0;
  background: var(--gray-50);
}
.sfa-intro .container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .sfa-intro .container { padding: 0 40px; } }

.sfa-intro .intro-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}
@media (min-width: 900px) { .sfa-intro .intro-grid { grid-template-columns: 1fr 1fr; } }

.sfa-intro .section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: 12px;
}
.sfa-intro h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  color: var(--blue-700);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.sfa-intro .sfa-intro-body { color: var(--gray-600); margin-bottom: 28px; }

.sfa-intro .intro-bullets { display: flex; flex-direction: column; gap: 10px; }
.sfa-intro .trust-bullet {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--gray-700);
}
.sfa-intro .check {
  width: 20px; height: 20px;
  background: var(--blue-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.sfa-intro .check svg { width: 11px; height: 11px; color: var(--white); }

.sfa-intro .intro-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.sfa-intro .intro-visual img {
  width: 100%; height: 380px; object-fit: cover; display: block;
}

/* ── PRODUCTS ────────────────────────────────────────────────── */
.sfa-products {
  padding: 96px 0;
  background: var(--white);
}
.sfa-products .container {
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) { .sfa-products .container { padding: 0 40px; } }

.sfa-products .section-header { text-align: center; margin-bottom: 48px; }
.sfa-products .section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-400); margin-bottom: 12px;
}
.sfa-products h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800; color: var(--blue-700);
  letter-spacing: -.01em; margin-bottom: 12px;
}
.sfa-products .section-header p { font-size: 17px; color: var(--gray-600); }

.sfa-products .product-grid {
  display: grid;
  gap: 24px;
  /* Mobile first: 1 card per row */
  grid-template-columns: 1fr;
}
/* Tablet portrait (≥ 480px): 2 per row */
@media (min-width: 480px) {
  .sfa-products .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Tablet landscape + desktop (≥ 768px): 3 per row */
@media (min-width: 768px) {
  .sfa-products .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── TRUST ───────────────────────────────────────────────────── */
.sfa-trust { width: 100%; padding: 80px 0; background: var(--gray-50); }
.sfa-trust .container {
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) { .sfa-trust .container { padding: 0 40px; } }

.sfa-trust .section-header { text-align: center; margin-bottom: 48px; }
.sfa-trust .section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-400); margin-bottom: 12px;
}
.sfa-trust h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800; color: var(--blue-700);
  letter-spacing: -.01em;
}

.sfa-trust .trust-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
@media (min-width: 900px) { .sfa-trust .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.sfa-trust .trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.sfa-trust .trust-icon {
  width: 48px; height: 48px;
  background: var(--blue-50);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500);
}
.sfa-trust .trust-icon svg { width: 24px; height: 24px; }
.sfa-trust .trust-card p { font-size: 15px; color: var(--gray-700); line-height: 1.55; }
.sfa-trust .trust-supporting { text-align: center; margin-top: 40px; color: var(--gray-600); font-size: 15px; }

/* ── APPLICATIONS ────────────────────────────────────────────── */
.sfa-applications { width: 100%; padding: 96px 0; background: var(--white); }
.sfa-applications .container {
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) { .sfa-applications .container { padding: 0 40px; } }

.sfa-applications .section-header { text-align: center; margin-bottom: 48px; }
.sfa-applications .section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-400); margin-bottom: 12px;
}
.sfa-applications h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800; color: var(--blue-700);
}

.sfa-applications .app-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.sfa-applications .app-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  text-decoration: none;
  display: block;
  transition: transform .25s, box-shadow .25s;
}
.sfa-applications .app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}
.sfa-applications .app-img {
  height: 200px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  display: flex; align-items: flex-end; padding: 20px;
}
.sfa-applications .app-img-label {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.7);
}
.sfa-applications .app-body { background: var(--white); padding: 24px; }
.sfa-applications .app-label { font-size: 17px; font-weight: 700; color: var(--blue-700); margin-bottom: 8px; }
.sfa-applications .app-body p { font-size: 14px; color: var(--gray-600); }

/* ── CONTACT CTA ─────────────────────────────────────────────── */
.sfa-contact-cta {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
}
.sfa-contact-cta .container {
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) { .sfa-contact-cta .container { padding: 0 40px; } }

.sfa-contact-cta .contact-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.sfa-contact-cta h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; color: var(--white); margin-bottom: 16px;
}
.sfa-contact-cta p { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 32px; }
.sfa-contact-cta .contact-phone { margin-top: 20px !important; font-size: 15px !important; color: rgba(255,255,255,.7) !important; }
.sfa-contact-cta .contact-phone a { color: var(--white); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ── BUTTONS (widget-local fallbacks) ────────────────────────── */
.sfa-hero .btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-size: 16px; font-weight: 700;
  color: var(--white); background: var(--red);
  border-radius: var(--radius); text-decoration: none;
  transition: background .2s, transform .15s;
}
.sfa-hero .btn-hero:hover { background: #a81920; transform: translateY(-1px); }

.sfa-hero .btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-size: 16px; font-weight: 600;
  color: var(--white); background: transparent;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: var(--radius); text-decoration: none;
  transition: border-color .2s, background .2s;
}
.sfa-hero .btn-hero-ghost:hover { border-color: rgba(255,255,255,.9); background: rgba(255,255,255,.1); }

.sfa-contact-cta .btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-size: 15px; font-weight: 700;
  color: var(--blue-500); background: var(--white);
  border-radius: var(--radius); text-decoration: none;
  transition: box-shadow .2s, transform .15s;
}
.sfa-contact-cta .btn-white:hover { box-shadow: 0 4px 20px rgba(0,0,0,.15); transform: translateY(-1px); }

/* ── Prevent horizontal scrollbar caused by 100vw break-out ─── */
html,
body,
.elementor,
.elementor-section-wrap {
  overflow-x: hidden;
}

/* ── Editor preview: neutralise the break-out ────────────────── */
/*
 * Inside the Elementor editor the widget sits in a preview iframe
 * whose width ≠ 100vw of the outer window, so the calc() shift
 * would misalign the widget. Neutralise it in edit mode only.
 */
.elementor-editor-active .elementor-widget-sfa-hero,
.elementor-editor-active .elementor-widget-sfa-intro,
.elementor-editor-active .elementor-widget-sfa-trust-cards,
.elementor-editor-active .elementor-widget-sfa-applications,
.elementor-editor-active .elementor-widget-sfa-contact-cta {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
}
.elementor-editor-active .elementor-widget-sfa-hero > .elementor-widget-container,
.elementor-editor-active .elementor-widget-sfa-intro > .elementor-widget-container,
.elementor-editor-active .elementor-widget-sfa-trust-cards > .elementor-widget-container,
.elementor-editor-active .elementor-widget-sfa-applications > .elementor-widget-container,
.elementor-editor-active .elementor-widget-sfa-contact-cta > .elementor-widget-container {
  padding: 0 !important;
}
/* Allow clicking on hero content while editing */
.elementor-editor-active .sfa-hero { pointer-events: none; }
.elementor-editor-active .sfa-hero .hero-content { pointer-events: all; }

/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE WIDGETS
   ══════════════════════════════════════════════════════════════ */

/* ── PRODUCT HERO ──────────────────────────────────────────── */
.sfa-product-hero {
  padding: 60px 0;
  background: var(--white);
}
.sfa-product-hero .container {
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) { .sfa-product-hero .container { padding: 0 40px; } }

/* Two-column image row */
.sfa-ph-image-row {
  display: grid;
  gap: 20px;
  margin-bottom: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .sfa-ph-image-row { grid-template-columns: 1fr 1fr; }
}

.sfa-ph-drawing,
.sfa-ph-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  min-height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.sfa-ph-drawing img,
.sfa-ph-photo img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.sfa-ph-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px;
  padding: 40px; min-height: 220px;
  color: var(--gray-600);
}
.sfa-ph-placeholder--dark { background: var(--blue-500); }
.sfa-ph-placeholder--dark svg,
.sfa-ph-placeholder--dark span { color: rgba(255,255,255,.55); }
.sfa-ph-placeholder span { font-size: 13px; font-weight: 500; }

/* Content block */
.sfa-ph-content { max-width: 780px; }
.sfa-product-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--white);
  background: var(--blue-500);
  margin-bottom: 16px;
}
.sfa-ph-content h1 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800; color: var(--blue-700);
  letter-spacing: -.02em; margin-bottom: 16px;
}
.sfa-ph-desc {
  font-size: 17px; color: var(--gray-600); margin-bottom: 28px;
}

/* Key fact chips */
.sfa-key-facts {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.sfa-fact-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: var(--blue-50);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  font-size: 13px; font-weight: 500; color: var(--blue-500);
}
.sfa-fact-chip .chip-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-500); flex-shrink: 0;
}

/* CTA buttons */
.sfa-ph-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.sfa-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-size: 15px; font-weight: 700;
  color: var(--white); background: var(--blue-500);
  border-radius: var(--radius); text-decoration: none;
  transition: background .2s, transform .15s;
}
.sfa-btn-primary:hover { background: var(--blue-600); transform: translateY(-1px); }
.sfa-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-size: 15px; font-weight: 600;
  color: var(--blue-500); background: transparent;
  border: 2px solid var(--blue-500);
  border-radius: var(--radius); text-decoration: none;
  transition: background .2s, color .2s;
}
.sfa-btn-outline:hover { background: var(--blue-500); color: var(--white); }

/* ── PRODUCT DESCRIPTION ───────────────────────────────────── */
.sfa-product-description {
  padding: 80px 0;
  background: var(--gray-50);
}
.sfa-product-description .container {
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) { .sfa-product-description .container { padding: 0 40px; } }

.sfa-pd-grid {
  display: grid;
  gap: 56px;
  align-items: start;
}
@media (min-width: 900px) {
  .sfa-pd-grid { grid-template-columns: 1fr 1fr; }
}

.sfa-pd-text .section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-400); margin-bottom: 12px;
}
.sfa-pd-text h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800; color: var(--blue-700);
  letter-spacing: -.01em; margin-bottom: 20px;
}
.sfa-pd-body p {
  font-size: 16px; color: var(--gray-600);
  line-height: 1.7; margin-bottom: 16px;
}
.sfa-pd-body p:last-child { margin-bottom: 0; }

/* Feature points */
.sfa-pd-features {
  display: flex; flex-direction: column; gap: 20px;
}
.sfa-pd-point {
  display: flex; align-items: flex-start; gap: 16px;
}
.sfa-pd-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--blue-500);
}
.sfa-pd-point-text {
  display: flex; flex-direction: column; gap: 4px;
}
.sfa-pd-point-text strong {
  font-size: 15px; font-weight: 700; color: var(--blue-700);
}
.sfa-pd-point-text span {
  font-size: 14px; color: var(--gray-600); line-height: 1.55;
}

/* ── TECHNICAL DRAWING ─────────────────────────────────────── */
.sfa-technical-drawing {
  padding: 80px 0;
  background: var(--white);
}
.sfa-technical-drawing .container {
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) { .sfa-technical-drawing .container { padding: 0 40px; } }

.sfa-technical-drawing .section-header {
  text-align: center; margin-bottom: 40px;
}
.sfa-technical-drawing .section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-400); margin-bottom: 12px;
}
.sfa-technical-drawing h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800; color: var(--blue-700);
}

.sfa-td-frame {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sfa-td-frame img {
  width: 100%; height: auto; display: inline-block;
  max-width: 880px;
}

/* Zoom hint overlay */
.sfa-td-zoomable { cursor: zoom-in; }
.sfa-td-link { display: block; position: relative; }
.sfa-td-link img { transition: opacity .2s; }
.sfa-td-link:hover img { opacity: .9; }
.sfa-td-zoom-hint {
  position: absolute;
  bottom: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,.55);
  color: var(--white);
  font-size: 12px; font-weight: 500;
  padding: 5px 10px; border-radius: 20px;
  pointer-events: none;
}

.sfa-td-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px;
  min-height: 260px; color: var(--gray-600);
}
.sfa-td-placeholder span { font-size: 14px; font-weight: 500; }

.sfa-td-caption {
  text-align: center; margin-top: 16px;
  font-size: 13px; color: var(--gray-600);
  font-style: italic;
}

/* Lightbox */
.sfa-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,.85);
  align-items: center; justify-content: center;
}
.sfa-lightbox--open { display: flex; }
.sfa-lightbox-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: var(--white); font-size: 36px; line-height: 1;
  cursor: pointer; opacity: .7; transition: opacity .2s;
}
.sfa-lightbox-close:hover { opacity: 1; }
.sfa-lightbox-img-wrap {
  max-width: 90vw; max-height: 90vh;
  overflow: auto;
}
.sfa-lightbox-img-wrap img {
  display: block; max-width: 100%; height: auto;
}

/* ── DATA TABLE ────────────────────────────────────────────── */
.sfa-data-table-section {
  padding: 80px 0;
  background: var(--gray-50);
}
.sfa-data-table-section .container {
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) { .sfa-data-table-section .container { padding: 0 40px; } }

.sfa-data-table-section .section-header { margin-bottom: 40px; }
.sfa-data-table-section .section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-400); margin-bottom: 12px;
}
.sfa-data-table-section h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800; color: var(--blue-700);
}

/* Responsive scroll wrapper */
.sfa-dt-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.sfa-dt {
  width: 100%; min-width: 420px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}
.sfa-dt thead th {
  background: var(--blue-500);
  color: var(--white);
  font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 20px;
  text-align: left; white-space: nowrap;
}
.sfa-dt thead th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.sfa-dt thead th:last-child  { border-radius: 0 var(--radius-lg) 0 0; }

.sfa-dt-unit {
  display: block; font-size: 10px;
  font-weight: 500; opacity: .75;
  text-transform: lowercase; margin-top: 2px;
}
.sfa-dt tbody tr { border-bottom: 1px solid var(--gray-100); }
.sfa-dt tbody tr:last-child { border-bottom: none; }
.sfa-dt tbody tr:nth-child(even) { background: var(--gray-50); }
.sfa-dt tbody tr.sfa-dt-highlight { background: var(--blue-50); }
.sfa-dt tbody td {
  padding: 13px 20px;
  color: var(--gray-700); white-space: nowrap;
}
.sfa-dt tbody td:first-child { font-weight: 700; color: var(--blue-700); }

.sfa-dt-note {
  margin-top: 14px;
  font-size: 12px; color: var(--gray-600); font-style: italic;
}

/* ── PRODUCT VARIANT ───────────────────────────────────────── */
.sfa-product-variant {
  padding: 80px 0;
  background: var(--white);
}
.sfa-product-variant .container {
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) { .sfa-product-variant .container { padding: 0 40px; } }

.sfa-product-variant .section-header { margin-bottom: 40px; }
.sfa-product-variant .section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-400); margin-bottom: 12px;
}
.sfa-product-variant h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800; color: var(--blue-700);
}

.sfa-pv-card {
  display: grid;
  gap: 48px;
  align-items: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--blue-500);
  border-radius: var(--radius-lg);
  padding: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .sfa-pv-card { grid-template-columns: 1fr 1fr; }
  .sfa-pv-card.sfa-pv-reverse { direction: rtl; }
  .sfa-pv-card.sfa-pv-reverse > * { direction: ltr; }
}

.sfa-pv-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--white);
  background: var(--blue-500);
  margin-bottom: 12px;
}
.sfa-pv-text h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800; color: var(--blue-700);
  margin-bottom: 14px;
}
.sfa-pv-desc {
  font-size: 15px; color: var(--gray-600);
  line-height: 1.7; margin-bottom: 24px;
}

/* Spec rows */
.sfa-pv-specs { display: flex; flex-direction: column; gap: 0; }
.sfa-pv-spec-row {
  display: flex; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
}
.sfa-pv-spec-row:last-child { border-bottom: none; }
.sfa-pv-spec-row dt {
  min-width: 160px; flex-shrink: 0;
  font-weight: 600; color: var(--gray-700);
}
.sfa-pv-spec-row dd { color: var(--gray-600); }

/* Image column */
.sfa-pv-img-area {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-50);
  min-height: 240px;
  display: flex; align-items: center; justify-content: center;
}
.sfa-pv-img-area img {
  width: 100%; height: auto; display: block;
}
.sfa-pv-img-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px;
  min-height: 240px; padding: 40px;
  color: var(--gray-600);
}
.sfa-pv-img-placeholder span { font-size: 13px; font-weight: 500; }

/* ── DOWNLOADS ─────────────────────────────────────────────── */
.sfa-downloads {
  padding: 80px 0;
  background: var(--gray-50);
}
.sfa-downloads .container {
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) { .sfa-downloads .container { padding: 0 40px; } }

.sfa-downloads .section-header { margin-bottom: 40px; }
.sfa-downloads .section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-400); margin-bottom: 12px;
}
.sfa-downloads h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800; color: var(--blue-700);
}

.sfa-dl-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .sfa-dl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .sfa-dl-grid { grid-template-columns: repeat(3, 1fr); }
}

.sfa-dl-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 20px 20px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  flex-wrap: wrap;
}
.sfa-dl-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--blue-500);
}
.sfa-dl-info {
  display: flex; flex-direction: column; gap: 3px;
  flex: 1; min-width: 0;
}
.sfa-dl-type {
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange-400);
}
.sfa-dl-title {
  font-size: 14px; font-weight: 700; color: var(--blue-700);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sfa-dl-subtitle {
  font-size: 12px; color: var(--gray-600);
}
.sfa-dl-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; font-size: 12px; font-weight: 700;
  color: var(--white); background: var(--blue-500);
  border-radius: var(--radius); text-decoration: none;
  flex-shrink: 0;
  transition: background .2s;
}
.sfa-dl-btn:hover { background: var(--blue-600); }

/* ── Product grid: card styles ─────────────────────────────── */
.sfa-products .product-card {
  display: flex; flex-direction: column;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border: 1px solid var(--gray-100);
  transition: transform .25s, box-shadow .25s;
  background: var(--white);
}
.sfa-products .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,.11);
}
.sfa-products .card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, #c8d8ef 0%, #a8bde0 40%, #8aa4d0 100%);
  overflow: hidden;
  position: relative;
}
.sfa-products .card-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.sfa-products .card-img-placeholder { width: 100%; height: 100%; }
.sfa-products .card-body {
  padding: 20px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.sfa-products .card-body h3 {
  font-size: 16px; font-weight: 700; color: var(--blue-700);
}
.sfa-products .card-facts {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.sfa-products .card-fact {
  font-size: 11px; font-weight: 500;
  color: var(--gray-500);
}
.sfa-products .card-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; font-size: 13px; font-weight: 700;
  color: var(--white); background: var(--blue-500);
  border-radius: var(--radius); margin-top: auto;
  transition: background .2s;
  text-align: center; justify-content: center;
}
.sfa-products .product-card:hover .card-btn { background: var(--blue-600); }

/* ══════════════════════════════════════════════════════════════
   UNTERNEHMEN (ABOUT) PAGE WIDGETS
   ══════════════════════════════════════════════════════════════ */

/* ── CLOSING CTA — full-bleed (same treatment as contact-cta) ── */
.elementor-widget-sfa-closing-cta > .elementor-widget-container {
  padding: 0 !important;
  width: 100%;
}
.elementor-widget-sfa-closing-cta {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: 0 !important;
  position: relative;
}
.elementor-editor-active .elementor-widget-sfa-closing-cta {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
}
.elementor-editor-active .elementor-widget-sfa-closing-cta > .elementor-widget-container {
  padding: 0 !important;
}

/* ── SHARED container pattern for about widgets ── */
.sfa-about-hero .container,
.sfa-philosophy-cards .container,
.sfa-what-we-deliver .container,
.sfa-materials .container,
.sfa-process-steps .container,
.sfa-traceability .container,
.sfa-experience .container,
.sfa-delivery .container,
.sfa-warehouse .container {
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) {
  .sfa-about-hero .container,
  .sfa-philosophy-cards .container,
  .sfa-what-we-deliver .container,
  .sfa-materials .container,
  .sfa-process-steps .container,
  .sfa-traceability .container,
  .sfa-experience .container,
  .sfa-delivery .container,
  .sfa-warehouse .container { padding: 0 40px; }
}

/* ── ABOUT HERO ──────────────────────────────────────────────── */
.sfa-about-hero {
  padding: 72px 0 80px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
@media (min-width: 900px) { .sfa-about-hero { padding: 88px 0 96px; } }

.sfa-ah-grid {
  display: grid; gap: 48px; align-items: center;
}
@media (min-width: 900px) {
  .sfa-ah-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.sfa-ah-text .section-label {
  display: block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--blue-500); margin-bottom: 10px;
}
.sfa-ah-text h1 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  color: var(--gray-900); line-height: 1.15;
  letter-spacing: -.02em; margin-bottom: 20px;
}
.sfa-ah-text p {
  font-size: 16px; color: var(--gray-600);
  line-height: 1.8; max-width: 520px; margin-bottom: 28px;
}

.sfa-ah-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.sfa-ah-badge {
  display: inline-flex; align-items: center; gap: 7px;
  border-radius: var(--radius); padding: 7px 14px;
  font-size: 13px; font-weight: 600;
  border: 1px solid;
}
.sfa-ah-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.sfa-ah-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.sfa-ah-visual {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
}
.sfa-ah-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sfa-ah-img-placeholder {
  aspect-ratio: 4/3;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; color: var(--gray-600);
}
.sfa-ah-img-placeholder span { font-size: 14px; }

/* ── PHILOSOPHY CARDS ────────────────────────────────────────── */
.sfa-philosophy-cards {
  padding: 80px 0 88px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.sfa-pc-intro { max-width: 640px; margin-bottom: 56px; }
.sfa-pc-intro .section-label {
  display: block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--blue-500); margin-bottom: 10px;
}
.sfa-pc-intro h2 {
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 700;
  color: var(--gray-900); margin-bottom: 12px;
}
.sfa-pc-intro p { font-size: 16px; color: var(--gray-600); line-height: 1.8; }

.sfa-pc-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .sfa-pc-grid { grid-template-columns: repeat(3, 1fr); } }

.sfa-pc-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.sfa-pc-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--blue-500);
}
.sfa-pc-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,.07); transform: translateY(-4px); }

.sfa-pc-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--blue-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500);
  margin-bottom: 20px; flex-shrink: 0;
}
.sfa-pc-card h3 {
  font-size: 18px; font-weight: 700; color: var(--gray-900);
  margin-bottom: 14px; letter-spacing: -.01em;
}
.sfa-pc-card p {
  font-size: 14px; color: var(--gray-600); line-height: 1.8; flex: 1;
}
.sfa-pc-highlight {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px; font-weight: 600; color: var(--blue-500);
  display: flex; align-items: center; gap: 7px;
}

.sfa-pc-social-banner {
  margin-top: 32px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg); padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 16px;
}
.sfa-pc-social-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--blue-500); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.sfa-pc-social-banner p {
  font-size: 14px; color: var(--blue-600); line-height: 1.7;
}

/* ── WHAT WE DELIVER ─────────────────────────────────────────── */
.sfa-what-we-deliver {
  padding: 80px 0 88px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.sfa-wwd-grid {
  display: grid; gap: 48px;
}
@media (min-width: 900px) {
  .sfa-wwd-grid { grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
}

.sfa-wwd-text .section-label {
  display: block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--blue-500); margin-bottom: 10px;
}
.sfa-wwd-text h2 {
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 700;
  color: var(--gray-900); margin-bottom: 16px;
}
.sfa-wwd-body p { font-size: 15px; color: var(--gray-600); line-height: 1.85; margin-bottom: 12px; }

.sfa-wwd-variants { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.sfa-wwd-variant-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px; color: var(--gray-700); font-weight: 500;
}
.sfa-wwd-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

.sfa-wwd-tiles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.sfa-wwd-tile {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 18px 16px;
  display: flex; gap: 12px; align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}
.sfa-wwd-tile:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); transform: translateY(-2px); }
.sfa-wwd-tile-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--blue-50); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500);
}
.sfa-wwd-tile strong { display: block; font-size: 13px; font-weight: 700; color: var(--gray-800); margin-bottom: 3px; }
.sfa-wwd-tile span { font-size: 12px; color: var(--gray-500); line-height: 1.5; }

/* ── MATERIALS ───────────────────────────────────────────────── */
.sfa-materials {
  padding: 80px 0 88px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.sfa-mat-grid {
  display: grid; gap: 48px;
}
@media (min-width: 900px) {
  .sfa-mat-grid { grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
}

.sfa-mat-text .section-label {
  display: block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--blue-500); margin-bottom: 10px;
}
.sfa-mat-text h2 {
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 700;
  color: var(--gray-900); margin-bottom: 16px;
}
.sfa-mat-body p { font-size: 15px; color: var(--gray-600); line-height: 1.85; margin-bottom: 12px; }
.sfa-mat-body p:last-child { margin-bottom: 0; }

.sfa-mat-norms { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.sfa-norm-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  color: var(--blue-500); border-radius: var(--radius);
  padding: 4px 10px; font-size: 12px; font-weight: 700;
}

.sfa-mat-spec-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
}
.sfa-mat-spec-header {
  background: var(--blue-500); padding: 14px 20px;
  font-size: 13px; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 1px;
}
.sfa-mat-spec-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; padding: 13px 20px;
  border-bottom: 1px solid var(--gray-200); font-size: 14px;
}
.sfa-mat-spec-row:last-child { border-bottom: none; }
.sfa-mat-spec-key { color: var(--gray-500); font-weight: 500; flex-shrink: 0; }
.sfa-mat-spec-val { color: var(--gray-800); font-weight: 600; text-align: right; }

/* ── PROCESS STEPS ───────────────────────────────────────────── */
.sfa-process-steps {
  padding: 80px 0 88px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.sfa-ps-header { margin-bottom: 40px; }
.sfa-ps-header .section-label {
  display: block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--blue-500); margin-bottom: 10px;
}
.sfa-ps-header h2 {
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 700;
  color: var(--gray-900); margin-bottom: 12px;
}
.sfa-ps-lead { font-size: 16px; color: var(--gray-600); line-height: 1.8; max-width: 680px; }

.sfa-ps-grid {
  display: grid; gap: 16px; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .sfa-ps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .sfa-ps-grid { grid-template-columns: repeat(3, 1fr); } }

.sfa-ps-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 22px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}
.sfa-ps-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.06); transform: translateY(-3px); }
.sfa-ps-number {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--blue-500); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.sfa-ps-card p {
  font-size: 14px; font-weight: 600; color: var(--gray-800);
  line-height: 1.5; padding-top: 4px;
}

/* ── TRACEABILITY ────────────────────────────────────────────── */
.sfa-traceability {
  padding: 80px 0 88px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.sfa-trace-grid {
  display: grid; gap: 48px;
}
@media (min-width: 900px) {
  .sfa-trace-grid { grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
}

.sfa-trace-text .section-label {
  display: block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--blue-500); margin-bottom: 10px;
}
.sfa-trace-text h2 {
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 700;
  color: var(--gray-900); margin-bottom: 16px;
}
.sfa-trace-body p { font-size: 15px; color: var(--gray-600); line-height: 1.85; margin-bottom: 12px; }
.sfa-trace-body p:last-child { margin-bottom: 0; }

.sfa-trace-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px;
}
.sfa-trace-stat {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 22px 18px; text-align: center;
}
.sfa-trace-stat-value {
  font-size: 28px; font-weight: 800; color: var(--blue-500);
  letter-spacing: -.02em; line-height: 1; margin-bottom: 6px;
}
.sfa-trace-stat-label { font-size: 12px; color: var(--gray-500); font-weight: 500; line-height: 1.4; }

.sfa-trace-features { display: flex; flex-direction: column; gap: 14px; }
.sfa-trace-feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.sfa-trace-feature-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--blue-50); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500);
}
.sfa-trace-feature strong { display: block; font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 3px; }
.sfa-trace-feature span { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

/* ── EXPERIENCE ──────────────────────────────────────────────── */
.sfa-experience {
  padding: 80px 0 88px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.sfa-exp-grid {
  display: grid; gap: 40px;
}
@media (min-width: 900px) {
  .sfa-exp-grid { grid-template-columns: 2fr 1fr; gap: 64px; align-items: start; }
}

.sfa-exp-text .section-label {
  display: block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--blue-500); margin-bottom: 10px;
}
.sfa-exp-text h2 {
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 700;
  color: var(--gray-900); margin-bottom: 16px;
}
.sfa-exp-body p { font-size: 15px; color: var(--gray-600); line-height: 1.85; margin-bottom: 12px; }

.sfa-exp-checklist {
  list-style: none; margin-top: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.sfa-exp-checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--gray-700);
}
.sfa-exp-checklist li svg { flex-shrink: 0; color: var(--blue-500); }

.sfa-exp-card {
  background: var(--blue-500); color: var(--white);
  border-radius: var(--radius-lg); padding: 32px 28px;
}
.sfa-exp-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.sfa-exp-card p { font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.75; margin-bottom: 24px; }
.sfa-exp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; background: var(--white); color: var(--blue-500);
  font-size: 13px; font-weight: 600; border-radius: var(--radius);
  text-decoration: none; transition: background .2s, transform .15s;
}
.sfa-exp-btn:hover { background: var(--gray-50); transform: translateY(-1px); }

/* ── DELIVERY ────────────────────────────────────────────────── */
.sfa-delivery {
  padding: 80px 0 88px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.sfa-del-grid {
  display: grid; gap: 48px;
}
@media (min-width: 900px) {
  .sfa-del-grid { grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
}

.sfa-del-text .section-label {
  display: block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--blue-500); margin-bottom: 10px;
}
.sfa-del-text h2 {
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 700;
  color: var(--gray-900); margin-bottom: 16px;
}
.sfa-del-text p { font-size: 15px; color: var(--gray-600); line-height: 1.85; }

.sfa-del-cards { display: flex; flex-direction: column; gap: 14px; }
.sfa-del-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 18px;
  transition: box-shadow .2s, transform .2s;
}
.sfa-del-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.06); transform: translateY(-2px); }
.sfa-del-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--blue-50); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500);
}
.sfa-del-card strong { display: block; font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 3px; }
.sfa-del-card span { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

/* ── WAREHOUSE ───────────────────────────────────────────────── */
.sfa-warehouse {
  padding: 80px 0 88px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.sfa-wh-grid {
  display: grid; gap: 48px; align-items: center;
}
@media (min-width: 900px) {
  .sfa-wh-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
  .sfa-wh-grid.sfa-wh-reverse { direction: rtl; }
  .sfa-wh-grid.sfa-wh-reverse > * { direction: ltr; }
}

.sfa-wh-visual {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
}
.sfa-wh-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sfa-wh-placeholder {
  aspect-ratio: 4/3;
  background: var(--gray-100); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; color: var(--gray-600);
}
.sfa-wh-placeholder span { font-size: 14px; }

.sfa-wh-text .section-label {
  display: block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--blue-500); margin-bottom: 10px;
}
.sfa-wh-text h2 {
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 700;
  color: var(--gray-900); margin-bottom: 16px;
}
.sfa-wh-body p { font-size: 15px; color: var(--gray-600); line-height: 1.85; margin-bottom: 12px; }
.sfa-wh-body p:last-child { margin-bottom: 0; }

.sfa-wh-chips {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px;
}
.sfa-wh-chip {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 14px;
  font-size: 13px; font-weight: 600; color: var(--gray-700);
  display: flex; align-items: center; gap: 8px;
}
.sfa-wh-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange-400); flex-shrink: 0;
}

/* ── CLOSING CTA — 2-column: text left, contact card right ────── */
.sfa-closing-cta {
  width: 100%;
  padding: 80px 0;
  background: var(--blue-500);
}
.sfa-closing-cta .container {
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) { .sfa-closing-cta .container { padding: 0 40px; } }

/* Grid */
.sfa-cc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .sfa-cc-grid { grid-template-columns: 1fr 400px; gap: 64px; }
}

/* Left column */
.sfa-cc-left { max-width: 560px; }
.sfa-cc-heading {
  font-size: clamp(26px, 3.2vw, 40px); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 20px;
  letter-spacing: -.015em;
}
.sfa-cc-text {
  font-size: 17px; line-height: 1.75; color: rgba(255,255,255,.75); margin: 0;
}

/* Right column: contact card */
.sfa-cc-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Avatar circle (photo or icon placeholder) */
.sfa-cc-avatar-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.sfa-cc-avatar {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.sfa-cc-icon-placeholder {
  width: 36px; height: 36px; color: rgba(255,255,255,.75);
}

/* Person info: vertical stack */
.sfa-cc-person-info { display: flex; flex-direction: column; gap: 4px; }
.sfa-cc-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange-400);
  display: block; margin-bottom: 2px;
}
.sfa-cc-name  { font-size: 20px; font-weight: 700; color: var(--white); display: block; }
.sfa-cc-role  { font-size: 14px; color: rgba(255,255,255,.6); display: block; }

/* Contact detail list */
.sfa-cc-details {
  list-style: none; margin: 0; padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-direction: column; gap: 12px;
}
.sfa-cc-details li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,.85); }
.sfa-cc-details svg { flex-shrink: 0; color: rgba(255,255,255,.5); }
.sfa-cc-details a {
  color: var(--white); text-decoration: none; font-weight: 500; transition: opacity .2s;
}
.sfa-cc-details a:hover { opacity: .75; text-decoration: underline; text-underline-offset: 3px; }

/* CTA button */
.sfa-cc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; background: var(--white); color: #1e3a6e;
  font-size: 15px; font-weight: 700; border-radius: 8px;
  text-decoration: none; transition: background .2s, transform .15s;
  align-self: flex-start;
}
.sfa-cc-btn:hover { background: rgba(255,255,255,.9); transform: translateX(2px); }
.sfa-cc-btn svg { transition: transform .2s; }
.sfa-cc-btn:hover svg { transform: translateX(3px); }
