:root {
  --c-bg: #f9f8f6;
  --c-bg-muted: #f0ede8;
  --c-bg-dark: #1c1c1c;
  --c-text: #1e1e1e;
  --c-text-light: #4a4a4a;
  --c-text-on-dark: #f0ede8;
  --c-accent: #b87333;
  --c-accent-hover: #9a6028;
  --c-border: #d8d3cc;
  --c-success: #2a6641;
  --c-error: #b02020;
  --sp-6: 6px;
  --sp-12: 12px;
  --sp-24: 24px;
  --sp-48: 48px;
  --sp-96: 96px;
  --header-h: 64px;
  --radius: 4px;
  --font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-stack);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--sp-12);
  background: var(--c-accent);
  color: #fff;
  padding: var(--sp-6) var(--sp-12);
  font-size: 0.875rem;
  font-weight: 700;
  z-index: 9999;
  border-radius: var(--radius);
  transition: top 0.15s;
}
.skip-link:focus { top: var(--sp-12); }

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-48);
}

/* HEADER */
.site-header {
  background: var(--c-bg);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--c-border);
  padding-block: var(--sp-12);
}
.site-header .container { display: flex; align-items: center; }
.brand-wordmark {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-text);
  line-height: 1;
  white-space: nowrap;
}
.brand-wordmark:hover { color: var(--c-accent); }

/* BANDS */
.band-light { background: var(--c-bg); padding-block: var(--sp-96); }
.band-muted { background: var(--c-bg-muted); padding-block: var(--sp-96); }
.band-dark { background: var(--c-bg-dark); padding-block: var(--sp-96); }

/* UTILITY */
.stack-3 > * + * { margin-top: var(--sp-24); }
.row-gap-2 { gap: var(--sp-48); }
.text-xl { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
.text-display {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.bg-muted { background: var(--c-bg-muted); }
.text-center { text-align: center; }
.text-on-dark { color: var(--c-text-on-dark); }
.mt-48 { margin-top: var(--sp-48); }

.section-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--sp-12);
}
.section-sub {
  font-size: 1.05rem;
  margin-bottom: var(--sp-48);
  color: var(--c-text-light);
}
.band-dark .section-sub { color: #a8a49e; }

/* HERO */
.hero-band {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  aspect-ratio: 16/9;
  max-height: 620px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15,15,15,0.82) 45%, rgba(15,15,15,0.35) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--sp-96);
}
.hero-text {
  max-width: 620px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.hero-sub {
  color: rgba(240,237,232,0.88);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 520px;
}
.text-display { color: #fff; }

/* BUTTONS */
.btn-cta {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--c-accent);
  border-bottom: 2px solid var(--c-accent);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-stack);
}
.btn-cta:hover, .btn-cta:focus-visible {
  color: var(--c-accent-hover);
  border-bottom-color: var(--c-accent-hover);
  outline: none;
}
.btn-cta:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }

.btn-cta--on-dark {
  color: #e8c99a;
  border-bottom-color: #e8c99a;
}
.btn-cta--on-dark:hover, .btn-cta--on-dark:focus-visible {
  color: #fff;
  border-bottom-color: #fff;
}

.btn-cta--full {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.05rem;
  padding: var(--sp-12) var(--sp-24);
  border-bottom-width: 2px;
}

/* INTRO SPLIT */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-48);
}
.intro-split__text h2 {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--sp-24);
}
.intro-split__text p + p { margin-top: var(--sp-24); }
.intro-split__text p { color: var(--c-text-light); line-height: 1.7; }
.rounded-img {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  max-height: 420px;
}

/* CARD GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
}
.benefit-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--sp-24);
}
.benefit-card h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: var(--sp-12);
  color: var(--c-text);
}
.benefit-card p { font-size: 0.9rem; color: var(--c-text-light); line-height: 1.6; }
.benefit-icon {
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: var(--sp-12);
  line-height: 1;
}

/* PROCESS */
.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-48);
  counter-reset: none;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-24);
  border-left: 2px solid var(--c-accent);
  padding-left: var(--sp-24);
}
.process-num {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--c-accent);
  flex-shrink: 0;
  min-width: 56px;
}
.process-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--c-text-on-dark);
  margin-bottom: var(--sp-6);
}
.process-body p { font-size: 0.95rem; color: #a8a49e; line-height: 1.65; }

/* PHOTO BAND */
.photo-band {
  position: relative;
  overflow: hidden;
  max-height: 420px;
}
.photo-band__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  aspect-ratio: 16/5;
  max-height: 420px;
  display: block;
}
.photo-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-48);
}
.photo-band__caption {
  color: #fff;
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 600px;
}

/* TRUST STRIP */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-24);
  margin-top: var(--sp-48);
}
.trust-item {
  border-top: 2px solid var(--c-accent);
  padding-top: var(--sp-24);
}
.trust-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: var(--sp-12);
}
.trust-item p { font-size: 0.9rem; color: var(--c-text-light); line-height: 1.6; }
.trust-item strong { color: var(--c-text); font-weight: 800; }

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
}
.testimonial-card {
  background: var(--c-bg);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  padding: var(--sp-24);
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-text);
  flex: 1;
  font-style: italic;
}
.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: var(--sp-6);
}
.testimonial-name {
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--c-text);
}
.testimonial-location {
  font-size: 0.8rem;
  color: var(--c-text-light);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-top: var(--sp-48);
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-question {
  padding: var(--sp-24) 0;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--c-text);
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--c-accent);
  flex-shrink: 0;
  margin-left: var(--sp-12);
  transition: transform 0.2s;
}
details[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-answer {
  padding-bottom: var(--sp-24);
  font-size: 0.95rem;
  color: var(--c-text-light);
  line-height: 1.7;
}

/* FORM ZONE */
.form-zone {
  padding-block: var(--sp-96);
}
.form-box {
  background: var(--c-bg);
  border-radius: var(--radius);
  padding: var(--sp-48);
  max-width: 640px;
  margin-inline: auto;
}
.form-box__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: var(--sp-12);
}
.form-box__sub {
  font-size: 0.95rem;
  color: var(--c-text-light);
  margin-bottom: var(--sp-24);
  line-height: 1.6;
}
.form-box__privacy {
  font-size: 0.8rem;
  color: var(--c-text-light);
  margin-top: var(--sp-12);
  line-height: 1.5;
}

/* FORM FIELDS */
.field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-bottom: var(--sp-24);
}
.field__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.01em;
}
.field__required {
  color: var(--c-error);
  margin-left: 2px;
  font-weight: 700;
}
.field__input {
  width: 100%;
  padding: var(--sp-12) var(--sp-12);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-stack);
  color: var(--c-text);
  background: var(--c-bg);
  transition: border-color 0.15s;
  line-height: 1.5;
}
.field__input:focus {
  outline: none;
  border-color: var(--c-accent);
}
.field__input::placeholder { color: #aaa; }
.field__error {
  font-size: 0.8rem;
  color: var(--c-error);
  font-weight: 600;
}
.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-24);
}
.phone-wrap {
  display: flex;
  gap: var(--sp-12);
}
.phone-wrap__dial {
  width: 90px;
  flex-shrink: 0;
}
.phone-wrap__number { flex: 1; }

/* FORM MESSAGES */
.form-message {
  padding: var(--sp-12) var(--sp-24);
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-top: var(--sp-12);
  font-weight: 600;
}
.form-message--error {
  background: #fdf0f0;
  color: var(--c-error);
  border: 1px solid #f5c2c2;
}
.form-message--success {
  background: #edf7f0;
  color: var(--c-success);
  border: 1px solid #b2d9bf;
}
.form-success {
  text-align: center;
  padding: var(--sp-48) var(--sp-24);
}
.form-success__title {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--c-success);
  margin-bottom: var(--sp-12);
}
.form-success__msg {
  font-size: 0.95rem;
  color: var(--c-text-light);
  line-height: 1.65;
}

/* FOOTER */
.site-footer {
  background: var(--c-bg-dark);
  padding-block: var(--sp-24);
  border-top: 1px solid #333;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-12);
}
.footer-brand {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--c-text-on-dark);
  letter-spacing: -0.01em;
}
.footer-nav {
  display: flex;
  gap: var(--sp-24);
}
.footer-nav a {
  font-size: 0.85rem;
  color: #a8a49e;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--c-text-on-dark); }
.footer-copy {
  font-size: 0.8rem;
  color: #6a6560;
}

/* RESPONSIVE — TABLET */
@media (max-width: 1024px) {
  .container { padding-inline: var(--sp-24); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-split { grid-template-columns: 1fr 1fr; gap: var(--sp-24); }
  .band-light, .band-muted, .band-dark { padding-block: var(--sp-48); }
  .hero-content { padding-block: var(--sp-48); }
}

/* RESPONSIVE — MOBILE */
@media (max-width: 768px) {
  .container { padding-inline: var(--sp-24); }
  .hero-band { min-height: 420px; }
  .hero-text { max-width: 100%; }
  .hero-bg-img { aspect-ratio: 4/3; max-height: 420px; }
  .hero-content { padding-block: var(--sp-48); }
  .text-display { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .intro-split { grid-template-columns: 1fr; }
  .intro-split__visual { order: -1; }
  .card-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .name-row { grid-template-columns: 1fr; gap: 0; }
  .phone-wrap { flex-direction: column; gap: var(--sp-12); }
  .phone-wrap__dial { width: 100%; }
  .form-box { padding: var(--sp-24); }
  .process-step { flex-direction: column; gap: var(--sp-12); }
  .process-num { font-size: 1.8rem; min-width: auto; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: var(--sp-12); }
  .footer-nav { flex-wrap: wrap; gap: var(--sp-12); }
  .photo-band__overlay { padding: var(--sp-24); }
  .band-light, .band-muted, .band-dark { padding-block: var(--sp-48); }
  .trust-strip { margin-top: var(--sp-24); }
  .faq-list { margin-top: var(--sp-24); }
}
/* ===== 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 ===== */
