:root {
  --deep-navy: #012754;
  --navy: #024289;
  --blue: #0169f0;
  --sky: #74c4ff;
  --greige: #e5e3d8;
  --ink: #102033;
  --muted: #53657a;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --line: rgba(1, 39, 84, 0.14);
  --radius: 20px;
  --shadow: 0 18px 48px rgba(1, 39, 84, 0.12);
  --display: "Readex Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Archivo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[lang="ar"] body {
  font-family: var(--display);
  line-height: 1.85;
}

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

a:hover {
  text-decoration: underline;
}

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

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  inset-inline-start: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--sky);
  color: var(--deep-navy);
  border-radius: 10px;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 172px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--deep-navy);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(1, 105, 240, 0.08);
  text-decoration: none;
}

.nav-links .contact-pill {
  background: var(--blue);
  color: #fff;
}

.nav-links .whatsapp-pill {
  border: 1px solid var(--line);
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(116, 196, 255, 0.36), transparent 32rem),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 42px;
  align-items: center;
  padding: 72px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sky);
}

h1,
h2,
h3 {
  font-family: var(--display);
  color: var(--deep-navy);
  line-height: 1.14;
}

.hero h1 {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  text-align: center;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(1, 105, 240, 0.28);
}

.btn-light {
  background: #fff;
  color: var(--deep-navy);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-secondary {
  border-color: var(--line);
  color: var(--deep-navy);
  background: #fff;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card img {
  display: block;
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.proof-bar {
  background: var(--greige);
  border-bottom: 1px solid rgba(1, 39, 84, 0.1);
}

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

.proof-item {
  padding: 18px 14px;
  color: var(--deep-navy);
  font-weight: 900;
  text-align: center;
}

section {
  padding: 76px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.52fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.section-head h2,
.page-header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.035em;
}

.section-head p,
.page-header p,
.lead {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.card,
.panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(1, 39, 84, 0.08);
}

.card h3,
.panel h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.card p,
.panel p {
  margin: 0 0 16px;
  color: var(--muted);
}

.soft {
  background: var(--soft);
}

.dark {
  background: var(--deep-navy);
  color: #fff;
}

.dark h2,
.dark h3,
.dark .section-kicker {
  color: #fff;
}

.dark p,
.dark li {
  color: rgba(255, 255, 255, 0.82);
}

.trust-grid,
.lane-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.trust-item,
.lane {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.lane {
  background: #fff;
  border-color: var(--line);
  color: var(--deep-navy);
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.feature-list li {
  padding-inline-start: 20px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 2px;
  transform: rotate(45deg);
}

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

.field-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--deep-navy);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(116, 196, 255, 0.42);
  border-color: var(--blue);
}

.status {
  min-height: 1.5em;
  color: var(--navy);
  font-weight: 800;
}

.page-header {
  padding: 70px 0 34px;
  background: var(--soft);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.site-footer {
  padding: 34px 0;
  background: var(--deep-navy);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.site-footer img {
  width: 150px;
}

.site-footer p,
.site-footer small {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: end;
}

.footer-links a {
  color: #fff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .hero-grid,
  .section-head,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .trust-grid,
  .lane-grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero-grid {
    padding: 48px 0;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 14vw, 3.5rem);
  }

  section {
    padding: 58px 0;
  }

  .proof-grid,
  .trust-grid,
  .lane-grid,
  .card-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
  }
}
