:root {
  --bg: #f8f7f5;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --accent: #c0392b;
  --accent-hover: #a93226;
  --border: #e2e0dc;
  --header-h: 64px;
  --radius-card: 6px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.10);
  --shadow-lift: 0 12px 32px rgba(192,57,43,0.22);
  --ff: system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-black: 900;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: var(--fw-normal);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* HEADER */
header {
  width: 100%;
  min-height: var(--header-h);
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s;
}
header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: -1;
}
header:focus-within::before,
header:hover::before { opacity: 1; }
@supports (animation-timeline: scroll()) {
  header {
    animation: header-fill linear both;
    animation-timeline: scroll();
    animation-range: 0px 80px;
  }
  @keyframes header-fill {
    from { background: transparent; border-color: transparent; }
    to { background: var(--bg); border-color: var(--border); }
  }
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding-top: 0;
  padding-bottom: 0;
  max-width: 1100px;
}

/* WORDMARK */
.wordmark {
  font-family: var(--ff);
  font-size: 1.125rem;
  font-weight: var(--fw-black);
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
nav a:hover { color: var(--text); }
nav .nav-cta {
  color: var(--accent);
  font-weight: var(--fw-bold);
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}

/* HERO */
#hero {
  background: var(--surface);
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-text {
  padding: 64px 48px 64px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
#hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 440px;
}
.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: -4px;
}
.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

/* BUTTONS */
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-family: var(--ff);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  padding: 14px 28px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  letter-spacing: -0.01em;
  white-space: nowrap;
  align-self: flex-start;
  line-height: 1.2;
}
.btn-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.btn-cta:active { transform: translateY(-1px); }
.btn-cta--full {
  display: block;
  width: 100%;
  text-align: center;
}

/* PROBLEM / SOLUTION */
#problem-solution {
  padding: 64px 0;
  background: var(--bg);
}
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 32px;
  align-items: start;
}
.ps-divider {
  background: var(--border);
  align-self: stretch;
  margin-top: 40px;
}
.ps-side h2 {
  font-size: 1.15rem;
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}
.ps-problem h2 { color: #7a3a3a; }
.ps-solution h2 { color: #2a5a3a; }
.ps-side ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ps-side ul li {
  font-size: 0.93rem;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.ps-problem ul li span { color: #b03030; font-weight: var(--fw-bold); flex-shrink: 0; }
.ps-solution ul li span { color: #2e7d52; font-weight: var(--fw-bold); flex-shrink: 0; }

/* LEISTUNGEN */
#leistungen {
  padding: 72px 0;
  background: var(--surface);
}
.section-label {
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
#leistungen h2, #ablauf h2, #referenzen h2, #faq h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--text);
}
.section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
article.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: box-shadow 0.18s, transform 0.18s;
}
article.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-icon {
  display: block;
  color: var(--accent);
  margin-bottom: 16px;
}
article.card h3 {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text);
}
article.card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* PHOTO BAND */
.photo-band {
  background: var(--text);
  padding: 0;
  overflow: hidden;
}
.photo-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 380px;
}
.photo-band-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
  aspect-ratio: 4/3;
}
.photo-band-text {
  padding: 48px 48px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: var(--text);
}
.photo-band-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #ffffff;
}
.photo-band-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

/* ABLAUF */
#ablauf {
  padding: 72px 0;
  background: var(--bg);
}
.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  border-left: 2px solid var(--border);
  padding-left: 0;
}
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 40px 32px;
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
}
.step-number {
  font-size: 2rem;
  font-weight: var(--fw-black);
  letter-spacing: -0.04em;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.step-content h3 {
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--text);
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--accent);
  padding: 32px 0;
}
.trust-items {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
  align-items: center;
}
.trust-items li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: var(--fw-medium);
  white-space: nowrap;
}
.trust-icon { display: flex; align-items: center; flex-shrink: 0; }

/* TESTIMONIALS */
#referenzen {
  padding: 72px 0;
  background: var(--surface);
}
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
blockquote {
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 24px 24px 20px;
}
blockquote p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 12px;
  font-style: italic;
}
blockquote footer {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: normal;
}
blockquote footer strong { color: var(--text); }

/* WORKER BAND */
.worker-band {
  width: 100%;
  overflow: hidden;
  max-height: 400px;
  background: #222;
}
.worker-band img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/5;
}

/* FAQ */
#faq {
  padding: 72px 0;
  background: var(--bg);
}
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
dt {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}
dd {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-left: 0;
}

/* LEAD FORM ZONE */
#lead-form-zone {
  background: var(--surface);
  padding: 72px 0;
}
.form-zone {
  width: 100%;
}
.form-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.form-box__title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 8px;
}
.form-box > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.form-box__privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
  line-height: 1.5;
}

/* FORM FIELDS */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.field__label {
  font-size: 0.85rem;
  font-weight: var(--fw-bold);
  color: var(--text);
  letter-spacing: -0.01em;
}
.field__required {
  color: var(--accent);
  margin-left: 2px;
}
.field__input {
  font-family: var(--ff);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  max-width: 100%;
}
.field__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.field__error {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: var(--fw-medium);
}
.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.phone-wrap {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.phone-wrap__dial {
  flex: 0 0 80px;
}
.phone-wrap__number {
  flex: 1;
}
.form-message {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-top: 12px;
}
.form-message--error {
  background: #fdecea;
  color: #a93226;
  border: 1px solid #f5c6c2;
}
.form-message--success {
  background: #eafaf1;
  color: #1d6a40;
  border: 1px solid #b7dfca;
}
.form-success {
  text-align: center;
  padding: 32px 0;
}
.form-success__title {
  font-size: 1.3rem;
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}
.form-success__msg {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FOOTER */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.65);
  padding: 48px 0 32px;
}
footer .container { max-width: 720px; }
.footer-brand {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand .wordmark {
  color: #ffffff;
  font-size: 1.3rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.6;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 32px;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-nav a:hover { color: #ffffff; }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}

/* TABLET ≤ 1024px */
@media (max-width: 1024px) {
  .hero-inner {
    max-width: 100%;
  }
  .hero-text {
    padding: 48px 32px 48px 24px;
  }
  .photo-band-inner {
    max-width: 100%;
  }
  .photo-band-text {
    padding: 40px 32px;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .ps-grid {
    gap: 24px;
  }
}

/* MOBILE ≤ 768px */
@media (max-width: 768px) {
  :root { --header-h: 56px; }
  header .container { max-width: 100%; }
  nav { gap: 16px; }
  nav a:not(.nav-cta) { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-text {
    padding: 40px 24px 32px;
    order: 1;
  }
  .hero-visual {
    order: 0;
    max-height: 240px;
    overflow: hidden;
  }
  .hero-visual img {
    aspect-ratio: 16/7;
    max-height: 240px;
  }
  #hero h1 { font-size: 1.75rem; }
  .hero-sub { font-size: 0.95rem; }
  .ps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ps-divider { display: none; }
  .cards {
    grid-template-columns: 1fr;
  }
  .photo-band-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .photo-band-inner img {
    aspect-ratio: 16/7;
    max-height: 220px;
  }
  .photo-band-text {
    padding: 32px 24px;
  }
  .trust-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0 24px;
  }
  .trust-items li { white-space: normal; }
  .name-row {
    grid-template-columns: 1fr;
  }
  .form-box {
    padding: 28px 20px;
  }
  .worker-band img {
    aspect-ratio: 16/6;
  }
  .process-step {
    padding-left: 24px;
  }
  .step-number { font-size: 1.5rem; min-width: 30px; }
  blockquote { padding: 20px 18px 16px; }
  footer .container { max-width: 100%; }
}
/* ===== injected by offer pipeline: BEGIN ===== */

/* ── Phone dial control (injected) ─────────────────────────────────── */
.phone-wrap { display: flex; gap: .5rem; align-items: stretch; }
.phone-wrap__number { flex: 1; min-width: 0; }
.dial { position: relative; flex: none; display: flex; }
.dial__display {
  display: inline-flex; align-items: center; gap: .4rem; width: 100%;
  padding: .7rem .6rem .7rem .7rem;
  border: 1.5px solid var(--clr-border, var(--color-border, #d9d4cc)); border-radius: 8px;
  background: var(--clr-bg, var(--color-bg, #f6f5f2)); color: var(--clr-text, var(--color-text, #1c1c1c));
  font-size: 1rem; line-height: 1.25; white-space: nowrap;
  pointer-events: none;                    /* clicks belong to the select on top */
  transition: border-color .15s, box-shadow .15s;
}
.dial__flag { font-size: 1.15rem; line-height: 1; }
.dial__flag:not(:empty) { min-width: 1.35em; text-align: center; }
.dial__code { font-weight: 700; font-variant-numeric: tabular-nums; }
.dial__caret { width: 15px; height: 15px; flex: none; color: var(--clr-text-muted, var(--color-text-muted, var(--color-label, #6b6b6b))); }
.dial__select {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer; border: 0; padding: 0; margin: 0;
  appearance: none; -webkit-appearance: none;
}
.dial:focus-within .dial__display { border-color: var(--clr-accent, var(--color-primary, #b4682f)); box-shadow: 0 0 0 3px rgba(0,0,0,.08); }

/* ── Outbound industry references (injected) ───────────────────────── */
.resources-section { padding-block: clamp(3rem, 7vw, 4.5rem); background: var(--clr-bg, var(--color-bg, #f6f5f2)); }
.resources-section .section-header { margin-bottom: 2rem; }
.resource-eyebrow { margin: 0 0 0.75rem; }
.resource-title { font-size: clamp(1.6rem, 4vw, 2.3rem); line-height: 1.15; margin: 0 0 0.75rem; color: var(--clr-brand, var(--color-heading, var(--color-text, #23303a))); }
.resource-intro { font-size: 1rem; line-height: 1.65; color: var(--clr-text-mid, var(--color-text-mid, #3d3d3d)); margin: 0; max-width: 68ch; }
.resource-group { margin-top: 2.5rem; }
.resource-group__title {
  font-size: 1.05rem; font-weight: 700; color: var(--clr-brand, var(--color-heading, var(--color-text, #23303a)));
  margin: 0 0 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--clr-border, var(--color-border, #d9d4cc));
}
.resource-grid {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.resource-card {
  background: var(--clr-surface, var(--color-surface, #ffffff)); border: 1px solid var(--clr-border, var(--color-border, #d9d4cc)); border-radius: 12px; padding: 1.35rem;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.resource-card:hover { transform: translateY(-2px); border-color: var(--clr-accent, var(--color-primary, #b4682f)); box-shadow: 0 6px 22px rgba(0,0,0,.07); }
.resource-card__link {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  gap: .25rem .75rem; text-decoration: none; color: inherit;
}
.resource-card__name {
  grid-column: 1; font-weight: 700; font-size: 1.02rem; color: var(--clr-brand, var(--color-heading, var(--color-text, #23303a)));
  text-decoration: underline; text-decoration-color: var(--clr-accent, var(--color-primary, #b4682f));
  text-decoration-thickness: 2px; text-underline-offset: 3px;
}
.resource-card__meta {
  grid-column: 1; grid-row: 2; font-size: .78rem; color: var(--clr-text-muted, var(--color-text-muted, var(--color-label, #6b6b6b)));
  text-transform: uppercase; letter-spacing: .06em;
}
.resource-card__arrow { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--clr-accent, var(--color-primary, #b4682f)); font-size: 1.1rem; transition: transform .2s ease; }
.resource-card__link:hover .resource-card__arrow { transform: translateX(3px); }
.resource-card__desc { margin: .75rem 0 0; font-size: .92rem; line-height: 1.55; color: var(--clr-text-mid, var(--color-text-mid, #3d3d3d)); }
.resource-note { margin: 2rem 0 0; font-size: .85rem; line-height: 1.6; color: var(--clr-text-muted, var(--color-text-muted, var(--color-label, #6b6b6b))); max-width: 68ch; }
@media (min-width: 900px) { .resource-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px) { .resource-grid, .resource-grid--three, .resource-grid--two { grid-template-columns: 1fr; } .resource-group { margin-top: 2rem; } }

/* ── Form polish (injected) ────────────────────────────────────────── */
/* #form-message is the empty status container; several generated stylesheets
   give it a border/background, so it renders as a stray empty box until a
   message appears. */
.form-message:empty { display: none; }
/* Keep the number field wide enough that its placeholder is not clipped when
   the form sits in a narrow column beside the dial chip. */
.dial__display { padding-left: .55rem; padding-right: .5rem; gap: .3rem; }
.dial__caret { width: 13px; height: 13px; }

/* ── RTL adjustments for injected blocks ───────────────────────────── */
[dir="rtl"] .dial__display { padding-inline-start: .7rem; padding-inline-end: .5rem; }
[dir="rtl"] .resource-card__arrow { transform: scaleX(-1); }
[dir="rtl"] .resource-card__link:hover .resource-card__arrow { transform: scaleX(-1) translateX(3px); }
[dir="rtl"] .resource-card__meta { letter-spacing: 0; }
[dir="rtl"] .resource-note, [dir="rtl"] .resource-intro { text-align: start; }
/* ===== injected by offer pipeline: END ===== */
/* ===== injected by offer pipeline: BEGIN ===== */

/* ── Phone dial control (injected) ─────────────────────────────────── */
.phone-wrap { display: flex; gap: .5rem; align-items: stretch; }
.phone-wrap__number { flex: 1; min-width: 0; }
.dial { position: relative; flex: none; display: flex; }
.dial__display {
  display: inline-flex; align-items: center; gap: .4rem; width: 100%;
  padding: .7rem .6rem .7rem .7rem;
  border: 1.5px solid var(--clr-border, var(--color-border, #d9d4cc)); border-radius: 8px;
  background: var(--clr-bg, var(--color-bg, #f6f5f2)); color: var(--clr-text, var(--color-text, #1c1c1c));
  font-size: 1rem; line-height: 1.25; white-space: nowrap;
  pointer-events: none;                    /* clicks belong to the select on top */
  transition: border-color .15s, box-shadow .15s;
}
.dial__flag { font-size: 1.15rem; line-height: 1; }
.dial__flag:not(:empty) { min-width: 1.35em; text-align: center; }
.dial__code { font-weight: 700; font-variant-numeric: tabular-nums; }
.dial__caret { width: 15px; height: 15px; flex: none; color: var(--clr-text-muted, var(--color-text-muted, var(--color-label, #6b6b6b))); }
.dial__select {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer; border: 0; padding: 0; margin: 0;
  appearance: none; -webkit-appearance: none;
}
.dial:focus-within .dial__display { border-color: var(--clr-accent, var(--color-primary, #b4682f)); box-shadow: 0 0 0 3px rgba(0,0,0,.08); }

/* ── Outbound industry references (injected) ───────────────────────── */
.resources-section { padding-block: clamp(3rem, 7vw, 4.5rem); background: var(--clr-bg, var(--color-bg, #f6f5f2)); }
.resources-section .section-header { margin-bottom: 2rem; }
.resource-eyebrow { margin: 0 0 0.75rem; }
.resource-title { font-size: clamp(1.6rem, 4vw, 2.3rem); line-height: 1.15; margin: 0 0 0.75rem; color: var(--clr-brand, var(--color-heading, var(--color-text, #23303a))); }
.resource-intro { font-size: 1rem; line-height: 1.65; color: var(--clr-text-mid, var(--color-text-mid, #3d3d3d)); margin: 0; max-width: 68ch; }
.resource-group { margin-top: 2.5rem; }
.resource-group__title {
  font-size: 1.05rem; font-weight: 700; color: var(--clr-brand, var(--color-heading, var(--color-text, #23303a)));
  margin: 0 0 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--clr-border, var(--color-border, #d9d4cc));
}
.resource-grid {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.resource-card {
  background: var(--clr-surface, var(--color-surface, #ffffff)); border: 1px solid var(--clr-border, var(--color-border, #d9d4cc)); border-radius: 12px; padding: 1.35rem;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.resource-card:hover { transform: translateY(-2px); border-color: var(--clr-accent, var(--color-primary, #b4682f)); box-shadow: 0 6px 22px rgba(0,0,0,.07); }
.resource-card__link {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  gap: .25rem .75rem; text-decoration: none; color: inherit;
}
.resource-card__name {
  grid-column: 1; font-weight: 700; font-size: 1.02rem; color: var(--clr-brand, var(--color-heading, var(--color-text, #23303a)));
  text-decoration: underline; text-decoration-color: var(--clr-accent, var(--color-primary, #b4682f));
  text-decoration-thickness: 2px; text-underline-offset: 3px;
}
.resource-card__meta {
  grid-column: 1; grid-row: 2; font-size: .78rem; color: var(--clr-text-muted, var(--color-text-muted, var(--color-label, #6b6b6b)));
  text-transform: uppercase; letter-spacing: .06em;
}
.resource-card__arrow { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--clr-accent, var(--color-primary, #b4682f)); font-size: 1.1rem; transition: transform .2s ease; }
.resource-card__link:hover .resource-card__arrow { transform: translateX(3px); }
.resource-card__desc { margin: .75rem 0 0; font-size: .92rem; line-height: 1.55; color: var(--clr-text-mid, var(--color-text-mid, #3d3d3d)); }
.resource-note { margin: 2rem 0 0; font-size: .85rem; line-height: 1.6; color: var(--clr-text-muted, var(--color-text-muted, var(--color-label, #6b6b6b))); max-width: 68ch; }
@media (min-width: 900px) { .resource-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px) { .resource-grid, .resource-grid--three, .resource-grid--two { grid-template-columns: 1fr; } .resource-group { margin-top: 2rem; } }

/* ── Form polish (injected) ────────────────────────────────────────── */
/* #form-message is the empty status container; several generated stylesheets
   give it a border/background, so it renders as a stray empty box until a
   message appears. */
.form-message:empty { display: none; }
/* Keep the number field wide enough that its placeholder is not clipped when
   the form sits in a narrow column beside the dial chip. */
.dial__display { padding-left: .55rem; padding-right: .5rem; gap: .3rem; }
.dial__caret { width: 13px; height: 13px; }

/* ── RTL adjustments for injected blocks ───────────────────────────── */
[dir="rtl"] .dial__display { padding-inline-start: .7rem; padding-inline-end: .5rem; }
[dir="rtl"] .resource-card__arrow { transform: scaleX(-1); }
[dir="rtl"] .resource-card__link:hover .resource-card__arrow { transform: scaleX(-1) translateX(3px); }
[dir="rtl"] .resource-card__meta { letter-spacing: 0; }
[dir="rtl"] .resource-note, [dir="rtl"] .resource-intro { text-align: start; }
/* ===== injected by offer pipeline: END ===== */
/* ===== injected by offer pipeline: BEGIN ===== */

/* ── Phone dial control (injected) ─────────────────────────────────── */
.phone-wrap { display: flex; gap: .5rem; align-items: stretch; }
.phone-wrap__number { flex: 1; min-width: 0; }
.dial { position: relative; flex: none; display: flex; }
.dial__display {
  display: inline-flex; align-items: center; gap: .4rem; width: 100%;
  padding: .7rem .6rem .7rem .7rem;
  border: 1.5px solid var(--clr-border, var(--color-border, #d9d4cc)); border-radius: 8px;
  background: var(--clr-bg, var(--color-bg, #f6f5f2)); color: var(--clr-text, var(--color-text, #1c1c1c));
  font-size: 1rem; line-height: 1.25; white-space: nowrap;
  pointer-events: none;                    /* clicks belong to the select on top */
  transition: border-color .15s, box-shadow .15s;
}
.dial__flag { font-size: 1.15rem; line-height: 1; }
.dial__flag:not(:empty) { min-width: 1.35em; text-align: center; }
.dial__code { font-weight: 700; font-variant-numeric: tabular-nums; }
.dial__caret { width: 15px; height: 15px; flex: none; color: var(--clr-text-muted, var(--color-text-muted, var(--color-label, #6b6b6b))); }
.dial__select {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer; border: 0; padding: 0; margin: 0;
  appearance: none; -webkit-appearance: none;
}
.dial:focus-within .dial__display { border-color: var(--clr-accent, var(--color-primary, #b4682f)); box-shadow: 0 0 0 3px rgba(0,0,0,.08); }

/* ── Outbound industry references (injected) ───────────────────────── */
.resources-section { padding-block: clamp(3rem, 7vw, 4.5rem); background: var(--clr-bg, var(--color-bg, #f6f5f2)); }
.resources-section .section-header { margin-bottom: 2rem; }
.resource-eyebrow { margin: 0 0 0.75rem; }
.resource-title { font-size: clamp(1.6rem, 4vw, 2.3rem); line-height: 1.15; margin: 0 0 0.75rem; color: var(--clr-brand, var(--color-heading, var(--color-text, #23303a))); }
.resource-intro { font-size: 1rem; line-height: 1.65; color: var(--clr-text-mid, var(--color-text-mid, #3d3d3d)); margin: 0; max-width: 68ch; }
.resource-group { margin-top: 2.5rem; }
.resource-group__title {
  font-size: 1.05rem; font-weight: 700; color: var(--clr-brand, var(--color-heading, var(--color-text, #23303a)));
  margin: 0 0 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--clr-border, var(--color-border, #d9d4cc));
}
.resource-grid {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem;
  /* auto-fit rather than a fixed column count: every generated page brings its
     own .container width (one shipped a ~700px max-width, where three fixed
     columns squeezed cards to 196px). This adapts to whatever it gets and never
     drops a track below a readable width. */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.resource-card {
  background: var(--clr-surface, var(--color-surface, #ffffff)); border: 1px solid var(--clr-border, var(--color-border, #d9d4cc)); border-radius: 12px; padding: 1.35rem;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.resource-card:hover { transform: translateY(-2px); border-color: var(--clr-accent, var(--color-primary, #b4682f)); box-shadow: 0 6px 22px rgba(0,0,0,.07); }
.resource-card__link {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  gap: .25rem .75rem; text-decoration: none; color: inherit;
}
.resource-card__name {
  grid-column: 1; font-weight: 700; font-size: 1.02rem; color: var(--clr-brand, var(--color-heading, var(--color-text, #23303a)));
  text-decoration: underline; text-decoration-color: var(--clr-accent, var(--color-primary, #b4682f));
  text-decoration-thickness: 2px; text-underline-offset: 3px;
}
.resource-card__meta {
  grid-column: 1; grid-row: 2; font-size: .78rem; color: var(--clr-text-muted, var(--color-text-muted, var(--color-label, #6b6b6b)));
  text-transform: uppercase; letter-spacing: .06em;
}
.resource-card__arrow { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--clr-accent, var(--color-primary, #b4682f)); font-size: 1.1rem; transition: transform .2s ease; }
.resource-card__link:hover .resource-card__arrow { transform: translateX(3px); }
.resource-card__desc { margin: .75rem 0 0; font-size: .92rem; line-height: 1.55; color: var(--clr-text-mid, var(--color-text-mid, #3d3d3d)); }
.resource-note { margin: 2rem 0 0; font-size: .85rem; line-height: 1.6; color: var(--clr-text-muted, var(--color-text-muted, var(--color-label, #6b6b6b))); max-width: 68ch; }
@media (max-width: 700px) { .resource-group { margin-top: 2rem; } }

/* ── Form polish (injected) ────────────────────────────────────────── */
/* #form-message is the empty status container; several generated stylesheets
   give it a border/background, so it renders as a stray empty box until a
   message appears. */
.form-message:empty { display: none; }
/* Keep the number field wide enough that its placeholder is not clipped when
   the form sits in a narrow column beside the dial chip. */
.dial__display { padding-left: .55rem; padding-right: .5rem; gap: .3rem; }
.dial__caret { width: 13px; height: 13px; }

/* ── RTL adjustments for injected blocks ───────────────────────────── */
[dir="rtl"] .dial__display { padding-inline-start: .7rem; padding-inline-end: .5rem; }
[dir="rtl"] .resource-card__arrow { transform: scaleX(-1); }
[dir="rtl"] .resource-card__link:hover .resource-card__arrow { transform: scaleX(-1) translateX(3px); }
[dir="rtl"] .resource-card__meta { letter-spacing: 0; }
[dir="rtl"] .resource-note, [dir="rtl"] .resource-intro { text-align: start; }
/* ===== injected by offer pipeline: END ===== */
