* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Tahoma, "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(180deg, #0f172a, #1e293b);
  color: #f8fafc;
  line-height: 1.85;
  direction: rtl;
  text-align: right;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

header {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}

nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

nav a:hover,
nav a[aria-current="page"] {
  color: #fda4af;
}

.hero {
  padding: 72px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  margin-bottom: 18px;
  line-height: 1.35;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 17px;
  color: #cbd5e1;
}

.btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary {
  background: #f43f5e;
  color: white;
}

.btn-primary:hover {
  background: #e11d48;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 52px 0;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 16px;
  text-align: center;
}

.section-desc {
  text-align: center;
  color: #cbd5e1;
  max-width: 760px;
  margin: 0 auto 36px;
  font-size: 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  border-radius: 16px;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 19px;
}

.card p {
  color: #cbd5e1;
  font-size: 15px;
}

.card a {
  color: #fda4af;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-top: 12px;
}

.card a:hover {
  text-decoration: underline;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.quote {
  background: rgba(255, 255, 255, 0.05);
  padding: 22px;
  border-radius: 16px;
  border-right: 4px solid #f43f5e;
  color: #e2e8f0;
  font-size: 15px;
}

.prose {
  max-width: 720px;
  margin: 0 auto;
  color: #cbd5e1;
  font-size: 16px;
}

.prose p {
  margin-bottom: 1.2em;
}

.prose ul {
  margin: 1em 1.25em 1.5em 0;
}

.prose li {
  margin-bottom: 0.5em;
}

footer {
  padding: 28px 0 40px;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}
