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

:root {
  --black: #080808;
  --dark: #0f0f0f;
  --card: #141414;
  --border: rgba(255,255,255,0.07);
  --red: #e02020;
  --red-dark: #b51818;
  --gold: #c9a84c;
  --white: #f2f2f2;
  --gray: #707070;
  --light: #aaaaaa;
  --font: 'Heebo', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  direction: rtl;
  text-align: right;
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* LAYOUT */
.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.section { padding: 96px 0; }
.section-alt { background: var(--dark); }

/* TYPOGRAPHY */
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.section-note {
  margin-top: 40px;
  color: var(--light);
  font-size: 1rem;
  border-right: 3px solid var(--red);
  padding-right: 16px;
  line-height: 1.7;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.btn:active { transform: scale(0.97); }

.btn-nav {
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.88rem;
  gap: 8px;
}
.btn-nav:hover { background: var(--red-dark); }

.btn-hero {
  background: var(--red);
  color: var(--white);
  font-size: 1.1rem;
  padding: 18px 40px;
  font-weight: 900;
  box-shadow: 0 4px 28px rgba(224,32,32,0.28);
}
.btn-hero:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 36px rgba(224,32,32,0.45);
  transform: translateY(-2px);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  transition: background 0.3s, padding 0.3s;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(16px);
  padding: 14px 32px;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 4px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(224,32,32,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-bg-text {
  position: absolute;
  font-size: clamp(120px, 23vw, 300px);
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  user-select: none;
  letter-spacing: 12px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}

.hero-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.55);
  margin-bottom: 44px;
  line-height: 1.8;
}

/* LIST GRID (FOR WHO) */
.list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.list-item:hover { border-color: rgba(224,32,32,0.25); }

.list-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.list-item p {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--white);
}

/* STEPS */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 40px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.step:last-child { border-bottom: none; }
.step:hover { background: #161616; }

.step-num {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 3px;
  flex-shrink: 0;
  padding-top: 4px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.step p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ABOUT */
.about-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
}

.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 2/3;
  max-height: 440px;
  border: 1px solid var(--border);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-text p {
  color: var(--light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-belief {
  color: var(--white) !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  margin-top: 8px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--light);
  font-size: 0.9rem;
  margin-top: 8px;
  transition: color 0.2s;
}
.instagram-link:hover { color: var(--white); }

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 30px;
  transition: border-color 0.2s;
}
.testimonial:hover { border-color: rgba(255,255,255,0.12); }

.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 18px; }

.testimonial p {
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial span {
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 600;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(180deg, #0d0505 0%, var(--black) 100%);
  border-top: 1px solid rgba(224,32,32,0.1);
}

.cta-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-desc {
  color: var(--light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-or {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 28px 0 20px;
}

/* LEAD FORM */
.lead-form { width: 100%; max-width: 560px; margin: 0 auto; }

.lead-form-row {
  display: flex;
  gap: 12px;
}

.lead-form-row input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  direction: rtl;
  transition: border-color 0.2s;
}
.lead-form-row input::placeholder { color: rgba(255,255,255,0.3); }
.lead-form-row input:focus { outline: none; border-color: rgba(224,32,32,0.4); }

.lead-submit { flex-shrink: 0; padding: 16px 28px; }

.form-success {
  display: none;
  color: #4caf50;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 20px;
  text-align: center;
}

/* LOGO IMAGE */
.logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-logo {
  height: 72px;
  width: 72px;
  opacity: 0.9;
}

/* GALLERY */
.gallery-section { background: var(--dark); }

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 680px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item { height: 200px; }
}

/* FOOTER */
.footer {
  background: var(--dark);
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.footer-links a { color: var(--gray); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { color: rgba(255,255,255,0.18); font-size: 0.78rem; }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 99;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* PLAN BUILDER */
.plan-subtitle {
  color: var(--light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
  line-height: 1.8;
}

.plan-wizard { max-width: 720px; margin: 0 auto; }

.plan-question {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.plan-q-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.plan-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plan-opt {
  background: var(--card);
  border: 1.5px solid var(--border);
  color: var(--light);
  padding: 11px 20px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  direction: rtl;
}
.plan-opt:hover { border-color: var(--gold); color: var(--white); }
.plan-opt.selected { background: var(--gold); border-color: var(--gold); color: #111; font-weight: 700; }

.plan-build-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s, box-shadow 0.2s;
}
.plan-build-btn.ready { opacity: 1; pointer-events: auto; }

.plan-result { max-width: 720px; margin: 0 auto; }

.plan-result-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 48px;
  animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.plan-badge {
  display: inline-block;
  background: var(--gold);
  color: #111;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.plan-result-card h3 {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 36px;
  letter-spacing: -0.3px;
}

.plan-res-row {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.plan-res-row h4 {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.plan-res-row p { color: var(--light); font-size: 0.97rem; line-height: 1.75; }

.plan-week-block { margin-bottom: 14px; }

.plan-week-day {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 6px;
}

.plan-week-items {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plan-week-items li {
  color: var(--gray);
  font-size: 0.92rem;
  padding-right: 16px;
  position: relative;
  line-height: 1.65;
}
.plan-week-items li::before {
  content: '›';
  position: absolute;
  right: 0;
  color: var(--gold);
  font-weight: 700;
}

.plan-result-cta-block {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.plan-cta-text {
  color: var(--light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.plan-wa-btn { width: 100%; justify-content: center; }

.plan-restart-btn {
  display: block;
  width: 100%;
  margin-top: 14px;
  background: none;
  border: none;
  color: var(--gray);
  font-family: var(--font);
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
  padding: 10px;
  transition: color 0.2s;
  direction: rtl;
}
.plan-restart-btn:hover { color: var(--white); }

@media (max-width: 680px) {
  .plan-result-card { padding: 28px 20px; }
  .plan-opt { padding: 9px 15px; font-size: 0.9rem; }
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-width: 380px; }
  .testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .list-grid { grid-template-columns: 1fr; }
  .navbar { padding: 14px 20px; }
  .logo { font-size: 0.9rem; }
  .btn-nav { padding: 9px 14px; font-size: 0.82rem; }
}

@media (max-width: 540px) {
  .hero { padding: 120px 20px 80px; }
  .step { padding: 28px 24px; gap: 20px; }
  .lead-form-row { flex-direction: column; }
  .lead-submit { width: 100%; justify-content: center; }
  .hero-title { letter-spacing: -0.5px; }
}
