/* ============================================================
   نقاء الإمارات — style.css  |  seed: bnj7pkae
   Convention: utility-first class names
   ============================================================ */

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

:root {
  /* Palette */
  --clr-bg:       #ffffff;
  --clr-muted:    #f4f4f2;
  --clr-dark:     #14201a;
  --clr-dark-2:   #1e2e26;
  --clr-accent:   #2a7d5a;
  --clr-accent-h: #1f6348;
  --clr-text:     #1a1a1a;
  --clr-text-sub: #4a4a4a;
  --clr-text-inv: #f0f0ec;
  --clr-border:   #ddddd9;
  --clr-tag:      #2a7d5a;
  --clr-step-num: #2a7d5a;
  /* Spacing scale (fluid) */
  --sp-1: clamp(0.25rem, 0.5vw,  0.5rem);
  --sp-2: clamp(0.5rem,  1vw,    0.75rem);
  --sp-3: clamp(0.75rem, 1.5vw,  1rem);
  --sp-4: clamp(1rem,    2vw,    1.5rem);
  --sp-5: clamp(1.5rem,  3vw,    2.5rem);
  --sp-6: clamp(2rem,    4vw,    4rem);
  --sp-7: clamp(3rem,    6vw,    6rem);
  /* Typography */
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Arial, sans-serif;
  --fw-normal: 500;
  --fw-bold:   700;
  /* Header height */
  --header-h: 64px;
}

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

body {
  font-family: var(--font-body);
  font-weight: var(--fw-normal);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100px;
  right: 0;
  background: var(--clr-accent);
  color: #fff;
  padding: var(--sp-2) var(--sp-4);
  text-decoration: none;
  z-index: 9999;
  font-weight: var(--fw-bold);
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── CONTAINER ── */
.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  width: 100%;
}

/* ── TYPOGRAPHY HELPERS ── */
.text-xl {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: var(--fw-bold);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.body-text {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--clr-text-sub);
  line-height: 1.75;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-tag);
  margin-bottom: var(--sp-2);
}
.section-tag--light { color: #7ecfac; }

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-5);
}
.section-title--light { color: var(--clr-text-inv); }

.section-header-center { text-align: center; }
.section-header-center--light .text-xl { color: var(--clr-text-inv); }

/* ── BAND BACKGROUNDS ── */
.bg-muted  { background: var(--clr-muted); }
.bg-white  { background: var(--clr-bg); }
.bg-dark   { background: var(--clr-dark); }

.section-band {
  padding-block: var(--sp-7);
}

/* ── BUTTONS ── */
.btn-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: var(--fw-bold);
  color: var(--clr-accent);
  text-decoration: underline;
  text-decoration-color: var(--clr-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s, text-decoration-color 0.2s;
  letter-spacing: 0.02em;
}
.btn-cta:hover, .btn-cta:focus {
  color: var(--clr-accent-h);
  text-decoration-color: var(--clr-accent-h);
  outline: none;
}
.btn-cta:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 4px;
  border-radius: 2px;
}
.btn-cta--light {
  color: #7ecfac;
  text-decoration-color: #7ecfac;
}
.btn-cta--light:hover, .btn-cta--light:focus {
  color: #ffffff;
  text-decoration-color: #ffffff;
}
.btn-cta--full {
  display: block;
  width: 100%;
  text-align: center;
  padding: var(--sp-3) var(--sp-4);
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
/* Pure-CSS scroll detection via :has — fallback solid for browsers without :has */
@supports selector(:has(*)) {
  body:not(:has(.section-hero:is(:hover))) .site-header {
    /* sticky scroll effect handled by scrolled class below */
  }
}
/* Fallback: always show semi-opaque for safety */
.site-header {
  background: rgba(20,32,26,0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

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

.wordmark {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
  color: #ffffff;
}
.wordmark__icon {
  font-size: 1.2rem;
  color: #7ecfac;
}
.wordmark__text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}

.main-nav { display: flex; }
.nav-list {
  display: flex;
  list-style: none;
  gap: var(--sp-4);
  align-items: center;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: var(--fw-normal);
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-link:hover { color: #ffffff; }
.nav-link--cta {
  color: #7ecfac;
  font-weight: var(--fw-bold);
  border-bottom: 1px solid #7ecfac;
  padding-bottom: 1px;
}
.nav-link--cta:hover { color: #ffffff; border-color: #ffffff; }

/* ── HERO ── */
.section-hero {
  position: relative;
  min-height: clamp(520px, 80vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,24,19,0.85) 0%, rgba(14,24,19,0.6) 60%, rgba(14,24,19,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-7);
}

.hero-text-col {
  max-width: 620px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7ecfac;
  margin-bottom: var(--sp-3);
}

.hero-headline {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: var(--sp-4);
  letter-spacing: 0.01em;
}

.hero-subhead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
  max-width: 520px;
}

.hero-trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-4);
  margin-top: var(--sp-4);
}
.hero-trust-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.hero-trust-list li span {
  color: #7ecfac;
  font-weight: var(--fw-bold);
}

/* ── PROBLEM / SOLUTION ── */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: start;
}
.ps-col--problem {
  border-right: 3px solid var(--clr-border);
  padding-right: var(--sp-5);
}
.ps-col--solution {
  padding-left: var(--sp-5);
}
.ps-col .text-xl {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}
.ps-col .body-text { margin-top: var(--sp-3); }

/* ── BENEFITS ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.benefit-card {
  background: var(--clr-muted);
  border-radius: 8px;
  padding: var(--sp-5);
  border: 1px solid var(--clr-border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
  border-color: var(--clr-accent);
  box-shadow: 0 4px 24px rgba(42,125,90,0.08);
}
.benefit-icon {
  font-size: 1.8rem;
  margin-bottom: var(--sp-3);
  display: block;
  line-height: 1;
}
.benefit-title {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
}
.benefit-desc {
  font-size: 0.9rem;
  color: var(--clr-text-sub);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.step-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--clr-step-num);
  color: #7ecfac;
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-3);
}
.step-title {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--clr-text-inv);
  margin-bottom: var(--sp-2);
}
.step-desc {
  font-size: 0.88rem;
  color: rgba(240,240,236,0.7);
  line-height: 1.65;
}
.step-arrow {
  font-size: 1.6rem;
  color: #7ecfac;
  opacity: 0.5;
  margin-top: 10px;
  flex-shrink: 0;
}
.hiw-cta-wrap {
  text-align: center;
  margin-top: var(--sp-6);
}

/* ── PHOTO BAND ── */
.section-photo-band {
  position: relative;
  overflow: hidden;
  max-height: 420px;
  display: flex;
  align-items: center;
}
.photo-band-inner {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.photo-band-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  aspect-ratio: 16/9;
}
.photo-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(14,24,19,0.75) 0%, rgba(14,24,19,0.45) 60%, transparent 100%);
}
.photo-band-caption {
  position: absolute;
  left: clamp(1rem, 5vw, 4rem);
  right: auto;
  text-align: left;
  max-width: 480px;
}
.photo-caption-text {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: var(--fw-bold);
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: var(--sp-2);
}
.photo-caption-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.testimonial-card {
  background: var(--clr-bg);
  border-radius: 8px;
  padding: var(--sp-5);
  border: 1px solid var(--clr-border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-4);
  font-size: 3rem;
  color: var(--clr-accent);
  opacity: 0.15;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--clr-text-sub);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
  font-style: italic;
}
.testimonial-author {
  font-size: 0.85rem;
  color: var(--clr-text);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-3);
}
.testimonial-author strong { color: var(--clr-accent); }

/* ── TRUST STRIP ── */
.trust-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.trust-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: var(--sp-3);
}
.trust-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--sp-2);
}
.trust-label {
  font-size: 0.88rem;
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  line-height: 1.4;
}

/* ── CONTENT IMAGE SECTION ── */
.content-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}
.content-section-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.content-text-col .text-xl {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}
.content-text-col .body-text { margin-bottom: var(--sp-4); }

.content-check-list {
  list-style: none;
  margin-bottom: var(--sp-5);
}
.content-check-list li {
  font-size: 0.95rem;
  color: var(--clr-text-sub);
  padding-block: var(--sp-2);
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.content-check-list li span { color: var(--clr-accent); font-weight: var(--fw-bold); }
.content-check-list li:last-child { border-bottom: none; }

/* ── FAQ ── */
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.faq-item {
  background: var(--clr-muted);
  border-radius: 8px;
  border: 1px solid var(--clr-border);
  overflow: hidden;
}
.faq-question {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  padding: var(--sp-4) var(--sp-5);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--clr-accent);
  font-weight: 300;
  flex-shrink: 0;
  margin-right: var(--sp-3);
  transition: transform 0.2s;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-item[open] .faq-question { background: var(--clr-bg); }
.faq-answer {
  padding: var(--sp-3) var(--sp-5) var(--sp-4);
  border-top: 1px solid var(--clr-border);
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--clr-text-sub);
  line-height: 1.7;
}

/* ── FORM ZONE ── */
.form-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: start;
}
.form-intro { padding-top: var(--sp-3); }
.form-intro .text-xl {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-inv);
  margin-bottom: var(--sp-3);
}
.form-intro-sub {
  font-size: 0.95rem;
  color: rgba(240,240,236,0.75);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}
.form-reassure-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-reassure-list li {
  font-size: 0.88rem;
  color: rgba(240,240,236,0.7);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.form-reassure-list li span { color: #7ecfac; font-weight: var(--fw-bold); }

.form-box {
  background: var(--clr-bg);
  border-radius: 12px;
  padding: var(--sp-5);
  box-shadow: 0 8px 48px rgba(0,0,0,0.25);
}
.form-box__title {
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--clr-border);
}
.form-box__privacy {
  font-size: 0.78rem;
  color: var(--clr-text-sub);
  margin-top: var(--sp-3);
  text-align: center;
  line-height: 1.5;
}

/* ── INJECTED FORM FIELDS ── */
.field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-bottom: var(--sp-4);
}
.field__label {
  font-size: 0.85rem;
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  letter-spacing: 0.02em;
}
.field__required { color: var(--clr-accent); margin-right: 2px; }
.field__input {
  width: 100%;
  padding: var(--sp-3) var(--sp-3);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  direction: rtl;
  text-align: right;
}
.field__input:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(42,125,90,0.12);
}
.field__error {
  font-size: 0.8rem;
  color: #c0392b;
  display: none;
}
.field__input[aria-invalid="true"] { border-color: #c0392b; }
.field__input[aria-invalid="true"] + .field__error { display: block; }

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.phone-wrap {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
}
.phone-wrap__dial {
  width: 90px;
  flex-shrink: 0;
}
.phone-wrap__number { flex: 1; }

.btn-cta--full {
  width: 100%;
  display: block;
  text-align: center;
  padding: var(--sp-3) var(--sp-4);
  font-size: 1rem;
}

.form-message {
  padding: var(--sp-3) var(--sp-4);
  border-radius: 6px;
  font-size: 0.9rem;
  margin-top: var(--sp-3);
  display: none;
}
.form-message--error {
  background: #fdf0ef;
  color: #c0392b;
  border: 1px solid #f5c6c2;
  display: block;
}
.form-message--success {
  background: #eaf6f1;
  color: #1d6b45;
  border: 1px solid #b7e4cf;
  display: block;
}

.form-success {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
}
.form-success__title {
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  color: var(--clr-accent);
  margin-bottom: var(--sp-3);
}
.form-success__msg {
  font-size: 0.95rem;
  color: var(--clr-text-sub);
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--clr-dark);
  color: var(--clr-text-inv);
  padding-top: var(--sp-7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col--brand .footer-wordmark {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: #ffffff;
  margin-bottom: var(--sp-2);
  letter-spacing: 0.04em;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(240,240,236,0.55);
  line-height: 1.6;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7ecfac;
  margin-bottom: var(--sp-3);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-link {
  font-size: 0.9rem;
  color: rgba(240,240,236,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: #ffffff; }
.footer-contact-text {
  font-size: 0.88rem;
  color: rgba(240,240,236,0.6);
  line-height: 1.65;
  margin-bottom: var(--sp-3);
}
.footer-cta-link {
  font-size: 0.9rem;
  font-weight: var(--fw-bold);
  color: #7ecfac;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-cta-link:hover { color: #ffffff; }
.footer-bottom {
  padding-block: var(--sp-4);
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(240,240,236,0.35);
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; gap: var(--sp-2); }
  .nav-list { gap: var(--sp-3); flex-wrap: wrap; }
  .nav-link { font-size: 0.82rem; }

  .section-hero { min-height: 520px; }
  .hero-headline { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero-trust-list { flex-direction: column; gap: var(--sp-2); }

  .ps-grid { grid-template-columns: 1fr; }
  .ps-col--problem { border-right: none; border-bottom: 2px solid var(--clr-border); padding-right: 0; padding-bottom: var(--sp-5); }
  .ps-col--solution { padding-left: 0; }

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

  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }

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

  .trust-row { justify-content: center; }
  .trust-item { min-width: 120px; max-width: 160px; }

  .content-img-grid { grid-template-columns: 1fr; }
  .content-img-col { order: -1; }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-col--brand { grid-column: auto; }

  .section-band { padding-block: var(--sp-6); }

  .photo-band-caption { right: clamp(1rem, 4vw, 2rem); left: clamp(1rem, 4vw, 2rem); text-align: center; }
  .section-photo-band { max-height: 300px; }
  .photo-band-inner { max-height: 300px; }
  .photo-band-img { max-height: 300px; }
}
/* ===== 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 ===== */
