/* =========================================================
   WÜSA Energielösungen – Stylesheet
   Großhandel für das SHK- & Elektrohandwerk
   Design: Montserrat · Gelb (#FFC200) · markant & eigenständig
   ========================================================= */

:root {
  --accent: #FFC200;
  --accent-dark: #d9a400;
  --accent-soft: #FFF3CC;
  --ink: #20242c;          /* weiches, warmes Anthrazit */
  --text: #3a3c41;
  --text-strong: #20242c;
  --dark: #2b313b;         /* freundliches Slate statt Schwarz */
  --dark-2: #343b46;
  --white: #FFFFFF;
  --muted: #9a9da3;
  --line: #E7E8EE;
  --line-dark: rgba(255,255,255,.12);

  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-pill: 50px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1220px;
  --shadow: 0 24px 60px rgba(13,14,16,.14);
  --shadow-sm: 0 10px 30px rgba(13,14,16,.08);
  --header-h: 84px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4,h5 { font-weight: 800; color: var(--text-strong); line-height: 1.12; }
h1 { font-size: clamp(40px, 5.6vw, 70px); letter-spacing: -2.4px; }
h2 { font-size: clamp(30px, 3.8vw, 46px); letter-spacing: -1px; }
h3 { font-size: clamp(23px, 2.6vw, 32px); letter-spacing: -0.7px; }
h4 { font-size: 21px; letter-spacing: -0.4px; font-weight: 700; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ---------- Skip link ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 10px 18px; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 800; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--accent); border-radius: 3px; }
.section-dark .eyebrow, .hero .eyebrow { color: var(--accent); }

/* ---------- Sections ---------- */
.section { padding: 104px 0; position: relative; }
.section-tight { padding: 70px 0; }
.section-dark { background: var(--dark); color: #cfd0d4; }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4 { color: var(--white); }
.section-light { background: #f6f7f9; }
.section-accent { background: var(--accent); color: var(--ink); }
.section-accent .eyebrow { color: var(--ink); }
.section-accent .eyebrow::before { background: var(--ink); }
.section-accent h2 { color: var(--ink); }

/* diagonale Trennkante */
.slash-top { clip-path: polygon(0 3.5vw, 100% 0, 100% 100%, 0 100%); margin-top: -3.5vw; }
.slash-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3.5vw), 0 100%); }

.lead { font-size: 20px; color: var(--text); }
.section-dark .lead { color: #c2c4c9; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.measure { max-width: 720px; }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head p { color: #62646b; font-size: 19px; margin-top: 14px; }
.section-dark .section-head p { color: #c2c4c9; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font: 700 15px var(--font);
  padding: 15px 32px; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn i { font-size: 14px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.btn-accent { background: var(--accent); color: var(--ink); box-shadow: 0 12px 26px rgba(255,194,0,.4); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--accent); }
.btn-sm { padding: 10px 26px; font-size: 14px; }
.btn-lg { padding: 17px 38px; font-size: 16px; }

/* ---------- Header (gelb) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--accent);
  transition: box-shadow .2s ease, padding .2s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.16); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
.brand { display: flex; align-items: center; flex: none; }
.brand-logo { height: 42px; width: auto; }
.brand-fallback, .brand { font-weight: 800; font-size: 28px; letter-spacing: 1px; color: var(--ink); }
.brand .dot { color: #fff; -webkit-text-stroke: 1px var(--ink); }

.nav-links { display: flex; }
.nav-links > ul { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a, .dropdown-toggle {
  font: 600 15.5px var(--font); color: var(--ink);
  background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 0; position: relative; transition: opacity .15s ease;
}
.nav-links > ul > li > a:not(.btn)::after,
.dropdown-toggle::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px;
  background: var(--ink); border-radius: 3px; transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav-links > ul > li > a:not(.btn):hover::after,
.has-dropdown:hover .dropdown-toggle::after,
.nav-links > ul > li > a.active:not(.btn)::after,
.has-dropdown.active .dropdown-toggle::after { transform: scaleX(1); }
.chev { font-size: 11px; transition: transform .2s ease; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  list-style: none; padding: 12px; min-width: 290px; box-shadow: 0 22px 44px rgba(0,0,0,.16);
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; z-index: 120;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-dropdown:hover .chev { transform: rotate(180deg); }
.dropdown li a {
  display: flex; align-items: center; gap: 13px; padding: 11px 14px; border-radius: 12px;
  font-weight: 600; font-size: 15px; color: var(--ink); transition: background .15s ease;
}
.dropdown li a i { width: 20px; text-align: center; color: var(--ink); font-size: 16px; }
.dropdown li a:hover, .dropdown li a.active { background: var(--ink); color: var(--accent); }
.dropdown li a:hover i, .dropdown li a.active i { color: var(--accent); }
.dropdown li a::after { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 27px; height: 3px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; min-height: 660px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(32,36,44,.86) 0%, rgba(32,36,44,.64) 48%, rgba(32,36,44,.20) 100%); }
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 720px; padding: 96px 0; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .hl { color: var(--accent); }
.hero p { font-size: 20px; color: #e6e7e9; margin-bottom: 34px; max-width: 580px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-mini { display: flex; gap: 14px; margin-top: 48px; flex-wrap: wrap; }
.hero-mini .chip {
  display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16); padding: 12px 18px; border-radius: 14px; backdrop-filter: blur(4px);
}
.hero-mini .chip i { color: var(--accent); font-size: 20px; }
.hero-mini .chip .num { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; }
.hero-mini .chip .lbl { font-size: 13px; color: #c7c9cd; }

/* Page hero */
.page-hero { position: relative; background: var(--dark); color: #fff; padding: 96px 0 84px; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,194,0,.22), transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 16px; max-width: 880px; }
.page-hero p { color: #c7c9cd; font-size: 20px; max-width: 720px; }
.breadcrumb { font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; font-weight: 700; }
.breadcrumb a { color: var(--accent); opacity: .85; }
.breadcrumb a:hover { opacity: 1; }

/* product hero variant with split */
.prod-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.prod-hero .prod-hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; max-height: 420px; object-fit: cover; }
.prod-icon-badge {
  width: 64px; height: 64px; border-radius: 16px; background: var(--accent); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 22px;
}

/* ---------- Grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform .22s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleY(1); }
.card .icon { width: 58px; height: 58px; border-radius: 15px; background: var(--accent-soft); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 25px; transition: background .2s ease, color .2s ease; }
.card:hover .icon { background: var(--accent); color: var(--ink); }
.card h4 { margin-bottom: 10px; }
.card p { font-size: 15.5px; line-height: 1.7; color: #5b5d63; }
.card .card-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: var(--ink); }
.card .card-link i { transition: transform .2s ease; }
.card:hover .card-link i { transform: translateX(4px); }

/* product card with image */
.pcard { padding: 0; }
.pcard .pcard-img { height: 190px; overflow: hidden; }
.pcard .pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.pcard:hover .pcard-img img { transform: scale(1.06); }
.pcard .pcard-body { padding: 26px 28px 30px; }
.pcard::before { z-index: 2; }

/* ---------- USP strip ---------- */
.usp-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.usp-row.usp-4 { grid-template-columns: repeat(4, 1fr); }
.usp-cell { padding: 34px 28px; display: flex; gap: 16px; align-items: center; border-right: 1px solid var(--line); min-width: 0; }
.usp-cell > div { min-width: 0; }
.usp-cell:last-child { border-right: none; }
.usp-cell .u-ic { width: 52px; height: 52px; flex: none; border-radius: 14px; background: var(--accent); color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.usp-cell .big { font-size: 26px; font-weight: 800; color: var(--ink); line-height: 1.12; overflow-wrap: break-word; }
.usp-cell .lbl { font-weight: 600; font-size: 15px; color: #5b5d63; margin-top: 5px; }
.usp-row.usp-4 .usp-cell { padding: 30px 22px; }
.usp-row.usp-4 .big { font-size: 19px; line-height: 1.2; }
.usp-row.usp-4 .lbl { font-size: 14px; line-height: 1.45; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; max-height: 500px; }
.split-media .badge-float {
  position: absolute; bottom: -22px; left: -22px; background: var(--accent); color: var(--ink);
  border-radius: 18px; padding: 18px 22px; box-shadow: var(--shadow);
}
.split-media .badge-float .bf-num { font-size: 30px; font-weight: 800; line-height: 1; }
.split-media .badge-float .bf-lbl { font-size: 13px; font-weight: 600; }
.split h2 { margin-bottom: 18px; }
.split p { margin-bottom: 16px; color: #5b5d63; }
.section-dark .split p { color: #c2c4c9; }
.checklist { list-style: none; margin-top: 22px; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 38px; font-weight: 600; color: var(--text-strong); }
.section-dark .checklist li { color: #ececed; }
.checklist li i { position: absolute; left: 0; top: 2px; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: var(--ink); font-size: 11px; display: flex; align-items: center; justify-content: center; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding: 38px 26px; border-radius: var(--radius-lg); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); }
.section-light .step, .section-accent .step { background: #fff; border: 1px solid var(--line); }
.section-accent .step { border: 1px solid rgba(0,0,0,.12); }
.step .step-num { font-size: 15px; font-weight: 800; color: var(--ink); background: var(--accent); width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step .step-ic { font-size: 22px; color: var(--accent); margin-bottom: 14px; }
.section-light .step .step-ic { color: var(--accent-dark); }
.step h4 { margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--muted); }
.section-light .step p, .section-accent .step p { color: #62646b; }

/* ---------- Testimonials ---------- */
.quote { background: #fff; border-radius: var(--radius-lg); padding: 34px 30px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%; position: relative; }
.quote .qmark { position: absolute; top: 22px; right: 28px; font-size: 46px; color: var(--accent); opacity: .5; line-height: 1; }
.quote .stars { color: var(--accent-dark); letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
.quote p { font-size: 16.5px; line-height: 1.7; color: #444; flex: 1; }
.quote .who { margin-top: 22px; font-weight: 800; color: var(--text-strong); display: flex; align-items: center; gap: 12px; }
.quote .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; }
.quote .who span { display: block; font-weight: 500; font-size: 13.5px; color: var(--muted); }

/* ---------- Partner ---------- */
.partner { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center; }
.partner.reverse .partner-media { order: 2; }
.partner-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; height: 100%; max-height: 470px; object-fit: cover; }
.partner .role { font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 10px; }
.partner h3 { margin-bottom: 8px; }
.partner .person { color: var(--muted); font-weight: 700; margin-bottom: 18px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; background: var(--accent-soft); color: var(--accent-dark); padding: 8px 16px; border-radius: var(--radius-pill); }
.tag i { font-size: 12px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 28px; color: #fff; padding: 76px 56px; text-align: center; box-shadow: var(--shadow); }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(32,36,44,.82), rgba(43,49,59,.80)); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: #d9dadd; max-width: 620px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Brand marquee ---------- */
.brands { display: flex; flex-wrap: wrap; gap: 16px 46px; justify-content: center; align-items: center; }
.brands .b { font-weight: 800; font-size: 22px; color: var(--ink); letter-spacing: .5px; opacity: .55; transition: opacity .2s; }
.brands .b:hover { opacity: 1; }

/* ---------- Feature list (icon rows) ---------- */
.feature-rows { display: grid; gap: 22px; }
.frow { display: flex; gap: 18px; align-items: flex-start; }
.frow .fic { width: 50px; height: 50px; flex: none; border-radius: 13px; background: var(--accent-soft); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; font-size: 21px; }
.frow h4 { margin-bottom: 4px; }
.frow p { color: #5b5d63; font-size: 15.5px; }

/* ---------- Systempaket ---------- */
.package { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.package-head { background: var(--accent); color: var(--ink); padding: 24px 30px; }
.package-head .pk-label { font-size: 12.5px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.package-head h3 { color: var(--ink); margin-top: 6px; }
.package-body { padding: 28px 30px 30px; }
.package-list { list-style: none; display: grid; gap: 0; }
.package-list li { display: flex; align-items: center; gap: 14px; font-weight: 600; color: var(--text-strong); padding: 13px 0; border-bottom: 1px solid var(--line); }
.package-list li:last-child { border-bottom: none; }
.package-list li i { color: var(--accent-dark); width: 22px; text-align: center; font-size: 17px; }
.package-perks { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.package-perks span { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14.5px; color: var(--text-strong); }
.package-perks i { color: #1f9d55; font-size: 15px; }

/* ---------- Ablauf / Timeline ---------- */
.timeline { display: grid; gap: 0; max-width: 760px; margin: 0 auto; }
.tl-step { display: grid; grid-template-columns: 56px 1fr; gap: 22px; position: relative; padding-bottom: 36px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-step::before { content: ""; position: absolute; left: 27px; top: 56px; bottom: 0; width: 2px; background: var(--line); }
.tl-step:last-child::before { display: none; }
.tl-num { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: var(--ink); font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; z-index: 1; }
.tl-step h4 { margin-bottom: 6px; }
.tl-step p { color: #5b5d63; font-size: 16px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-info .info-item .ic { width: 48px; height: 48px; flex: none; border-radius: 13px; background: var(--accent); color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-info .info-item h4 { font-size: 17px; margin-bottom: 2px; }
.contact-info .info-item p { color: #5b5d63; font-size: 16px; }
.contact-info a { color: var(--accent-dark); font-weight: 700; }
form .field { margin-bottom: 20px; }
form label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; color: var(--text-strong); }
form input, form textarea, form select { width: 100%; padding: 14px 16px; font: 400 16px var(--font); border: 1.5px solid var(--line); border-radius: var(--radius-md); background: #fff; color: var(--text); transition: border-color .15s ease, box-shadow .15s ease; }
form input:focus, form textarea:focus, form select:focus { outline: none; border-color: var(--accent-dark); box-shadow: 0 0 0 3px rgba(255,194,0,.25); }
form textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 6px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); }
.check-row { display: flex; gap: 10px; align-items: flex-start; }
.check-row input { width: auto; margin-top: 5px; }
.check-row label { font-weight: 400; font-size: 13px; color: #62646b; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1.5px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 24px 0; font-weight: 700; font-size: 19px; color: var(--text-strong); display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .fa-plus { color: var(--accent-dark); transition: transform .2s; }
.faq-item[open] summary .fa-plus { transform: rotate(45deg); }
.faq-item p { padding: 0 0 24px; color: #5b5d63; font-size: 16px; }

/* ---------- Job listing ---------- */
.job { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 26px 30px; border: 1.5px solid var(--line); border-radius: var(--radius-lg); background: #fff; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.job:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.job .job-meta { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: 14px; font-weight: 600; margin-top: 6px; }
.job .job-meta span { display: inline-flex; align-items: center; gap: 7px; }
.job .job-meta i { color: var(--accent-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #b3b5b9; padding: 76px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-logo { height: 40px; margin-bottom: 18px; }
.footer-brand p { font-size: 15px; line-height: 1.7; max-width: 340px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: background .18s ease, color .18s ease; }
.footer-social a:hover { background: var(--accent); color: var(--ink); }
.footer-col h5 { color: #fff; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { font-size: 15px; color: #b3b5b9; transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.footer-contact i { color: var(--accent); margin-top: 5px; }
.footer-bottom { margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links > ul { gap: 20px; }
  .nav-links a, .dropdown-toggle { font-size: 14.5px; }
}
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .usp-row { grid-template-columns: 1fr; }
  .usp-row.usp-4 { grid-template-columns: 1fr 1fr; }
  .usp-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .usp-row.usp-4 .usp-cell:nth-child(odd) { border-right: 1px solid var(--line); }
  .usp-cell:last-child { border-bottom: none; }
  .usp-row.usp-4 .usp-cell:nth-last-child(2) { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split, .partner, .contact-grid, .prod-hero { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media, .partner.reverse .partner-media { order: 0; }
  .prod-hero .prod-hero-media { order: -1; }
}
@media (max-width: 1000px) {
  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0; background: var(--accent);
    padding: 8px 28px 26px;
    transform: translateY(-130%); transition: transform .28s ease; z-index: 90; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); box-shadow: 0 18px 40px rgba(0,0,0,.2); }
  .nav-links > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links > ul > li { border-bottom: 1.5px solid rgba(0,0,0,.12); }
  .nav-links > ul > li:last-child { border-bottom: none; }
  .nav-links a:not(.btn), .dropdown-toggle { display: flex; width: 100%; padding: 15px 0; justify-content: space-between; }
  .nav-links a:not(.btn)::after, .dropdown-toggle::after { display: none; }
  .nav-contact { padding-top: 14px; }
  .nav-contact .btn { width: 100%; justify-content: center; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; display: none; min-width: 0; border: none; box-shadow: none; background: transparent; padding: 0 0 12px; }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown.open .chev { transform: rotate(180deg); }
  .dropdown li a { padding-left: 6px; }
}
@media (max-width: 680px) {
  body { font-size: 17px; }
  .section { padding: 68px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band { padding: 52px 26px; }
  .job { flex-direction: column; align-items: flex-start; }
  .split-media .badge-float { left: 12px; bottom: 12px; }
}
