/* ========== RESET & VARIABLES ========== */
:root {
  --blue: #1565C0;
  --blue-dark: #0D47A1;
  --blue-light: #42A5F5;
  --red: #D32F2F;
  --red-accent: #FF5252;
  --gold: #FFD600;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --dark: #0A0A0A;
  --dark2: #141414;
  --dark3: #1E1E1E;
  --gray: #888;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Heebo', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  direction: rtl;
}

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

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

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

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--blue);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 700;
  color: #ccc;
  transition: color 0.2s;
  letter-spacing: 0.5px;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 40px 60px;
  gap: 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(21,101,192,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(211,47,47,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #0A0A0A 0%, #0D0D1A 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 560px;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 13px;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 90px);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-title span {
  color: var(--blue-light);
  display: block;
}

.hero-sub {
  font-size: 17px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn-primary {
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  letter-spacing: 0.5px;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-primary.big { font-size: 18px; padding: 18px 48px; width: 100%; text-align: center; }
.btn-primary.full { width: 100%; text-align: center; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--blue-light); color: var(--blue-light); }

.btn-whatsapp {
  display: inline-block;
  background: #25D366;
  color: white;
  font-weight: 900;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 6px;
  width: 100%;
  text-align: center;
  margin-top: 16px;
  transition: opacity 0.2s;
}
.btn-whatsapp:hover { opacity: 0.88; }

/* ========== HERO VISUAL ========== */
.hero-visual {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.table-showcase {
  position: relative;
  width: 340px;
  height: 340px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid var(--blue);
  box-shadow: 0 0 60px rgba(21,101,192,0.4);
}

/* CSS illustration fallback */
.table-placeholder {
  display: none;
  position: relative;
  width: 300px;
  height: 300px;
}

.hero-img + .table-placeholder { display: none; }

/* ========== SECTIONS SHARED ========== */
section { padding: 90px 0; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(21,101,192,0.15);
  border: 1px solid rgba(21,101,192,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-tag.light { color: var(--gold); background: rgba(255,214,0,0.1); border-color: rgba(255,214,0,0.3); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 2px;
  margin-bottom: 48px;
  color: var(--white);
}
.section-title.light { color: var(--white); }

/* ========== ABOUT ========== */
.about { background: var(--dark2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  font-size: 16px;
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li {
  font-size: 15px;
  color: #ddd;
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--dark3);
  border: 1px solid rgba(21,101,192,0.25);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s;
}
.stat-card:hover { border-color: var(--blue); }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--blue-light);
  letter-spacing: 2px;
}
.stat-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #888;
  margin-top: 4px;
  letter-spacing: 1px;
}

/* ========== FEATURES ========== */
.features {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1a237e 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 32px 24px;
  transition: background 0.2s, transform 0.2s;
}
.feature-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
}

.fc-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--gold);
}

.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--dark3);
  border: 1px solid rgba(21,101,192,0.2);
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,101,192,0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-weight: 700; color: white; }

/* No-image placeholder */
.gallery-item.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(21,101,192,0.3);
}
.gallery-item.no-img::after { content: "💪"; }

/* ========== PRICE ========== */
.price-section {
  background: var(--dark2);
}

.price-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--dark3);
  border: 2px solid var(--blue);
  border-radius: 20px;
  padding: 52px 48px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 80px rgba(21,101,192,0.2);
}

.price-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 6px 20px;
  border-radius: 20px;
}

.price-title {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.price-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.price-currency {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  padding-top: 12px;
}

.price-num {
  font-family: var(--font-display);
  font-size: 90px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 2px;
}

.price-note {
  font-size: 13px;
  color: #888;
  margin-bottom: 32px;
}

.price-includes {
  text-align: right;
  background: rgba(21,101,192,0.1);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 28px;
}
.price-includes h4 {
  font-size: 14px;
  font-weight: 900;
  color: var(--blue-light);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.price-includes ul { list-style: none; }
.price-includes li {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 6px;
}

.payment-methods {
  text-align: right;
  margin-bottom: 32px;
}
.payment-methods h4 {
  font-size: 14px;
  font-weight: 900;
  color: #bbb;
  margin-bottom: 12px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pay-badge {
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}
.pay-badge.cash { background: rgba(76,175,80,0.2); color: #81C784; border: 1px solid rgba(76,175,80,0.3); }
.pay-badge.transfer { background: rgba(21,101,192,0.2); color: var(--blue-light); border: 1px solid rgba(21,101,192,0.3); }
.pay-badge.bit { background: rgba(156,39,176,0.2); color: #CE93D8; border: 1px solid rgba(156,39,176,0.3); }
.pay-badge.crypto { background: rgba(255,152,0,0.2); color: #FFB74D; border: 1px solid rgba(255,152,0,0.3); }

.crypto-note {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  background: rgba(255,152,0,0.06);
  border: 1px solid rgba(255,152,0,0.15);
  border-radius: 8px;
  padding: 10px 14px;
}

/* ========== CONTACT ========== */
.contact-section { background: var(--dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--blue); }
.contact-card.crypto-card { border-color: rgba(255,152,0,0.3); }

.cc-icon { font-size: 28px; }
.cc-text { display: flex; flex-direction: column; gap: 2px; }
.cc-label { font-size: 12px; color: #888; font-weight: 600; letter-spacing: 0.5px; }
.cc-value { font-size: 16px; font-weight: 900; color: var(--white); }
a.cc-value:hover { color: var(--blue-light); }

/* ========== FORM ========== */
.contact-form-wrap {
  background: var(--dark3);
  border: 1px solid rgba(21,101,192,0.25);
  border-radius: 16px;
  padding: 36px 32px;
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--white);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #aaa;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: white;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  direction: rtl;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; }

.form-success {
  text-align: center;
  color: #81C784;
  font-weight: 700;
  font-size: 15px;
  margin-top: 12px;
  padding: 12px;
  background: rgba(76,175,80,0.1);
  border-radius: 8px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark2);
  border-top: 2px solid rgba(21,101,192,0.3);
  text-align: center;
  padding: 40px 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer p {
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}
.footer-phone a { color: var(--blue-light); font-weight: 700; }
.footer-copy { font-size: 12px; color: #444; margin-top: 20px; }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content { animation: fadeUp 0.7s ease both; }
.hero-visual { animation: fadeUp 0.7s 0.2s ease both; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .navbar { padding: 14px 20px; }
  .nav-links { gap: 16px; }
  .hero { flex-direction: column; text-align: center; padding: 100px 24px 60px; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-visual { width: 100%; }
  .table-showcase { width: 280px; height: 280px; }
  .about-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .price-card { padding: 44px 24px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
