/* ===========================
   بريق الدار — Style Sheet
   seed: lmelt4z6
   =========================== */

/* === CUSTOM PROPERTIES === */
:root {
  --clr-bg: #f8f7f4;
  --clr-surface: #ffffff;
  --clr-primary: #1a2744;
  --clr-accent: #c8975a;
  --clr-accent-dark: #a87a42;
  --clr-text: #1e1e1e;
  --clr-text-muted: #555550;
  --clr-border: #e0ddd8;
  --clr-footer-bg: #111827;
  --clr-footer-text: #d1cfc9;
  --clr-error: #c0392b;
  --clr-success: #1a6b3c;
  --header-h: 64px;
  --radius: 4px;
  --transition: 0.2s ease;
  font-size: 16px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  font-weight: 500;
  line-height: 1.65;
  direction: rtl;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100px;
  right: 16px;
  background: var(--clr-primary);
  color: #fff;
  padding: 8px 16px;
  font-size: 0.875rem;
  border-radius: var(--radius);
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 8px; }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* === HEADER === */
header {
  position: relative;
  z-index: 100;
  background: transparent;
  min-height: var(--header-h);
}
header .container { height: var(--header-h); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.brand-wordmark {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand-icon { color: var(--clr-accent); font-size: 1rem; }
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-primary);
  transition: color var(--transition);
  white-space: nowrap;
}
header nav a:hover { color: var(--clr-accent); }
header nav .nav-cta {
  color: var(--clr-accent);
  font-weight: 700;
  border-bottom: 1px solid var(--clr-accent);
  padding-bottom: 2px;
}

/* === HERO === */
#hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h));
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.88) 0%, rgba(26,39,68,0.6) 60%, rgba(200,151,90,0.15) 100%);
}
#hero .container {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 64px;
}
.hero-content {
  max-width: 640px;
}
.hero-badge {
  display: inline-block;
  background: rgba(200,151,90,0.18);
  border: 1px solid var(--clr-accent);
  color: var(--clr-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
#hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}
#hero h1 .accent { color: var(--clr-accent); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
  max-width: 520px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-accent);
  border-bottom: 2px solid var(--clr-accent);
  padding-bottom: 4px;
  margin-bottom: 24px;
  transition: color var(--transition), border-color var(--transition);
}
.hero-cta:hover { color: #fff; border-color: #fff; }
.hero-trust-chips {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust-chips li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust-chips li span { color: var(--clr-accent); font-weight: 700; }

/* === PROBLEM / SOLUTION === */
#problem-solution { padding-block: 72px; }
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
#problem-solution h2 {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-primary);
  margin-bottom: 24px;
}
.ps-problem ul { display: flex; flex-direction: column; gap: 16px; }
.ps-problem li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ps-problem .icon {
  font-size: 1rem;
  color: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.ps-problem strong { display: block; font-weight: 700; margin-bottom: 2px; color: var(--clr-primary); }
.ps-problem p { font-size: 0.92rem; color: var(--clr-text-muted); }
.solution-card {
  background: var(--clr-primary);
  color: #fff;
  padding: 32px;
  border-radius: var(--radius);
}
.solution-top {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-accent);
  margin-bottom: 16px;
  font-weight: 700;
}
.solution-card p { font-size: 0.97rem; line-height: 1.7; margin-bottom: 24px; color: rgba(255,255,255,0.88); }
.solution-card .btn-cta { color: var(--clr-accent); border-bottom-color: var(--clr-accent); }
.solution-card .btn-cta:hover { color: #fff; border-bottom-color: #fff; }

/* === SERVICES === */
#services { padding-block: 72px; background: var(--clr-surface); }
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-primary);
  margin-bottom: 8px;
}
.section-header p { color: var(--clr-text-muted); font-size: 1rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
article.service-card {
  background: var(--clr-bg);
  padding: 24px;
  border: 1px solid var(--clr-border);
  transition: background var(--transition), box-shadow var(--transition);
}
article.service-card:hover {
  background: var(--clr-surface);
  box-shadow: 0 4px 16px rgba(26,39,68,0.08);
}
.service-icon { font-size: 1.6rem; margin-bottom: 8px; }
article.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 8px;
}
article.service-card p { font-size: 0.88rem; color: var(--clr-text-muted); line-height: 1.6; }

/* === PHOTO BAND === */
#photo-band { position: relative; overflow: hidden; min-height: 320px; }
.photo-band-inner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#photo-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 420px;
}
.photo-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,39,68,0.72);
}
.photo-band-caption {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px;
  max-width: 700px;
}
.photo-band-caption p {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.5;
}
.btn-cta--light {
  color: var(--clr-accent);
  border-bottom: 2px solid var(--clr-accent);
  padding-bottom: 4px;
  font-weight: 700;
  font-size: 1rem;
  transition: color var(--transition), border-color var(--transition);
}
.btn-cta--light:hover { color: #fff; border-bottom-color: #fff; }

/* === HOW IT WORKS === */
#how-it-works { padding-block: 72px; }
.hiw-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}
.hiw-intro h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-primary);
  margin-bottom: 16px;
}
.hiw-intro p { color: var(--clr-text-muted); margin-bottom: 24px; }
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: steps;
}
.hiw-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-block: 24px;
  border-bottom: 1px solid var(--clr-border);
}
.hiw-steps li:last-child { border-bottom: none; }
.step-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-accent);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 4px;
}
.step-body p { font-size: 0.9rem; color: var(--clr-text-muted); }

/* === TESTIMONIALS === */
#testimonials { padding-block: 72px; background: var(--clr-primary); }
#testimonials h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
blockquote {
  background: rgba(255,255,255,0.06);
  border-right: 3px solid var(--clr-accent);
  padding: 24px;
}
blockquote p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
blockquote footer {
  font-size: 0.82rem;
  color: var(--clr-accent);
  font-weight: 700;
  font-style: normal;
}

/* === TRUST STRIP === */
#trust { padding-block: 64px; background: var(--clr-surface); border-top: 1px solid var(--clr-border); }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.trust-item {
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--clr-border);
  background: var(--clr-bg);
}
.trust-icon { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.trust-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 8px;
}
.trust-item p { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.5; }

/* === FAQ === */
#faq { padding-block: 72px; }
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.faq-intro h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-primary);
  margin-bottom: 16px;
}
.faq-intro p { color: var(--clr-text-muted); font-size: 0.95rem; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
details {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
}
details[open] { border-color: var(--clr-accent); }
summary {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--clr-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  color: var(--clr-accent);
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
}
details[open] summary::after { content: "−"; }
details p {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* === LEAD FORM ZONE === */
#lead-form-zone {
  padding-block: 80px;
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
}
.form-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-zone-intro h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-primary);
  margin-bottom: 16px;
}
.form-zone-intro > p { color: var(--clr-text-muted); margin-bottom: 24px; font-size: 1rem; }
.form-reassurance {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-reassurance li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}
.form-reassurance li span { color: var(--clr-accent); font-weight: 700; }
.form-box {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  padding: 32px;
  border-radius: var(--radius);
}
.form-box__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--clr-border);
}
.form-box__privacy {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

/* === FORM FIELDS (injected) === */
.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.field__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-primary);
}
.field__required { color: var(--clr-accent); margin-inline-start: 2px; }
.field__input {
  width: 100%;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--clr-bg);
  color: var(--clr-text);
  transition: border-color var(--transition);
  direction: rtl;
}
.field__input:focus {
  outline: none;
  border-color: var(--clr-primary);
  background: var(--clr-surface);
}
.field__error {
  font-size: 0.78rem;
  color: var(--clr-error);
  margin-top: 2px;
}
.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.phone-wrap {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.phone-wrap__dial {
  width: 80px;
  flex-shrink: 0;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 10px 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--clr-bg);
  color: var(--clr-text);
  direction: ltr;
  text-align: center;
}
.phone-wrap__number {
  flex: 1;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--clr-bg);
  color: var(--clr-text);
  direction: ltr;
}
.phone-wrap__number:focus, .phone-wrap__dial:focus {
  outline: none;
  border-color: var(--clr-primary);
  background: var(--clr-surface);
}

/* === BUTTONS === */
.btn-cta {
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--clr-accent);
  background: none;
  border: none;
  border-bottom: 2px solid var(--clr-accent);
  padding: 0 0 4px 0;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-cta:hover { color: var(--clr-primary); border-bottom-color: var(--clr-primary); }
.btn-cta--full {
  width: 100%;
  justify-content: center;
  padding: 12px 0 10px;
  font-size: 1rem;
  border-bottom-width: 2px;
  margin-top: 8px;
}

/* === FORM MESSAGES === */
.form-message {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.form-message--error {
  background: #fdf0ef;
  border: 1px solid var(--clr-error);
  color: var(--clr-error);
}
.form-message--success {
  background: #eaf7ef;
  border: 1px solid var(--clr-success);
  color: var(--clr-success);
}
.form-success {
  text-align: center;
  padding: 32px 16px;
}
.form-success__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 8px;
}
.form-success__msg { font-size: 0.95rem; color: var(--clr-text-muted); }

/* === FOOTER === */
footer {
  background: var(--clr-footer-bg);
  color: var(--clr-footer-text);
  padding-top: 56px;
  padding-bottom: 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-wordmark {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-wordmark span { color: var(--clr-accent); }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; color: var(--clr-footer-text); }
.footer-links strong, .footer-contact strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-accent);
  margin-bottom: 16px;
  font-weight: 700;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  font-size: 0.88rem;
  color: var(--clr-footer-text);
  transition: color var(--transition);
}
footer nav a:hover { color: #fff; }
.footer-contact p { font-size: 0.88rem; color: var(--clr-footer-text); margin-bottom: 4px; }
.footer-cta-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-accent);
  border-bottom: 1px solid var(--clr-accent);
  padding-bottom: 2px;
  transition: color var(--transition);
}
.footer-cta-link:hover { color: #fff; border-bottom-color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* === TABLET (≤1024px) === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hiw-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .ps-grid { gap: 32px; }
}

/* === MOBILE (≤768px) === */
@media (max-width: 768px) {
  :root { font-size: 15px; }
  header nav a:not(.nav-cta) { display: none; }
  .header-inner { justify-content: space-between; }
  #hero { min-height: 75vh; }
  #hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero-sub { font-size: 1rem; }
  .hero-trust-chips { gap: 8px; }
  .ps-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-zone { grid-template-columns: 1fr; gap: 32px; }
  .name-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .photo-band-caption p { font-size: 1.05rem; }
  #problem-solution { padding-block: 48px; }
  #services { padding-block: 48px; }
  #how-it-works { padding-block: 48px; }
  #testimonials { padding-block: 48px; }
  #trust { padding-block: 40px; }
  #faq { padding-block: 48px; }
  #lead-form-zone { padding-block: 56px; }
  .hiw-layout { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .solution-card { padding: 24px; }
  .form-box { padding: 24px; }
}
/* ===== 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 ===== */
