:root {
  --bg: #0a0d14;
  --bg-alt: #0f131d;
  --card: #131826;
  --card-border: rgba(212, 175, 55, 0.14);
  --gold: #d4af37;
  --gold-light: #f2d879;
  --text: #eef0f4;
  --text-muted: #9aa2b1;
  --wa: #25d366;
  --radius: 16px;
  --font-he: 'Heebo', sans-serif;
  --font-en: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-he);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html[lang="en"] body { font-family: var(--font-en); }

body {
  background-image:
    radial-gradient(circle at 15% 0%, rgba(212,175,55,0.08), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(212,175,55,0.05), transparent 35%);
}

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

h1, h2, h3 { font-weight: 700; margin: 0 0 16px; }

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

ul { list-style: none; margin: 0; padding: 0; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 20, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
}

.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--gold-light); }

.lang-switch {
  display: flex;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 4px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #14100a;
}

/* Hero */
.hero {
  position: relative;
  padding: 120px 0 90px;
  text-align: center;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 65%);
  pointer-events: none;
}

.hero__inner { position: relative; }

.eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--card-border);
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.25;
  max-width: 900px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #fff, var(--gold-light) 60%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #16130b;
  box-shadow: 0 10px 30px rgba(212,175,55,0.25);
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(212,175,55,0.35); }

.btn--ghost {
  border: 1px solid var(--card-border);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}

.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.btn--lg { padding: 16px 34px; font-size: 1.05rem; }

.icon-wa { width: 20px; height: 20px; }

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* About */
.about { padding: 90px 0; border-top: 1px solid var(--card-border); }

.about__inner { max-width: 760px; margin: 0 auto; text-align: center; }

.about h2 { font-size: 2rem; }

.about p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.9;
}

/* Services */
.services { padding: 90px 0; text-align: center; background: var(--bg-alt); }

.services h2 { font-size: 2rem; }

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 50px;
  font-size: 1.05rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  text-align: start;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover { transform: translateY(-6px); border-color: var(--gold); }

.card__icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.card h3 { font-size: 1.2rem; }

.card p { color: var(--text-muted); line-height: 1.7; margin: 0; }

/* Why */
.why { padding: 90px 0; }

.why__inner { max-width: 700px; margin: 0 auto; text-align: center; }

.why h2 { font-size: 2rem; margin-bottom: 36px; }

.why__list {
  display: grid;
  gap: 16px;
  text-align: start;
}

.why__list li {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 16px 22px;
  color: var(--text);
  font-size: 1.02rem;
  position: relative;
  padding-inline-start: 44px;
}

.why__list li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 16px;
  color: var(--gold);
  font-weight: 800;
}

/* Contact */
.contact {
  padding: 100px 0;
  text-align: center;
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
}

.contact h2 { font-size: 2.1rem; }

.contact p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 34px;
  font-size: 1.05rem;
}

.phone-line {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 480px;
  margin: 44px auto 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--card-border);
}

.contact-form {
  max-width: 480px;
  margin: 0 auto;
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: var(--card);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form .btn { align-self: center; margin-top: 6px; }

.form-status {
  text-align: center;
  min-height: 1.4em;
  font-size: 0.9rem;
  margin: 4px 0 0;
}

.form-status--ok { color: var(--wa); }
.form-status--err { color: #ff6b6b; }

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
  padding: 28px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--card-border);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  inset-inline-start: 26px;
  width: 58px;
  height: 58px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 200;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover { transform: scale(1.08); }

.whatsapp-float svg { width: 30px; height: 30px; color: #fff; }

@media (max-width: 780px) {
  .nav-links { display: none; }
  .hero { padding: 90px 0 60px; }
  .hero__stats { gap: 32px; }
}
