:root {
  --cream: #FBF7F2;
  --paper: #ffffff;
  --ink: #2A1C14;
  --ink-soft: #6B5A4D;
  --ink-mute: #8A7A6E;
  --primary: #B8543C;
  --primary-deep: #8C3D28;
  --accent: #E8A06A;
  --accent-soft: #F5E0CD;
  --line: #EFE7DB;
  --green: #6B8E4E;
  --radius: 20px;
  --maxw: 1160px;
  --heromaxw: 1200px;
  --pad: clamp(18px, 5vw, 48px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.ar { font-family: 'Amiri', serif; direction: rtl; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 14px var(--pad);
  background: rgba(251, 247, 242, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; font-weight: 600; font-size: 15px; color: var(--ink-soft); }
.nav-links a { transition: color .15s ease; }
.nav-links a:hover { color: var(--primary); }
.lang {
  display: inline-flex; padding: 3px; gap: 2px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper);
}
.lang-opt {
  font-family: inherit; font-weight: 800; font-size: 13px; letter-spacing: .5px;
  padding: 6px 13px; border-radius: 999px; cursor: pointer; border: none;
  background: transparent; color: var(--ink-mute); transition: all .15s ease;
}
.lang-opt:hover { color: var(--ink); }
.lang-opt.active { background: var(--primary); color: #fff; }
@media (max-width: 720px) { .nav-links { display: none; } .lang { margin-left: auto; } }

section { padding: clamp(64px, 9vw, 120px) var(--pad); }

/* HERO — full-bleed gradient band, centered content */
.hero-band {
  background: radial-gradient(120% 120% at 80% 0%, #F3DEC4 0%, #F8EBDC 45%, #FBF7F2 100%);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 7vw, 96px) var(--pad);
}
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 80px);
  align-items: center; max-width: var(--heromaxw); margin: 0 auto;
}
.eyebrow { margin-bottom: 18px; }
.eyebrow .ar {
  display: inline-block; font-size: 21px; color: var(--primary); font-weight: 700;
  background: rgba(184,84,60,.09); padding: 7px 18px; border-radius: 999px;
}
.hero h1 { font-size: clamp(36px, 5.2vw, 60px); line-height: 1.06; font-weight: 800; letter-spacing: -1.2px; }
.hero h1 .accent { color: var(--primary); display: inline-block; }
.lead { margin-top: 22px; font-size: clamp(16px, 1.55vw, 19px); color: var(--ink-soft); max-width: 540px; }
.hero-note { margin-top: 20px; font-size: 14px; color: var(--ink-mute); font-weight: 600; }
.hero-phone { display: flex; justify-content: center; }
.hero-phone img {
  width: 100%; max-width: 384px; border-radius: 42px;
  box-shadow: 0 36px 70px -12px rgba(42,28,20,.32);
}
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; text-align: center; gap: 44px; }
  .lead { margin-left: auto; margin-right: auto; }
  .badges { justify-content: center; }
  .hero-phone { order: -1; }
  .hero-phone img { max-width: 300px; }
}

/* BADGES */
.badges { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.badges-center { justify-content: center; }
.badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff; border-radius: 14px;
  padding: 11px 20px; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease;
}
.badge:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(42,28,20,.22); }
.badge svg { width: 26px; height: 26px; fill: #fff; }
.badge-txt { display: flex; flex-direction: column; line-height: 1.12; font-weight: 800; font-size: 18px; text-align: left; }
.badge-txt small { font-weight: 600; font-size: 11px; opacity: .8; }

/* FEATURES */
.section-title { text-align: center; font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; letter-spacing: -.6px; margin-bottom: 48px; }
.features { max-width: var(--maxw); margin: 0 auto; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 920px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .grid { grid-template-columns: 1fr; } }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: 0 6px 22px rgba(42,28,20,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(42,28,20,.10); }
.ic {
  width: 54px; height: 54px; border-radius: 15px; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.ic-svg { width: 26px; height: 26px; fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 18px; font-weight: 800; margin-bottom: 9px; }
.card p { font-size: 14.5px; color: var(--ink-soft); }

/* METHOD */
.method { max-width: var(--maxw); margin: 0 auto; }
.method-card {
  background: linear-gradient(135deg, #2A1C14 0%, #4A2C1C 100%);
  border-radius: 28px; padding: clamp(40px, 6vw, 80px); text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.method-ar {
  font-size: clamp(36px, 6vw, 66px); color: var(--accent); font-weight: 700;
  margin-bottom: 20px;
}
.method-card h2 { font-size: clamp(25px, 3vw, 36px); font-weight: 800; margin-bottom: 16px; }
.method-card p { color: rgba(255,255,255,.82); max-width: 660px; margin: 0 auto; font-size: 16.5px; }

/* SCREENSHOTS */
.shots { max-width: var(--maxw); margin: 0 auto; }
.shots-row { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.shots-row img {
  width: 226px; border-radius: 28px; border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(42,28,20,.14); transition: transform .2s ease;
}
.shots-row img:hover { transform: translateY(-6px); }
@media (max-width: 520px) { .shots-row img { width: 150px; border-radius: 18px; } }

/* CTA */
.cta {
  max-width: var(--maxw); margin: 0 auto; text-align: center;
  background: radial-gradient(120% 140% at 50% 0%, #F3DEC4 0%, #F6E7D6 60%, #EFD7BF 100%);
  border-radius: 32px;
}
.cta h2 { font-size: clamp(27px, 3.6vw, 42px); font-weight: 800; letter-spacing: -.6px; }
.cta > p { color: var(--ink-soft); margin-top: 8px; font-size: 17px; font-weight: 600; }

/* LEGAL PAGES */
.legal { max-width: 760px; margin: 0 auto; padding: clamp(40px, 7vw, 80px) var(--pad); }
.legal-back { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 700; font-size: 14px; margin-bottom: 24px; }
.legal-back:hover { color: var(--primary-deep); }
.legal h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.5px; }
.legal .updated { color: var(--ink-mute); font-size: 14px; margin: 6px 0 28px; }
.legal h2 { font-size: 20px; font-weight: 800; margin-top: 34px; margin-bottom: 10px; }
.legal p { color: var(--ink-soft); margin-bottom: 12px; }
.legal ul { color: var(--ink-soft); margin: 8px 0 14px 22px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--primary); }
.legal b { color: var(--ink); }
.legal-en { display: none; }

/* FOOTER */
.footer {
  border-top: 1px solid var(--line); padding: 38px var(--pad);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  max-width: var(--maxw); margin: 0 auto;
}
.foot-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.foot-brand img { width: 26px; height: 26px; border-radius: 7px; }
.foot-links { display: flex; gap: 22px; margin-left: auto; color: var(--ink-soft); font-weight: 600; font-size: 14px; }
.foot-links a:hover { color: var(--primary); }
.copy { color: var(--ink-mute); font-size: 13px; width: 100%; }
