:root {
  --primary: #1a6b9c;
  --primary-dark: #0d4a6e;
  --primary-light: #2a80b0;
  --accent: #e8b800;
  --accent-light: #facc15;
  --bg: #f5f5f5;
  --card-bg: #ffffff;
  --text: #1a1a1a;
  --text-muted: #666666;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 60px 0 40px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.logo {
  font-size: 80px;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-light);
}

.tagline {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.9;
}

.subtitle {
  font-size: 1rem;
  margin-top: 12px;
  opacity: 0.75;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 40px 0;
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Download */
.download {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 20px 0 40px;
}

.store-badge {
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.6;
  cursor: default;
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: white;
  padding: 24px;
  text-align: center;
  margin-top: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.copyright {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Legal pages */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-align: center;
}

.legal-page .update-date {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 32px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-page p {
  margin-bottom: 12px;
}

.legal-page ul {
  margin-bottom: 12px;
  padding-right: 24px;
}

.legal-page li {
  margin-bottom: 6px;
}

.legal-page .highlight {
  background: #fff3cd;
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .features { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .download { flex-direction: column; align-items: center; }
}
