:root {
  --navy: #172238;
  --gold: #d79722;
  --gold-dark: #9b6f25;
  --cream: #fbf7ef;
  --ink: #263247;
  --muted: #667085;
  --line: #e8e2d7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Cairo", system-ui, sans-serif;
  line-height: 1.85;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1120px, calc(100% - 36px)); margin-inline: auto; }
.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 4px 18px rgb(0 0 0 / 12%);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  width: 190px;
  height: auto;
  filter: brightness(0) invert(1);
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone {
  text-decoration: none;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 8px;
  padding: 9px 16px;
  font-weight: 700;
  direction: ltr;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--gold);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 800;
  border: 0;
}
.button:hover { background: #bd7e13; }
.button.secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
}
.hero {
  padding: 78px 0;
  background:
    radial-gradient(circle at 15% 20%, rgb(215 151 34 / 14%), transparent 33%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 54px;
}
.eyebrow { color: var(--gold-dark); font-weight: 800; margin: 0 0 8px; }
h1, h2, h3 { color: var(--navy); line-height: 1.35; }
h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); margin: 0 0 22px; }
h2 { font-size: clamp(1.75rem, 3vw, 2.65rem); margin: 0 0 22px; }
h3 { font-size: 1.25rem; margin: 0 0 9px; }
.lead { font-size: 1.15rem; color: #4b5565; max-width: 760px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-image {
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 24px 55px rgb(23 34 56 / 18%);
}
.section { padding: 72px 0; }
.section.alt { background: #f7f8fa; }
.intro { max-width: 850px; margin-bottom: 34px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 8px 24px rgb(23 34 56 / 5%);
}
.card p { margin-bottom: 0; color: var(--muted); }
.checklist { list-style: none; padding: 0; margin: 26px 0 0; }
.checklist li { position: relative; padding-right: 30px; margin: 11px 0; }
.checklist li::before { content: "✓"; color: var(--gold-dark); font-weight: 900; position: absolute; right: 0; }
.table-wrap { overflow-x: auto; border-radius: 14px; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; background: #fff; min-width: 640px; }
th, td { text-align: right; padding: 16px 18px; border-bottom: 1px solid var(--line); }
th { background: var(--navy); color: #fff; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; color: var(--navy); font-weight: 800; font-size: 1.08rem; }
.faq p { color: var(--muted); }
.related a { color: var(--gold-dark); font-weight: 800; text-decoration-thickness: 1px; }
.cta { background: var(--navy); color: #fff; text-align: center; }
.cta h2 { color: #fff; }
.cta p { color: #d3d9e4; }
.breadcrumbs { font-size: .9rem; margin-bottom: 22px; color: var(--muted); }
.breadcrumbs a { color: var(--gold-dark); }
footer { background: #10192a; color: #bcc4d2; padding: 34px 0; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; }

@media (max-width: 820px) {
  .hero-grid, .grid, .grid.two { grid-template-columns: 1fr; }
  .hero { padding: 50px 0; }
  .hero-image { order: -1; max-height: 330px; width: 100%; }
  .site-header { position: static; }
  .header-inner { min-height: 70px; }
  .logo { width: 150px; }
  .header-actions .phone { display: none; }
  .section { padding: 54px 0; }
}