/* =========================================================
   AYAZ GDS — Shared stylesheet for SEO / content pages
   Lightweight, fast, self-contained (no app dependencies)
   ========================================================= */

:root {
  --ink: #0f1b2d;
  --muted: #5a6b82;
  --brand: #0b66c3;
  --brand-dark: #084a8f;
  --accent: #00b894;
  --bg: #f5f8fc;
  --card: #ffffff;
  --line: #e2e8f2;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container { width: 100%; max-width: 920px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  flex-wrap: wrap;
  gap: 8px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand b { font-size: 20px; letter-spacing: 1px; color: var(--ink); }
.brand span { font-size: 11px; color: var(--muted); letter-spacing: 1px; }
.site-nav { display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: center; }
.site-nav a { color: var(--ink); font-size: 14px; font-weight: 500; }
.site-nav a:hover { color: var(--brand); text-decoration: none; }
.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--brand-dark); text-decoration: none !important; }
.btn-outline {
  background: transparent;
  color: var(--brand) !important;
  border: 1px solid var(--brand);
}
.btn-outline:hover { background: var(--brand); color: #fff !important; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #0b2a4a 0%, #0b66c3 100%);
  color: #fff;
  padding: 56px 0;
}
.hero h1 { font-size: 34px; margin: 0 0 14px; line-height: 1.25; }
.hero p { font-size: 18px; color: #dbe9fb; max-width: 700px; margin: 0 0 22px; }
.hero .btn { background: #fff; color: var(--brand) !important; }
.hero .btn:hover { background: #eef5ff; }
.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* ---------- Content ---------- */
main { padding: 44px 0; }
main h2 { font-size: 26px; margin: 36px 0 14px; color: var(--ink); }
main h3 { font-size: 19px; margin: 26px 0 10px; color: var(--brand-dark); }
main p, main li { font-size: 16px; color: #29384c; }
main ul, main ol { padding-left: 22px; }
main li { margin: 6px 0; }
.lead { font-size: 18px; color: var(--muted); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  margin: 18px 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 22px 0;
}
.code {
  background: #0f1b2d;
  color: #5ff0c2;
  font-family: "Courier New", monospace;
  padding: 14px 16px;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.9;
}
.note {
  background: #fff8e6;
  border-left: 4px solid #f0a500;
  padding: 14px 16px;
  border-radius: 6px;
  margin: 20px 0;
  font-size: 15px;
}
.price { font-size: 22px; font-weight: 700; color: var(--brand); margin: 6px 0; }
.cta-band {
  background: #eef5ff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
  padding: 32px 20px;
  margin: 40px 0 0;
}
.cta-band h2 { margin-top: 0; }
.faq-q { font-weight: 700; margin: 22px 0 4px; color: var(--ink); }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.breadcrumb a { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: #0f1b2d;
  color: #c4d2e6;
  padding: 40px 0 28px;
  margin-top: 50px;
  font-size: 14px;
}
.site-footer h4 { color: #fff; margin: 0 0 12px; font-size: 15px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.site-footer a { color: #c4d2e6; display: block; padding: 3px 0; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #24364f;
  margin-top: 26px;
  padding-top: 18px;
  text-align: center;
  color: #8aa0bd;
  font-size: 13px;
}

@media (max-width: 640px) {
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 16px; }
  .site-nav { width: 100%; }
}
