:root {
  --bg: #f8fbff;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: #dbe7f5;
  --primary: #0b3a8f;
  --primary-strong: #082d70;
  --accent: #0f9f6e;
  --accent-soft: #e8f8f1;
  --shadow: 0 12px 30px rgba(2, 24, 73, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(15, 159, 110, 0.1), transparent 33%),
    radial-gradient(circle at 100% 0%, rgba(11, 58, 143, 0.12), transparent 38%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 251, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d7e4f7;
  background: #fff;
  box-shadow: 0 4px 12px rgba(7, 35, 88, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-easy {
  color: #1d68f3;
}

.brand-hisab {
  color: #69d84b;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.eyebrow {
  display: inline-block;
  background: var(--accent-soft);
  color: #05754f;
  border: 1px solid #bcebd8;
  font-size: 0.82rem;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 600;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4.8vw, 3.1rem);
  line-height: 1.13;
  color: #0a2558;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 58ch;
}

.hero-points {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-points span {
  border: 1px solid #cadcf5;
  color: #14366e;
  background: #f6f9ff;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.82rem;
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 600;
  padding: 11px 18px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 8px 20px rgba(11, 58, 143, 0.24);
}

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

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.hero-card p {
  margin: 0;
  font-size: 0.95rem;
}

.hero-metric {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: #fcfdff;
}

.metric strong {
  display: block;
  color: #0a2558;
  font-size: 1.05rem;
}

.section {
  padding: 34px 0;
}

.section h2 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  color: #0a2558;
}


.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(12, 42, 95, 0.05);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.trust {
  background: linear-gradient(160deg, #f4f8ff 0%, #f5fcf8 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-card {
  background: #ffffff;
  border: 1px solid #dce9fb;
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.trust-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: #0a2558;
}

.content-page {
  padding: 46px 0 60px;
}

.content-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.content-shell h1 {
  font-size: clamp(1.5rem, 4.2vw, 2.35rem);
  margin-bottom: 8px;
}

.content-shell h2 {
  margin: 26px 0 8px;
  color: #0a2558;
  font-size: 1.12rem;
}

.content-shell ul {
  padding-left: 20px;
  margin: 8px 0;
}

.content-shell li {
  margin: 4px 0;
}

.note {
  background: #f7fafc;
  border: 1px solid #d9e2ef;
  border-left: 4px solid #2f5eb4;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 14px 0;
}

footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  margin-top: 32px;
  background: #f7faff;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (min-width: 840px) {
  .hero {
    padding: 92px 0 64px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 34px;
  }

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

  .content-shell {
    padding: 30px;
  }
}
