:root {
  --color-bg: #f5f4f2;
  --color-surface: #ffffff;
  --color-border: #d6d3ce;
  --color-text: #1a1917;
  --color-text-muted: #5c5853;
  --color-accent: #2b4c3f;
  --color-accent-light: #e8f0ec;
  --color-accent-hover: #1e3629;
  --color-cta: #2b4c3f;
  --color-cta-hover: #1e3629;
  --color-cta-shadow: #0f2018;
  --color-eyebrow: #2b4c3f;
  --color-step-num: #2b4c3f;
  --radius: 2px;
  --container-max: 1120px;
  --section-gap: 80px;
  --font: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  background: var(--color-cta);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 8px;
}

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

/* BUTTONS */
.btn-cta {
  display: inline-block;
  background: var(--color-cta);
  color: #ffffff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 14px 28px;
  border: 2px solid var(--color-text);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--color-cta-shadow);
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.1s ease, transform 0.1s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  background: var(--color-cta-hover);
  box-shadow: 2px 2px 0 var(--color-cta-shadow);
  transform: translate(2px, 2px);
  text-decoration: none;
  color: #ffffff;
}

.btn-cta--full {
  display: block;
  width: 100%;
  text-align: center;
}

/* HEADER */
header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}

header .container {
  display: flex;
  align-items: center;
}

.wordmark {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

/* SECTION LABELS & HEADINGS */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-eyebrow);
  margin-bottom: 8px;
  display: block;
}

.section-label.centered {
  text-align: center;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.18;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

p {
  font-size: 0.97rem;
  line-height: 1.68;
  color: var(--color-text-muted);
}

.section-intro {
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
}

.centered {
  text-align: center;
}

/* HERO */
#hero {
  padding: 64px 0 72px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-eyebrow);
  margin-bottom: 16px;
}

.hero-text h1 {
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  max-width: 480px;
}

.hero-trust {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
}

.hero-trust svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--color-border);
  max-height: 440px;
}

/* PROBLEM / SOLUTION */
#warum {
  padding: var(--section-gap) 0;
  background: var(--color-bg);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.ps-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: -8px 8px 0 var(--color-border);
  max-height: 380px;
}

.ps-text h2 {
  margin-bottom: 16px;
}

.ps-text p {
  margin-bottom: 16px;
}

.ps-text .btn-cta {
  margin-top: 8px;
}

/* LEISTUNGEN */
#leistungen {
  padding: var(--section-gap) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 2px solid var(--color-border);
}

.cards article {
  background: var(--color-surface);
  padding: 24px;
  border: 1px solid var(--color-border);
  transition: background 0.15s;
}

.cards article:hover {
  background: var(--color-accent-light);
}

.card-icon {
  color: var(--color-accent);
  margin-bottom: 12px;
}

.cards article h3 {
  margin-bottom: 8px;
  color: var(--color-text);
}

.cards article p {
  font-size: 0.88rem;
}

/* PROCESS */
#ablauf {
  padding: var(--section-gap) 0;
  background: var(--color-accent);
}

#ablauf .section-label {
  color: rgba(255,255,255,0.7);
}

#ablauf h2 {
  color: #ffffff;
}

.process {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 40px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.2);
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.07);
}

.step-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  min-width: 48px;
  flex-shrink: 0;
  letter-spacing: -0.04em;
}

.step-body h3 {
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 1rem;
}

.step-body p {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
}

/* MID CTA BAND */
#cta-mid {
  padding: 48px 0;
  background: var(--color-accent-light);
  border-top: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band-text h2 {
  margin-bottom: 4px;
  font-size: 1.5rem;
}

.cta-band-text p {
  font-size: 0.92rem;
}

/* TRUST */
#vertrauen {
  padding: var(--section-gap) 0;
  background: var(--color-bg);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.trust-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--color-border);
  max-height: 480px;
}

.trust-content h2 {
  margin-bottom: 24px;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trust-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-list strong {
  display: block;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.trust-list p {
  font-size: 0.88rem;
  margin: 0;
}

/* TESTIMONIALS */
#stimmen {
  padding: var(--section-gap) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

#stimmen h2 {
  margin-bottom: 40px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--color-border);
  border: 2px solid var(--color-border);
}

blockquote {
  background: var(--color-surface);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

blockquote p {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.65;
}

blockquote footer {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

blockquote cite {
  font-style: normal;
}

/* FAQ */
#faq {
  padding: var(--section-gap) 0;
  background: var(--color-bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

.faq-intro h2 {
  margin-bottom: 12px;
}

.faq-intro p {
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid var(--color-border);
  padding: 16px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.faq-list dt {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--color-text);
  margin-bottom: 8px;
  cursor: default;
}

.faq-list dd {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* FORM ZONE */
#lead-form-zone {
  padding: var(--section-gap) 0;
  background: var(--color-surface);
  border-top: 2px solid var(--color-border);
}

.form-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.form-intro h2 {
  margin-bottom: 12px;
}

.form-intro p {
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.form-trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
}

.form-trust svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.form-box {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 6px 6px 0 var(--color-border);
}

.form-box__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-eyebrow);
  margin-bottom: 16px;
  display: block;
}

.form-box__privacy {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.field__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.field__required {
  color: var(--color-accent);
  margin-left: 2px;
}

.field__input {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 10px 12px;
  width: 100%;
  transition: border-color 0.15s;
  outline: none;
}

.field__input:focus {
  border-color: var(--color-accent);
}

.field__error {
  font-size: 0.78rem;
  color: #c0392b;
  font-weight: 700;
}

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.phone-wrap {
  display: flex;
  gap: 8px;
}

.phone-wrap__dial {
  width: 88px;
  flex-shrink: 0;
}

.phone-wrap__number {
  flex: 1;
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 12px;
}

.form-message--error {
  background: #fdecea;
  color: #c0392b;
  border: 1px solid #f5c6c2;
}

.form-message--success {
  background: var(--color-accent-light);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.form-success {
  padding: 32px 24px;
  text-align: center;
}

.form-success__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-success__msg {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

/* FOOTER */
footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.85);
  padding: 32px 0;
  border-top: 2px solid var(--color-cta-shadow);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand .wordmark {
  color: #ffffff;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.footer-legal a {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* TABLET */
@media (max-width: 1024px) {
  :root {
    --section-gap: 64px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-layout {
    grid-template-columns: 260px 1fr;
    gap: 40px;
  }

  .form-zone {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  :root {
    --section-gap: 48px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-visual img {
    max-height: 260px;
  }

  .ps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ps-image {
    order: -1;
  }

  .ps-image img {
    max-height: 220px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-photo img {
    max-height: 240px;
    aspect-ratio: 16/9;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-zone {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .name-row {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
}
/* ===== 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 ===== */
