:root {
  --yellow: #ffc107;
  --yellow-2: #ffd84d;
  --ink: #111111;
  --muted: #686868;
  --paper: #fffdf7;
  --card: #ffffff;
  --line: #ece7d8;
  --success: #177245;
  --shadow: 0 18px 55px rgba(17, 17, 17, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 36px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(236, 231, 216, 0.8);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
}
.brand img { width: 44px; height: 44px; border-radius: 13px; }
.nav-links { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.nav-links a { text-decoration: none; color: #333; font-weight: 700; font-size: 0.95rem; }
.nav-links a:hover { color: #000; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}
.button.secondary { background: transparent; color: var(--ink); }
.button.yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 86px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 193, 7, 0.45), transparent 35%),
    radial-gradient(circle at 90% 12%, rgba(255, 216, 77, 0.55), transparent 30%),
    linear-gradient(180deg, #fff7d5 0%, var(--paper) 78%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
.eyebrow {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.22);
  border: 1px solid rgba(17,17,17,0.08);
  font-weight: 900;
  font-size: 0.9rem;
}
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.035em; margin-top: 0; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); margin: 20px 0; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 18px; }
h3 { font-size: 1.25rem; }
.lead { font-size: 1.2rem; color: #3d3d3d; max-width: 690px; }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero-card {
  background: var(--yellow);
  border-radius: 34px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17,17,17,0.08);
  transform: rotate(1.5deg);
}
.hero-card img { border-radius: 24px; }

.section { padding: 88px 0; }
.section.alt { background: #fff8df; border-block: 1px solid #f3e6b5; }
.section-intro { max-width: 760px; margin-bottom: 34px; }
.muted { color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(17,17,17,0.045);
}
.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border-radius: 16px;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.legal-hero { padding: 66px 0 40px; background: linear-gradient(180deg, #fff3bf, var(--paper)); }
.legal-shell { width: min(900px, calc(100% - 36px)); margin: 0 auto; padding-bottom: 90px; }
.legal-meta { color: var(--muted); margin-top: 10px; }
.language-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 26px 0;
}
.lang-button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 900;
  cursor: pointer;
}
.lang-button.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.language-panel { display: none; }
.language-panel.active { display: block; }
.legal-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  margin: 14px 0;
}
.legal-section p, .legal-section li { color: #3f3f3f; }
.legal-section ul { padding-inline-start: 22px; }
.notice {
  background: #fff3bf;
  border: 1px solid #efd16a;
  padding: 18px 20px;
  border-radius: 18px;
  margin: 22px 0;
}
.contact-list { display: grid; gap: 12px; margin: 25px 0; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  text-decoration: none;
  font-weight: 800;
}
.contact-item:hover { border-color: #c8a100; }
.steps { counter-reset: step; display: grid; gap: 16px; }
.step {
  position: relative;
  padding: 20px 22px 20px 72px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  font-weight: 900;
}
[dir="rtl"] .step { padding: 20px 72px 20px 22px; }
[dir="rtl"] .step::before { left: auto; right: 20px; }

.site-footer { background: var(--ink); color: #fff; padding: 46px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; flex-wrap: wrap; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: #fff; text-decoration: none; opacity: .82; }
.footer-links a:hover { opacity: 1; }
.small { font-size: 0.9rem; }

@media (max-width: 820px) {
  .nav { min-height: 68px; }
  .nav-links a:not(.button) { display: none; }
  .hero { padding: 70px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .hero-card { transform: none; max-width: 520px; }
  .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
}

@media (max-width: 520px) {
  .container, .legal-shell { width: min(100% - 24px, 1120px); }
  h1 { font-size: 2.7rem; }
  .hero-actions .button { width: 100%; }
  .legal-section { padding: 19px; }
}
