/* ===== بيت مشرق — style.css | seed: vxq23e4o ===== */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
  background: #faf9f7;
  direction: rtl;
  text-align: right;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --bm-ink: #1a1a1a;
  --bm-ink-light: #4a4a4a;
  --bm-paper: #faf9f7;
  --bm-paper-alt: #f2efe9;
  --bm-accent: #2c5f2e;
  --bm-accent-light: #3d7a40;
  --bm-accent-pale: #e8f0e8;
  --bm-gold: #b5860d;
  --bm-border: #d4cfc8;
  --bm-white: #ffffff;
  --bm-header-h: 64px;
  --bm-radius: 3px;
  --bm-max: 1160px;
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -100px;
  right: 8px;
  background: var(--bm-accent);
  color: var(--bm-white);
  padding: 8px 16px;
  border-radius: var(--bm-radius);
  font-size: 0.9rem;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* ─── CONTAINER ─── */
.container {
  max-width: var(--bm-max);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─── BUTTONS ─── */
.btn-cta {
  display: inline-block;
  background: var(--bm-accent);
  color: var(--bm-white);
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 1.05rem;
  font-weight: bold;
  border: 2px solid var(--bm-accent);
  border-radius: var(--bm-radius);
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.01em;
  text-align: center;
}
.btn-cta:hover, .btn-cta:focus {
  background: var(--bm-accent-light);
  border-color: var(--bm-accent-light);
  outline: 2px solid var(--bm-accent-light);
  outline-offset: 2px;
}
.btn-cta--full { display: block; width: 100%; text-align: center; }

/* ─── HEADER ─── */
.bm-header {
  background: var(--bm-paper);
  border-bottom: 1px solid var(--bm-border);
  min-height: var(--bm-header-h);
  position: relative;
  z-index: 100;
}
.bm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--bm-header-h);
  gap: 16px;
}
.bm-header__brand {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 1.45rem;
  font-weight: bold;
  color: var(--bm-accent);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.bm-nav { display: flex; align-items: center; gap: 8px; }
.bm-nav__list { display: flex; align-items: center; gap: 4px; }
.bm-nav__link {
  font-size: 0.92rem;
  color: var(--bm-ink-light);
  padding: 6px 12px;
  border-radius: var(--bm-radius);
  transition: color 0.15s, background 0.15s;
}
.bm-nav__link:hover { color: var(--bm-accent); background: var(--bm-accent-pale); }
.bm-nav__link--cta {
  color: var(--bm-accent);
  font-weight: bold;
  border: 1px solid var(--bm-accent);
}
.bm-nav__link--cta:hover { background: var(--bm-accent); color: var(--bm-white); }
.bm-nav__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.bm-nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bm-ink);
  border-radius: 2px;
}

/* ─── MOBILE DRAWER ─── */
.bm-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 270px;
  height: 100vh;
  background: var(--bm-paper);
  border-left: 1px solid var(--bm-border);
  z-index: 500;
  transition: right 0.28s cubic-bezier(.4,0,.2,1);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bm-drawer--open { right: 0; }
.bm-drawer__close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--bm-ink-light);
  padding: 4px 8px;
}
.bm-drawer__list { display: flex; flex-direction: column; gap: 4px; }
.bm-drawer__link {
  display: block;
  padding: 10px 12px;
  font-size: 1rem;
  color: var(--bm-ink);
  border-radius: var(--bm-radius);
  transition: background 0.15s;
}
.bm-drawer__link:hover { background: var(--bm-accent-pale); color: var(--bm-accent); }
.bm-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 400;
}
.bm-drawer-overlay--show { display: block; }

/* ─── SECTION HEADER (shared) ─── */
.bm-section-header { margin-bottom: 32px; }
.bm-section-title {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--bm-ink);
  margin-bottom: 8px;
  line-height: 1.35;
}
.bm-section-sub {
  font-size: 1rem;
  color: var(--bm-ink-light);
}

/* ─── HERO ─── */
.bm-hero {
  background: var(--bm-paper-alt);
  padding-block: 48px 56px;
  border-bottom: 1px solid var(--bm-border);
}
.bm-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.bm-hero__tag {
  display: inline-block;
  background: var(--bm-accent-pale);
  color: var(--bm-accent);
  font-size: 0.82rem;
  font-weight: bold;
  border: 1px solid var(--bm-accent);
  border-radius: var(--bm-radius);
  padding: 2px 10px;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.bm-hero__title {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.25;
  color: var(--bm-ink);
  margin-bottom: 16px;
}
.bm-hero__sub {
  font-size: 1.08rem;
  color: var(--bm-ink-light);
  margin-bottom: 24px;
  max-width: 48ch;
}
.bm-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 20px;
}
.bm-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--bm-accent);
  font-weight: bold;
}
.bm-hero__visual {
  position: relative;
  border-radius: var(--bm-radius);
  overflow: hidden;
}
.bm-hero__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  max-height: 460px;
  border-radius: var(--bm-radius);
}

/* ─── PROBLEM / SOLUTION ─── */
.bm-problem {
  background: var(--bm-white);
  padding-block: 48px;
  border-bottom: 1px solid var(--bm-border);
}
.bm-problem__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: center;
}
.bm-problem__title {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--bm-ink);
  margin-bottom: 12px;
  line-height: 1.35;
}
.bm-problem__body {
  font-size: 1rem;
  color: var(--bm-ink-light);
  line-height: 1.75;
}
.bm-problem__solution {
  background: var(--bm-accent-pale);
  border: 1px solid var(--bm-accent);
  border-radius: var(--bm-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bm-problem__solution-icon { color: var(--bm-accent); }
.bm-problem__solution-text {
  font-size: 0.97rem;
  color: var(--bm-ink);
  line-height: 1.65;
}

/* ─── SERVICES ─── */
.bm-services {
  background: var(--bm-paper-alt);
  padding-block: 56px;
  border-bottom: 1px solid var(--bm-border);
}
.bm-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.bm-service-card {
  background: var(--bm-white);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.15s;
}
.bm-service-card:hover { border-color: var(--bm-accent); }
.bm-service-card__icon { color: var(--bm-accent); }
.bm-service-card__title {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 1.05rem;
  color: var(--bm-ink);
  font-weight: bold;
}
.bm-service-card__body { font-size: 0.92rem; color: var(--bm-ink-light); line-height: 1.65; }
.bm-services__cta { text-align: center; }

/* ─── PHOTO BAND ─── */
.bm-photo-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--bm-border);
  border-bottom: 1px solid var(--bm-border);
}
.bm-photo-band__img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.bm-photo-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(44,95,46,0.75) 0%, rgba(0,0,0,0.45) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.bm-photo-band__quote {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.85rem);
  color: var(--bm-white);
  text-align: center;
  max-width: 680px;
  line-height: 1.5;
}

/* ─── PROCESS ─── */
.bm-process {
  background: var(--bm-white);
  padding-block: 56px;
  border-bottom: 1px solid var(--bm-border);
}
.bm-process__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  counter-reset: none;
}
.bm-process__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bm-paper-alt);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  padding: 24px 20px;
}
.bm-process__step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--bm-accent);
  color: var(--bm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: bold;
}
.bm-process__step-title {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 1.02rem;
  color: var(--bm-ink);
  margin-bottom: 4px;
}
.bm-process__step-text { font-size: 0.92rem; color: var(--bm-ink-light); line-height: 1.65; }

/* ─── TRUST ─── */
.bm-trust {
  background: var(--bm-accent);
  padding-block: 56px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.bm-trust__title {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--bm-white);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.35;
}
.bm-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bm-trust__item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--bm-radius);
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bm-trust__item-icon { color: rgba(255,255,255,0.85); margin-bottom: 4px; }
.bm-trust__item-title {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 1rem;
  color: var(--bm-white);
  font-weight: bold;
}
.bm-trust__item-text { font-size: 0.88rem; color: rgba(255,255,255,0.82); line-height: 1.65; }

/* ─── TECH / TABLET SECTION ─── */
.bm-tech {
  background: var(--bm-paper-alt);
  padding-block: 56px;
  border-bottom: 1px solid var(--bm-border);
}
.bm-tech__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: center;
}
.bm-tech__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  max-height: 360px;
  border-radius: var(--bm-radius);
  border: 1px solid var(--bm-border);
}
.bm-tech__title {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  color: var(--bm-ink);
  margin-bottom: 16px;
  line-height: 1.35;
}
.bm-tech__body { font-size: 1rem; color: var(--bm-ink-light); margin-bottom: 16px; line-height: 1.75; }
.bm-tech__list { display: flex; flex-direction: column; gap: 8px; }
.bm-tech__list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--bm-accent);
  font-weight: bold;
}

/* ─── TESTIMONIALS ─── */
.bm-testimonials {
  background: var(--bm-white);
  padding-block: 56px;
  border-bottom: 1px solid var(--bm-border);
}
.bm-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bm-testimonial {
  background: var(--bm-paper-alt);
  border: 1px solid var(--bm-border);
  border-right: 4px solid var(--bm-accent);
  border-radius: var(--bm-radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.bm-testimonial__text {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 0.97rem;
  color: var(--bm-ink);
  line-height: 1.75;
  font-style: italic;
}
.bm-testimonial__footer { display: flex; gap: 8px; align-items: baseline; }
.bm-testimonial__name { font-weight: bold; font-size: 0.9rem; color: var(--bm-ink); }
.bm-testimonial__loc { font-size: 0.82rem; color: var(--bm-ink-light); }

/* ─── FAQ ─── */
.bm-faq {
  background: var(--bm-paper-alt);
  padding-block: 56px;
  border-bottom: 1px solid var(--bm-border);
}
.bm-faq__list { display: flex; flex-direction: column; gap: 2px; }
.bm-faq__item {
  background: var(--bm-white);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  overflow: hidden;
}
.bm-faq__q {
  display: block;
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 1rem;
  color: var(--bm-ink);
  font-weight: bold;
  padding: 16px 20px;
  border-bottom: 1px solid var(--bm-border);
  background: var(--bm-paper-alt);
}
.bm-faq__a {
  font-size: 0.95rem;
  color: var(--bm-ink-light);
  padding: 16px 20px;
  line-height: 1.7;
}

/* ─── LEAD FORM SECTION ─── */
.bm-form-section {
  background: var(--bm-white);
  padding-block: 64px;
}
.form-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 960px;
  margin-inline: auto;
}
.bm-form-intro__title {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--bm-ink);
  margin-bottom: 12px;
  line-height: 1.35;
}
.bm-form-intro__sub { font-size: 1rem; color: var(--bm-ink-light); margin-bottom: 20px; line-height: 1.65; }
.bm-form-intro__perks { display: flex; flex-direction: column; gap: 8px; }
.bm-form-intro__perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--bm-accent);
  font-weight: bold;
}
.form-box {
  background: var(--bm-paper-alt);
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  padding: 32px 28px;
}
.form-box__title {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 1.2rem;
  color: var(--bm-ink);
  margin-bottom: 16px;
  font-weight: bold;
}
.form-box__privacy {
  font-size: 0.8rem;
  color: var(--bm-ink-light);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

/* ─── FORM FIELDS ─── */
.field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.field__label {
  font-size: 0.88rem;
  font-weight: bold;
  color: var(--bm-ink);
}
.field__required { color: #c0392b; margin-inline-start: 2px; }
.field__input {
  width: 100%;
  padding: 10px 12px;
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 0.97rem;
  color: var(--bm-ink);
  background: var(--bm-white);
  border: 1.5px solid var(--bm-border);
  border-radius: var(--bm-radius);
  transition: border-color 0.15s;
  outline: none;
}
.field__input:focus { border-color: var(--bm-accent); box-shadow: 0 0 0 2px var(--bm-accent-pale); }
.field__error { font-size: 0.8rem; color: #c0392b; }
.name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.phone-wrap { display: flex; gap: 8px; }
.phone-wrap__dial {
  width: 80px;
  flex-shrink: 0;
  padding: 10px 8px;
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 0.97rem;
  background: var(--bm-white);
  border: 1.5px solid var(--bm-border);
  border-radius: var(--bm-radius);
  color: var(--bm-ink);
}
.phone-wrap__number { flex: 1; }

/* ─── FORM MESSAGES ─── */
.form-message { padding: 12px 16px; border-radius: var(--bm-radius); font-size: 0.95rem; margin-bottom: 12px; }
.form-message--error { background: #fdf2f2; border: 1px solid #e74c3c; color: #922b21; }
.form-message--success { background: #eafbea; border: 1px solid var(--bm-accent); color: var(--bm-accent); }
.form-success { text-align: center; padding: 32px 16px; }
.form-success__title {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 1.3rem;
  color: var(--bm-accent);
  margin-bottom: 8px;
}
.form-success__msg { font-size: 0.97rem; color: var(--bm-ink-light); }

/* ─── FOOTER ─── */
.bm-footer {
  background: var(--bm-ink);
  padding-block: 24px;
}
.bm-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  text-align: center;
}
.bm-footer__brand {
  font-family: Georgia, Palatino, 'Times New Roman', serif;
  font-size: 1.1rem;
  color: var(--bm-white);
  font-weight: bold;
}
.bm-footer__tagline { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.bm-footer__nav { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.bm-footer__link { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.bm-footer__link:hover { color: var(--bm-white); }
.bm-footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); width: 100%; text-align: center; margin-top: 4px; }

/* ─── TABLET ≤1024px ─── */
@media (max-width: 1024px) {
  .bm-services__grid { grid-template-columns: repeat(2, 1fr); }
  .bm-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .bm-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .bm-tech__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bm-problem__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ─── MOBILE ≤768px ─── */
@media (max-width: 768px) {
  .bm-nav__list { display: none; }
  .bm-nav__burger { display: flex; }
  .bm-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bm-hero__visual { order: -1; }
  .bm-hero__title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .bm-hero__img { max-height: 260px; }
  .bm-problem__inner { grid-template-columns: 1fr; gap: 24px; }
  .bm-services__grid { grid-template-columns: 1fr; }
  .bm-process__steps { grid-template-columns: 1fr; gap: 16px; }
  .bm-trust__grid { grid-template-columns: 1fr; gap: 12px; }
  .bm-tech__inner { grid-template-columns: 1fr; gap: 24px; }
  .bm-tech__img { max-height: 240px; }
  .bm-testimonials__grid { grid-template-columns: 1fr; }
  .form-zone { grid-template-columns: 1fr; gap: 32px; }
  .name-row { grid-template-columns: 1fr; }
  .bm-photo-band__img { max-height: 220px; }
  .bm-section-title { font-size: clamp(1.2rem, 4.5vw, 1.6rem); }
}
/* ===== 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;
  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 ===== */
