/* ===================================================
   أفق التكييف — Style Sheet
   Seed: 96baita9 | Convention: semantic-only CSS
   Spacing: 2/4/8/16/24px compact scale
   Typography: condensed display, system fonts
=================================================== */

/* ------ RESET & BASE ------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-deep: #0b2a4a;
  --blue-mid:  #1456a0;
  --blue-light: #e6f0fa;
  --ice:       #f4f8fc;
  --accent:    #0d9ecc;
  --accent-dark: #0a7ea3;
  --text-main: #141414;
  --text-muted:#4a5568;
  --border:    #c8d8e8;
  --white:     #ffffff;
  --danger:    #c0392b;
  --success:   #1a7a45;
  --header-h:  64px;
  --radius:    3px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--white);
  direction: rtl;
}

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

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--blue-deep);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }

p { margin-top: 8px; color: var(--text-muted); }

a { color: var(--blue-mid); text-decoration: none; }
a:hover { text-decoration: underline; }

strong { color: var(--blue-deep); }

ol, ul { list-style: none; }

/* ------ SKIP LINK ------ */
.skip-link {
  position: absolute;
  top: -100px;
  right: 0;
  background: var(--blue-deep);
  color: var(--white);
  padding: 8px 16px;
  font-size: 0.875rem;
  z-index: 9999;
  border-radius: 0 0 var(--radius) var(--radius);
}
.skip-link:focus { top: 0; }

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

/* ------ BUTTONS ------ */
.btn-cta {
  display: inline-block;
  background: var(--blue-mid);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border: 3px solid var(--blue-mid);
  border-radius: var(--radius);
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  text-align: center;
}
.btn-cta:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
  text-decoration: none;
}
.btn-cta--full {
  display: block;
  width: 100%;
}

/* ------ HEADER ------ */
header {
  background: var(--blue-deep);
  min-height: var(--header-h);
  border-bottom: 2px solid var(--accent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}

.wordmark {
  flex-shrink: 0;
  text-align: center;
}

.wordmark .brand-name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  white-space: nowrap;
}

nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 600;
  margin-inline: 8px;
  text-decoration: none;
  white-space: nowrap;
}
nav a:hover { color: var(--white); text-decoration: none; }

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 6px 14px;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  font-weight: 700;
  transition: background 0.18s;
}
.nav-cta:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.nav-right, .nav-left {
  display: flex;
  align-items: center;
  flex: 1;
}
.nav-right { justify-content: flex-end; }
.nav-left  { justify-content: flex-start; }

/* ------ HERO ------ */
#hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #153e6e 100%);
  padding-block: 48px;
}

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

.hero-text {
  order: 1;
}

.hero-label {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

#hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

.hero-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.hero-visual {
  order: 2;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
}

.hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* ------ SECTION HEADER ------ */
.section-header {
  max-width: 640px;
  margin-bottom: 32px;
}
.section-header p { font-size: 1.05rem; margin-top: 8px; }

/* ------ PROBLEM / SOLUTION ------ */
#problem {
  padding-block: 56px;
  background: var(--ice);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.problem-copy h2 { margin-bottom: 16px; }
.problem-copy p { font-size: 1rem; line-height: 1.7; }
.problem-copy p + p { margin-top: 12px; }

.solution-badges { display: flex; flex-direction: column; gap: 16px; }

.badge-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-right: 4px solid var(--accent);
  padding: 16px;
  border-radius: var(--radius);
}

.badge-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.badge-item strong { display: block; font-size: 1rem; margin-bottom: 4px; color: var(--blue-deep); }
.badge-item p { font-size: 0.9rem; margin-top: 0; color: var(--text-muted); line-height: 1.5; }

/* ------ SERVICES ------ */
#services {
  padding-block: 56px;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

article.service-card {
  background: var(--ice);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue-mid);
  padding: 24px 20px;
  border-radius: var(--radius);
}

.service-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.service-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.service-card p { font-size: 0.9rem; margin-top: 0; line-height: 1.55; }

/* ------ MID CTA ------ */
#mid-cta {
  background: var(--blue-deep);
  padding-block: 40px;
}

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

.mid-cta-text h2 { color: var(--white); margin-bottom: 8px; }
.mid-cta-text p  { color: rgba(255,255,255,0.8); margin-top: 0; font-size: 1rem; }

#mid-cta .btn-cta {
  background: var(--accent);
  border-color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
#mid-cta .btn-cta:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

/* ------ HOW IT WORKS ------ */
#how-it-works {
  padding-block: 56px;
  background: var(--ice);
  border-bottom: 1px solid var(--border);
}

.steps-list {
  counter-reset: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin-top: 8px;
}

.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-block: 24px;
  border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }

.step-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  letter-spacing: -0.04em;
}

.step-body h3 { margin-bottom: 6px; font-size: 1.1rem; }
.step-body p  { font-size: 0.95rem; margin-top: 0; line-height: 1.6; }

/* ------ PHOTO BAND ------ */
#photo-band {
  position: relative;
  overflow: hidden;
}

.photo-band-inner { position: relative; }

.band-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  aspect-ratio: 21/9;
  filter: brightness(0.35);
}

.band-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.band-quote {
  max-width: 600px;
  border-right: 4px solid var(--accent);
  padding-right: 24px;
}

.band-quote p {
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.35;
  font-style: normal;
  margin-top: 0;
}

.band-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

/* ------ TESTIMONIALS ------ */
#testimonials {
  padding-block: 56px;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

article.testimonial {
  background: var(--ice);
  border: 1px solid var(--border);
  padding: 24px 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--text-main);
  line-height: 1.65;
  font-style: italic;
  margin-top: 0;
}

.testimonial-author {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong { font-size: 0.95rem; color: var(--blue-deep); }
.testimonial-author span   { font-size: 0.82rem; color: var(--text-muted); }

/* ------ TRUST STRIP ------ */
#trust {
  padding-block: 48px;
  background: var(--blue-deep);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-item strong {
  display: block;
  color: var(--white);
  font-size: 0.97rem;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0;
  line-height: 1.5;
}

/* ------ FAQ ------ */
#faq {
  padding-block: 56px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

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

.faq-intro h2 { margin-bottom: 12px; }
.faq-intro p  { font-size: 1rem; margin-bottom: 24px; }

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

.faq-item {
  border-bottom: 1px solid var(--border);
  padding-block: 20px;
}

.faq-item:last-child { border-bottom: none; }

.faq-item dt {
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-deep);
  margin-bottom: 8px;
  cursor: default;
}

.faq-item dd {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ------ LEAD FORM ZONE ------ */
#lead-form-zone {
  padding-block: 64px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--ice) 100%);
  border-top: 3px solid var(--accent);
}

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

.form-zone-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--blue-deep);
  margin-bottom: 12px;
}

.form-zone-copy p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.form-trust-points span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-deep);
}

/* ------ FORM BOX (injected form wrapper styles) ------ */
.form-box {
  background: var(--white);
  border: 2px solid var(--border);
  border-top: 4px solid var(--blue-mid);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.form-box__title {
  font-size: 1.2rem;
  color: var(--blue-deep);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

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

.field__label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.field__required {
  color: var(--danger);
  margin-inline-start: 2px;
}

.field__input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.97rem;
  font-family: inherit;
  color: var(--text-main);
  background: var(--ice);
  transition: border-color 0.16s;
  direction: rtl;
}

.field__input:focus {
  outline: none;
  border-color: var(--blue-mid);
  background: var(--white);
}

.field__error {
  font-size: 0.82rem;
  color: var(--danger);
  font-weight: 600;
}

/* Name row (two inputs side by side) */
.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Phone wrap */
.phone-wrap {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

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

.phone-wrap__number {
  flex: 1;
}

/* Form messages */
.form-message {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 12px;
  border: 2px solid transparent;
}

.form-message--error {
  background: #fdf0ef;
  color: var(--danger);
  border-color: #e8a49f;
}

.form-message--success {
  background: #edfaf3;
  color: var(--success);
  border-color: #9fd6bb;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 32px 16px;
}

.form-success__title {
  font-size: 1.3rem;
  color: var(--success);
  margin-bottom: 8px;
  font-weight: 800;
}

.form-success__msg {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-top: 0;
}

/* ------ FOOTER ------ */
footer {
  background: var(--blue-deep);
  border-top: 2px solid var(--accent);
  padding-block: 32px;
}

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

.footer-brand .brand-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}
.footer-links a:hover { color: var(--white); }

.footer-copy p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0;
}

/* ====================================================
   RESPONSIVE
==================================================== */

/* Tablet ≤1024px */
@media (max-width: 1024px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-intro .btn-cta { display: inline-block; }
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile ≤768px */
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }

  .header-inner { padding-block: 12px; }
  nav a { margin-inline: 4px; font-size: 0.82rem; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-visual { order: -1; }
  .hero-img { aspect-ratio: 16/9; max-height: 260px; }

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

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

  .mid-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

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

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

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

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }

  .band-img { aspect-ratio: 16/9; max-height: 300px; }

  .band-quote p { font-size: 1.1rem; }

  .form-trust-points { flex-direction: column; gap: 8px; }

  nav.nav-right, nav.nav-left { flex: unset; }
  .header-inner { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .wordmark { order: -1; flex-basis: 100%; }
  nav.nav-right { order: 1; }
  nav.nav-left  { order: 2; }
}
/* ===== 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 ===== */
