:root {
  --bg: #050505;
  --bg-soft: #0d0d0f;
  --card: rgba(19, 19, 22, 0.82);
  --card-solid: #121216;
  --gold: #f5b301;
  --gold-soft: #ffe08a;
  --text: #f7f7f7;
  --muted: #b7b7b7;
  --line: rgba(245, 179, 1, 0.25);
  --danger: #ff5959;
  --success: #69e189;
  --radius: 24px;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.55);
}

[dir="rtl"] {
  font-family: 'Inter', 'Outfit', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 179, 1, 0.16), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(245, 179, 1, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 1200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.section-padding {
  padding: 88px 6vw;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, .72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.navbar {
  min-height: 76px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--gold);
  color: #000;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), #8d6200);
  color: #0a0a0a;
  font-weight: 950;
  letter-spacing: -1px;
  box-shadow: 0 8px 30px rgba(245, 179, 1, .35);
}

.brand strong {
  display: block;
  letter-spacing: .08em;
}

.brand small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

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

.menu-btn {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px 12px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 14px;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: .92;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

h1 span,
h2 span {
  color: var(--gold);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: .95;
  letter-spacing: -0.06em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.hero-text,
.section-head p,
.split-section p,
.result-card p,
.faq-list p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), #d18f00);
  color: #070707;
  box-shadow: 0 14px 40px rgba(245, 179, 1, .25);
}

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

.btn.small {
  padding: 12px 18px;
  font-size: 13px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 650px;
}

.hero-stats div,
.feature-card,
.program-card,
.result-card,
.booking-card,
.proof-card,
.quote-card,
.progress-box,
.faq-list details,
.contact-card {
  border: 1px solid rgba(255,255,255,.08);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 18px;
  border-radius: 18px;
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
}

.glow-card {
  position: relative;
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(245,179,1,.5), rgba(255,255,255,.06), rgba(245,179,1,.2));
  box-shadow: 0 30px 120px rgba(245, 179, 1, .18);
  transform: rotate(1.5deg);
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 36px;
  background: linear-gradient(135deg, transparent, rgba(245,179,1,.4), transparent);
  filter: blur(18px);
  z-index: -1;
}

.glow-card img {
  border-radius: 26px;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  right: -10px;
  bottom: 8%;
  background: #080808;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.floating-badge span {
  display: block;
  color: var(--muted);
}

.floating-badge strong {
  color: var(--gold);
  font-size: 24px;
}

.logo-strip {
  padding-top: 0;
}

.logo-strip img {
  width: min(100%, 1100px);
  margin: auto;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

.feature-grid,
.program-grid,
.proof-grid,
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.program-card,
.result-card,
.booking-card,
.proof-card,
.quote-card,
.progress-box,
.faq-list details,
.contact-card {
  border-radius: var(--radius);
  padding: 26px;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after,
.program-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(245,179,1,.12);
  right: -40px;
  top: -40px;
  filter: blur(4px);
}

.number {
  color: var(--gold);
  font-size: 42px;
  font-weight: 950;
  opacity: .75;
}

.feature-card p,
.program-card li,
.proof-card p,
.booking-card p,
.small-note {
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 40px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  color: var(--muted);
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0a0a0a;
  background: var(--gold);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
  font-size: 12px;
}

[dir="rtl"] .check-list li {
  padding-left: 0;
  padding-right: 30px;
}

[dir="rtl"] .check-list li::before {
  left: auto;
  right: 0;
}

.quote-card {
  background: linear-gradient(135deg, rgba(245,179,1,.2), rgba(18,18,22,.8));
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-card span {
  font-size: 90px;
  color: var(--gold);
  line-height: .6;
}

.quote-card p {
  font-size: 34px;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.04em;
}

.quote-card strong {
  color: var(--gold);
  text-transform: uppercase;
}

.program-grid,
.proof-grid,
.contact-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
}

.program-card.featured {
  border-color: rgba(245,179,1,.65);
  transform: translateY(-16px);
}

.program-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.program-top span {
  background: rgba(245,179,1,.15);
  color: var(--gold-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
}

.program-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.program-card li::before {
  content: "» ";
  color: var(--gold);
  font-weight: 900;
}

.program-card .btn {
  margin-top: auto;
}

.smart-panel {
  background: linear-gradient(180deg, transparent, rgba(245,179,1,.06), transparent);
}

.smart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 24px;
  align-items: start;
}

[dir="rtl"] .section-head.left {
  text-align: right;
}

.client-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold-soft);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(5,5,5,.68);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 15px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(245,179,1,.65);
  box-shadow: 0 0 0 4px rgba(245,179,1,.12);
}

.result-card {
  position: sticky;
  top: 100px;
  border-color: var(--line);
}

.result-card h3 {
  color: var(--gold);
  font-size: 30px;
  line-height: 1.1;
}

.meter {
  height: 14px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  overflow: hidden;
  margin: 18px 0;
  border: 1px solid rgba(255,255,255,.08);
}

.meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #805400, var(--gold), var(--gold-soft));
  border-radius: inherit;
  transition: width .45s ease;
}

.calendar-tools,
.progress-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.calendar-tools label {
  max-width: 360px;
  width: 100%;
}

.progress-box > div:first-child {
  min-width: 220px;
}

.progress-box strong {
  display: block;
  font-size: 22px;
  color: var(--gold);
}

.progress-box span {
  color: var(--muted);
}

.progress-box .meter {
  flex: 1;
  margin: 0;
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.week-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 18px;
  min-height: 174px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.week-card:hover {
  transform: translateY(-3px);
  border-color: var(--line);
}

.week-card.done {
  border-color: rgba(105,225,137,.45);
  background: rgba(105,225,137,.08);
}

.week-card h3 {
  color: var(--gold);
  margin-bottom: 8px;
}

.week-card p {
  color: var(--muted);
  line-height: 1.55;
  min-height: 52px;
}

.week-card button {
  width: 100%;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(245,179,1,.12);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.booking-section {
  background: rgba(255,255,255,.025);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.booking-card {
  display: grid;
  gap: 18px;
}

.premium-card {
  background: linear-gradient(135deg, rgba(245,179,1,.18), rgba(18,18,22,.92));
}

.placeholder {
  height: 230px;
  border-radius: 20px;
  border: 1px dashed rgba(245,179,1,.45);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(245,179,1,.08), rgba(255,255,255,.03)),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.035) 0 10px, transparent 10px 20px);
  margin-bottom: 18px;
}

.upload-card input {
  margin: 12px 0;
}

#previewImage {
  display: none;
  width: 100%;
  max-height: 270px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: auto;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-weight: 950;
  color: var(--gold-soft);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  padding: 0 26px 24px;
  margin: 0;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  color: var(--gold);
}

.contact-card {
  display: grid;
  gap: 8px;
  place-items: center;
  min-height: 180px;
  transition: transform .25s ease, border-color .25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}

.contact-card span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #080808;
  font-size: 30px;
  font-weight: 950;
}

.contact-card p {
  margin: 0;
  font-size: 16px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  background: #25d366;
  color: #061006;
  font-weight: 950;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(37,211,102,.35);
}

.footer {
  padding: 34px 6vw;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer strong {
  color: var(--gold);
  letter-spacing: .12em;
}

@media (max-width: 1040px) {
  .hero,
  .split-section,
  .smart-layout,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .week-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-grid,
  .proof-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .program-card.featured {
    transform: none;
  }

  .result-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .section-padding {
    padding: 64px 5vw;
  }

  .menu-btn {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 5vw;
    right: 5vw;
    top: 82px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(10,10,10,.95);
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-stats,
  .feature-grid,
  .week-grid,
  .two-cols,
  .calendar-tools,
  .progress-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 38px;
  }

  .floating-badge {
    right: 10px;
  }

  .hero-actions,
  .form-actions {
    display: grid;
  }
}
