/* ElAdawy LLC — shared styles
   Type: Manrope (geometric sans) + IBM Plex Mono (eyebrow labels)
   Palette: white #FFFFFF, alt #F6F8FA, charcoal #1A1F26, slate blue #1C3A5E, hairline #E4E9EF */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: #1A1F26;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.wrap { width: 100%; overflow-x: hidden; }

/* ---------- Shared header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E4E9EF;
}
.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background: #1C3A5E;
  border-radius: 7px;
}
.brand__mark span {
  width: 11px;
  height: 11px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 2px;
}
.brand__name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #101720;
}
.brand__name .accent { color: #1C3A5E; }

.nav { display: flex; align-items: center; gap: clamp(20px, 4vw, 40px); }
.nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: #48515E;
}
.nav a:hover { color: #1C3A5E; }

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: #48515E;
}
.back-home:hover { color: #1C3A5E; }
.back-home .arrow { font-size: 16px; line-height: 0; }

/* ---------- Eyebrow label ---------- */
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1C3A5E;
  font-weight: 500;
}

/* ---------- Shared footer ---------- */
.site-footer { background: #101720; color: #9BA6B2; }
.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 68px) clamp(20px, 5vw, 48px) 32px;
}
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand__mark {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: #1C3A5E;
  border-radius: 7px;
}
.footer-brand__mark span {
  width: 10px;
  height: 10px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 2px;
}
.footer-brand__name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}
.footer-links a { color: #C3CCD6; }
.footer-links a:hover,
.footer-links a.is-active { color: #fff; }
.footer-links .sep { color: #3C4651; }
.footer-copy {
  margin-top: 28px;
  padding-top: 24px;
  font-size: 13px;
  color: #6B7785;
}

/* ---------- Legal page body ---------- */
.legal-title {
  background: #F6F8FA;
  border-bottom: 1px solid #E4E9EF;
}
.legal-title__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) clamp(20px, 5vw, 48px);
}
.legal-title h1 {
  margin-top: 16px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #101720;
}
.legal-title__meta {
  margin-top: 18px;
  font-size: 15px;
  color: #52606D;
  font-weight: 500;
}
.legal-body { background: #fff; }
.legal-body__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 48px);
}
.legal-lede {
  font-size: 16.5px;
  line-height: 1.7;
  color: #3A434F;
  font-weight: 500;
}
.legal-sections {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.legal-sections h2 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #101720;
}
.legal-sections p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #52606D;
  font-weight: 500;
}
.legal-sections a { color: #1C3A5E; font-weight: 700; }

.callout {
  border: 1px solid #DBE6F0;
  background: #F4F8FC;
  border-radius: 14px;
  padding: clamp(24px, 3.5vw, 32px);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.callout__mark {
  flex: none;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: #1C3A5E;
  border-radius: 10px;
  margin-top: 2px;
}
.callout__mark span {
  width: 14px;
  height: 14px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 3px;
}
.callout p {
  font-size: 17px;
  line-height: 1.6;
  color: #1A2B3D;
  font-weight: 600;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: #FFFFFF;
  border-bottom: 1px solid #E4E9EF;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#F1F4F8 1px, transparent 1px),
    linear-gradient(90deg, #F1F4F8 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 75%);
}
.hero__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(72px, 11vw, 140px) clamp(20px, 5vw, 48px) clamp(64px, 9vw, 120px);
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid #DBE2EB;
  border-radius: 100px;
  background: #F8FAFC;
  margin-bottom: 32px;
}
.status-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2E9E6B;
}
.status-pill__text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #52606D;
}
.hero__title {
  max-width: 880px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #101720;
  text-wrap: balance;
}
.hero__lede {
  max-width: 620px;
  margin-top: 26px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: #52606D;
  font-weight: 500;
}
.hero__actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1C3A5E;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(16, 23, 32, 0.12);
  transition: background 0.15s ease;
}
.btn-primary:hover { background: #15304F; }
.btn-primary__arrow { font-size: 16px; line-height: 0; }
.btn-text {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #1C3A5E;
  padding: 15px 18px;
}

/* ---------- Section head ---------- */
.section-head {
  max-width: 640px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.section-head__title {
  margin-top: 16px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #101720;
}

/* ---------- Portfolio ---------- */
.portfolio {
  background: #F6F8FA;
  border-bottom: 1px solid #E4E9EF;
}
.portfolio__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 48px);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}
.card {
  background: #fff;
  border: 1px solid #E4E9EF;
  border-radius: 16px;
  padding: clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.card__icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: #EEF3F8;
  border: 1px solid #DBE6F0;
  border-radius: 12px;
}
.card__icon-square {
  width: 18px;
  height: 18px;
  border: 3px solid #1C3A5E;
  border-radius: 5px;
}
.card__icon-diamond {
  width: 16px;
  height: 16px;
  background: #1C3A5E;
  transform: rotate(45deg);
  border-radius: 3px;
}
.card__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #101720;
}
.card__text {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: #52606D;
  font-weight: 500;
}

/* ---------- Compliance / trust badges ---------- */
.compliance {
  background: #1C3A5E;
  color: #fff;
}
.compliance__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 48px);
}
.compliance__copy { max-width: 560px; }
.eyebrow--light { color: #8FB0D0; }
.compliance__statement {
  margin-top: 16px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #EAF1F8;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 56px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
}
.badge--visa {
  font-size: 19px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #1A1F71;
}
.badge--mc { gap: 7px; }
.badge--mc-c1 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #EB001B;
}
.badge--mc-c2 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #F79E1B;
  margin-left: -11px;
  mix-blend-mode: multiply;
}
.badge--mc-label {
  font-size: 11px;
  font-weight: 700;
  color: #3A3A3A;
  margin-left: 4px;
}
.badge--amex {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #006FCF;
}
.badge--pci {
  padding: 0 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  gap: 8px;
}
.badge--pci-lock {
  width: 13px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 3px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  border-bottom: none;
  box-shadow: inset 0 -2px 0 0 #1C3A5E;
}
.badge--pci-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #CFE0EF;
}

/* ---------- Contact ---------- */
.contact { background: #fff; }
.contact__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact__copy { max-width: 480px; }
.contact__title {
  margin-top: 16px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #101720;
}
.contact__text {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.65;
  color: #52606D;
  font-weight: 500;
}
.contact-card {
  border: 1px solid #E4E9EF;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.contact-card__row {
  padding: 22px 26px;
  border-bottom: 1px solid #EDF1F5;
}
.contact-card__row--last { border-bottom: none; }
.contact-card__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A95A3;
}
.contact-card__value {
  margin-top: 7px;
  font-size: 16px;
  font-weight: 700;
  color: #1A1F26;
}
.contact-card__value--regular { font-weight: 600; line-height: 1.5; }
.contact-card__link {
  display: inline-block;
  color: #1C3A5E;
}

/* ---------- Footer notice ---------- */
.footer-notice {
  margin-top: 28px;
  max-width: 760px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #7E8A97;
}
.footer-notice__link { color: #C3CCD6; font-weight: 700; }
.footer-notice__link:hover { color: #fff; }
.footer-copy--rule { border-top: 1px solid rgba(255, 255, 255, 0.07); }
