@font-face {
  font-display: swap;
  font-family: "Cairo";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Cairo-Regular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Cairo";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Cairo-SemiBold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Cairo";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Cairo-Bold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Cairo";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Cairo-Black.ttf") format("truetype");
}

:root {
  --ink: #121826;
  --ink-2: #263244;
  --muted: #667487;
  --line: #eadfd8;
  --paper: #ffffff;
  --paper-warm: #fff9f4;
  --soft: #f5f7fa;
  --brand: #ff6b1a;
  --brand-2: #ff8a3d;
  --brand-soft: #fff1e8;
  --emerald: #12805c;
  --teal: #0f766e;
  --blue: #1e4f86;
  --gold: #b88935;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(18, 24, 38, .11);
  --shadow-soft: 0 10px 28px rgba(18, 24, 38, .07);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--soft);
  color: var(--ink);
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  text-align: right;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 22px;
}

.topbar {
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(255, 107, 26, .18);
  box-shadow: 0 10px 30px rgba(18, 24, 38, .05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 180px;
}

.brand img {
  background: #fff;
  border: 1px solid rgba(255, 107, 26, .22);
  border-radius: var(--radius);
  height: 52px;
  object-fit: cover;
  width: 52px;
}

.brand strong {
  display: block;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
}

.brand span {
  color: var(--brand);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.5;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 4px;
}

.nav-links a {
  border-radius: var(--radius);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--brand-soft);
  color: var(--brand);
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 8px;
}

.menu-toggle {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
  display: none;
  height: 44px;
  width: 44px;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  display: block;
  height: 2px;
  margin: 5px auto;
  width: 20px;
}

.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  transition: background .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}

.button.primary {
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(255, 107, 26, .23);
  color: #fff;
}

.button.secondary {
  background: #fff;
  border: 1px solid rgba(255, 107, 26, .32);
  color: var(--ink);
}

.button.dark {
  background: var(--ink);
  color: #fff;
}

.button:hover {
  transform: translateY(-1px);
}

.hero {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .88) 32%, rgba(255, 255, 255, .36) 64%, rgba(255, 255, 255, .05) 100%),
    url("../images/hero-billboards.png");
  background-position: center;
  background-size: cover;
  min-height: 680px;
  padding: 58px 0 34px;
  position: relative;
}

.hero::after {
  background: linear-gradient(180deg, rgba(245, 247, 250, 0) 0%, var(--soft) 100%);
  bottom: 0;
  content: "";
  height: 110px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 410px;
  min-height: 540px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  align-items: center;
  color: var(--brand);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 9px;
  margin-bottom: 14px;
}

.eyebrow::before {
  background: var(--brand);
  border-radius: 999px;
  content: "";
  height: 3px;
  width: 34px;
}

.hero h1,
.page-hero h1 {
  color: var(--ink);
  font-size: clamp(38px, 5.2vw, 66px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0 0 16px;
}

.hero-lead {
  color: var(--ink-2);
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 700;
  max-width: 620px;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.metric-strip {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
}

.metric {
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 107, 26, .24);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 14px;
}

.metric strong {
  color: var(--ink);
  display: block;
  font-size: 20px;
  font-weight: 900;
}

.metric span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.app-panel {
  background: rgba(255, 255, 255, .90);
  border: 1px solid rgba(255, 107, 26, .26);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.app-panel img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.app-panel-body {
  padding: 20px;
}

.status-row {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.status-row strong {
  font-size: 16px;
  font-weight: 900;
}

.pill {
  background: var(--brand-soft);
  border-radius: 999px;
  color: var(--brand);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  padding: 7px 11px;
}

.page-section {
  padding: 64px 0;
}

.page-section.tight {
  padding: 46px 0;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

.section-head p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  max-width: 470px;
}

.feature-grid,
.store-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.store-card,
.policy-card,
.contact-card,
.request-card,
.timeline-item {
  background: var(--paper);
  border: 1px solid rgba(255, 107, 26, .32);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 24px;
}

.feature-card .icon,
.timeline-item .icon {
  align-items: center;
  background: var(--brand-soft);
  border-radius: var(--radius);
  color: var(--brand);
  display: inline-flex;
  font-size: 20px;
  height: 46px;
  justify-content: center;
  margin-bottom: 16px;
  width: 46px;
}

.feature-card h3,
.store-card h3,
.policy-card h2,
.contact-card h2,
.request-card h2 {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  margin: 0 0 10px;
}

.feature-card p,
.store-card p,
.policy-card p,
.contact-card p,
.request-card p,
.timeline-item p,
.rich-text p,
.rich-text li {
  color: var(--muted);
  font-weight: 700;
  margin-top: 0;
}

.showcase {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.showcase .section-head p,
.showcase .feature-card p {
  color: rgba(255, 255, 255, .72);
}

.showcase .section-head h2,
.showcase .feature-card h3 {
  color: #fff;
}

.showcase-grid {
  align-items: stretch;
  display: grid;
  gap: 16px;
  grid-template-columns: 1.05fr .95fr;
}

.showcase-media {
  min-height: 410px;
}

.showcase-media img {
  border-radius: var(--radius);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.showcase-list {
  display: grid;
  gap: 14px;
}

.showcase .feature-card {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 107, 26, .34);
  box-shadow: none;
}

.store-card {
  padding: 22px;
}

.store-card strong {
  color: var(--emerald);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

.store-card ul,
.rich-text ul,
.rich-text ol {
  margin: 0;
  padding: 0 20px 0 0;
}

.store-card li {
  color: var(--muted);
  font-weight: 700;
  margin: 5px 0;
}

.download-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 260px));
}

.download-badge {
  align-items: center;
  background: #101827;
  border: 1px solid rgba(255, 107, 26, .42);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: #fff;
  display: flex;
  gap: 14px;
  min-height: 72px;
  padding: 13px 16px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.download-badge:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.download-badge.disabled {
  cursor: default;
}

.download-icon {
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  color: #101827;
  display: inline-flex;
  flex: 0 0 44px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.download-icon svg {
  display: block;
  fill: currentColor;
  height: 27px;
  width: 27px;
}

.download-icon.play {
  color: var(--brand);
}

.download-badge small {
  color: rgba(255, 255, 255, .72);
  display: block;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.download-badge strong {
  display: block;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.download-note {
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(255, 107, 26, .32);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-top: 16px;
  max-width: 760px;
  padding: 18px;
}

.download-note p {
  color: var(--muted);
  font-weight: 800;
  margin: 0;
}

.cta-band {
  background: var(--paper);
  border: 1px solid rgba(255, 107, 26, .32);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 30px;
}

.cta-band h2 {
  font-size: clamp(23px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 8px;
}

.cta-band p {
  color: var(--muted);
  font-weight: 700;
  margin: 0;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(255, 249, 244, .98), rgba(255, 255, 255, .88)),
    url("../images/hero-billboards.png");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(255, 107, 26, .18);
  padding: 58px 0;
}

.page-hero h1 {
  font-size: clamp(30px, 4.2vw, 50px);
  max-width: 780px;
}

.page-hero p {
  color: var(--ink-2);
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  max-width: 820px;
}

.content-grid {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: 300px minmax(0, 1fr);
}

.side-card {
  background: var(--paper);
  border: 1px solid rgba(255, 107, 26, .32);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  position: sticky;
  top: 98px;
}

.side-card a {
  border-radius: var(--radius);
  color: var(--muted);
  display: block;
  font-size: 14px;
  font-weight: 900;
  padding: 10px 12px;
}

.side-card a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.policy-stack {
  display: grid;
  gap: 14px;
}

.policy-card,
.contact-card,
.request-card {
  padding: 26px;
}

.policy-card h2 {
  scroll-margin-top: 110px;
}

.note {
  background: var(--brand-soft);
  border: 1px solid rgba(255, 107, 26, .34);
  border-radius: var(--radius);
  color: var(--ink-2);
  font-weight: 800;
  padding: 14px 16px;
}

.contact-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: .88fr 1.12fr;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-line {
  align-items: center;
  background: var(--paper-warm);
  border: 1px solid rgba(255, 107, 26, .22);
  border-radius: var(--radius);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 12px;
}

.contact-line span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-line strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field label {
  color: var(--ink);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 6px;
}

.field input,
.field textarea,
.field select {
  background: #fff;
  border: 1px solid rgba(255, 107, 26, .32);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 48px;
  outline: 0;
  padding: 11px 13px;
  width: 100%;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, .12);
}

.timeline {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-item {
  padding: 20px;
}

.footer {
  background: #0f1624;
  color: #fff;
  padding: 42px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr .9fr .9fr;
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
}

.footer h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  margin: 0 0 12px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin: 7px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  font-weight: 700;
  margin-top: 30px;
  padding-top: 18px;
}

.success-box {
  background: #ecfdf5;
  border: 1px solid rgba(18, 128, 92, .32);
  border-radius: var(--radius);
  color: #065f46;
  font-weight: 800;
  padding: 18px;
}

.error-box {
  background: #fff1f2;
  border: 1px solid rgba(190, 18, 60, .25);
  border-radius: var(--radius);
  color: #9f1239;
  font-weight: 800;
  padding: 18px;
}

@media (max-width: 980px) {
  .nav-links {
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid rgba(255, 107, 26, .16);
    box-shadow: var(--shadow);
    display: none;
    inset: 78px 0 auto 0;
    padding: 14px 22px 18px;
    position: fixed;
  }

  body.menu-open .nav-links {
    display: grid;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .button.secondary {
    display: none;
  }

  .hero {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .82) 54%, rgba(255, 255, 255, .62) 100%),
      url("../images/hero-billboards.png");
    padding-top: 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(32px, 6.2vw, 48px);
  }

  .hero-lead {
    font-size: 16px;
    max-width: 560px;
  }

  .hero-grid,
  .showcase-grid,
  .contact-grid,
  .content-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .app-panel {
    max-width: 520px;
  }

  .feature-grid,
  .store-grid,
  .download-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-card {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
    line-height: 1.72;
  }

  .container {
    padding: 0 16px;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand span {
    font-size: 9px;
  }

  .brand img {
    height: 46px;
    width: 46px;
  }

  .nav-links {
    inset: 70px 0 auto 0;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 24px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.16;
  }

  .page-hero h1 {
    font-size: 28px;
    line-height: 1.22;
  }

  .hero-lead,
  .page-hero p {
    font-size: 15px;
  }

  .hero-grid {
    gap: 28px;
    min-height: 0;
  }

  .metric-strip,
  .feature-grid,
  .store-grid,
  .download-grid,
  .timeline,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .download-note {
    align-items: stretch;
    flex-direction: column;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .page-section {
    padding: 44px 0;
  }

  .page-hero {
    padding: 40px 0;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .feature-card h3,
  .store-card h3,
  .policy-card h2,
  .contact-card h2,
  .request-card h2 {
    font-size: 17px;
  }

  .feature-card,
  .store-card,
  .policy-card,
  .contact-card,
  .request-card,
  .timeline-item {
    padding: 20px;
  }

  .metric strong {
    font-size: 18px;
  }

  .download-badge strong {
    font-size: 18px;
  }

  .cta-band {
    padding: 22px;
  }
}
