:root {
  --primary: #f29f1f;
  --primary-dark: #d97f00;
  --secondary: #e63946;
  --bg: #050c18;
  --card-bg: #0c1524;
  --text: #f5f7fb;
  --muted: #a9b3c7;
  --border: #1b2233;
  --accent: #0ea5e9;
  --error: #f97373;
  --success: #22c55e;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #18253d 0, #050c18 40%, #020617 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page { min-height: 100vh; display: flex; flex-direction: column; }

.navbar {
  padding: 16px 6vw 8px;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-left { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 52px; height: 52px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  object-fit: contain;
}
.logo-mark span { font-weight: 700; letter-spacing: 2px; font-size: 12px; }
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-text-main { font-weight: 600; font-size: 16px;white-space: nowrap; }
.logo-text-sub { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); white-space: nowrap; }

.navbar-cta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); flex-wrap: wrap; justify-content: flex-end; }
.navbar-cta .pill {
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}
.navbar-cta .pill span { color: var(--primary); font-weight: 600; margin-left: 4px; }

.lang-switch {
  display: inline-flex; gap: 6px; align-items: center;
  padding: 4px 8px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(15,23,42,0.4);
}
.lang-switch a {
  padding: 6px 10px; border-radius: 999px;
  font-size: 12px; color: var(--text);
  border: 1px solid transparent;
}
.lang-switch a.active {
  background: rgba(242,159,31,0.16);
  border-color: rgba(242,159,31,0.35);
}

.btn-primary {
  padding: 10px 18px; border-radius: 999px; border: none; outline: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0f172a;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 10px 30px rgba(242, 159, 31, 0.35);
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 40px rgba(242, 159, 31, 0.4); }

.btn-outline {
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid rgba(248,250,252,0.25);
  background: transparent; color: var(--text); cursor: pointer;
  font-size: 12px;
  display: inline-flex; align-items: center; gap: 6px;
}

.hero {
  padding: 40px 6vw 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 40px; align-items: center;
}
.hero-left { max-width: 640px; }
.hero-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.7px;
  color: var(--accent);
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.hero-eyebrow::before { content:""; width: 30px; height: 1px; background: linear-gradient(to right, var(--accent), transparent); }
.hero-title { font-size: clamp(26px, 4vw, 36px); line-height: 1.2; margin: 0 0 12px; font-weight: 700; }
.title-year { color: var(--primary); }
.hero-subtitle { font-size: 14px; color: var(--muted); max-width: 520px; }
.hero-subtitle strong { color: var(--text); font-weight: 600; }

.hero-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 22px 0; }
.metric-card {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top left, #ffffff0a 0, #0b1120 40%, #020617 100%);
  padding: 12px 14px;
}
.metric-label { font-size: 11px; color: var(--muted); }
.metric-value { margin-top: 6px; font-size: 16px; font-weight: 600; }
.metric-value span { font-size: 11px; color: var(--muted); margin-left: 4px; }

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note { font-size: 11px; color: var(--muted); }
.hero-note span { color: var(--primary); font-weight: 500; }

.hero-right { position: relative; }
.hero-card {
  background: radial-gradient(circle at top, #1d2a3f 0, #050816 45%, #020617 100%);
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 16px 16px 10px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
}
.hero-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; font-size: 11px; color: var(--muted); }
.hero-card-header span:first-child { text-transform: uppercase; letter-spacing: 1px; font-size: 10px; }
.hero-card-tag {
  padding: 3px 8px; border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.35);
  font-size: 10px;
}
.hero-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at top, #1e293b 0, #020617 55%);
}
.hero-image-wrapper img { width: 100%; height: auto; display: block; }
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 12px;
}
.hero-card-footer { margin-top: 8px; display: flex; justify-content: space-between; gap: 8px; font-size: 10px; color: var(--muted); }
.hero-card-footer span strong { color: var(--text); }

.section { padding: 24px 6vw; }
.section-narrow { max-width: 1100px; margin: 0 auto; }
.section-title { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.section-sub { font-size: 13px; color: var(--muted); margin-bottom: 12px; }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; font-size: 11px; }
.pill-row .pill-item { padding: 6px 10px; border-radius: 999px; border: 1px solid var(--border); background: rgba(15,23,42,0.85); }
.pill-item strong { color: var(--primary); }

.video-section { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 20px; align-items: flex-start; }
.video-wrapper {
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #020617;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
}
.video-wrapper iframe { width: 100%; min-height: 260px; border: 0; }

.social-links { margin-top: 12px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; font-size: 11px; }
.social-item {
  padding: 7px 9px; border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.9);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.social-item span:first-child { display: flex; align-items: center; gap: 6px; }
.social-icon {
  width: 18px; height: 18px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; color: white;
}
.social-facebook { background: #1877f2; }
.social-linkedin { background: #0a66c2; }
.social-instagram { background: radial-gradient(circle at 30% 0, #fdf497 0, #fd5949 45%, #d6249f 70%, #285aeb 90%); }
.social-tiktok { background: #000; }

.form-card {
  margin-top: 20px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, #1e293b 0, #020617 55%);
  padding: 18px 18px 16px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.95);
}
.form-header { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.form-header h3 { margin: 0; font-size: 15px; }
.form-header p { margin: 0; font-size: 11px; color: var(--muted); max-width: 620px; }

.badge-48h {
  padding: 6px 10px; border-radius: 999px;
  background: rgba(248, 113, 113, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.5);
  font-size: 11px; color: #fecaca;
}
.badge-48h strong { color: #f97373; }

form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 14px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group.full { grid-column: 1 / -1; }

label { font-size: 11px; color: var(--muted); }
label span.required { color: var(--primary); }

input, select {
  width: 100%;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text);
  font-size: 13px;
  outline: none;
}
input::placeholder { color: #64748b; }
input:focus, select:focus { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5); }

.field-hint { font-size: 10px; color: var(--muted); }

.phone-row { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr); gap: 6px; }
.email-row { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr); gap: 6px; }

.btn-secondary {
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: rgba(15, 23, 42, 0.98);
  color: var(--text);
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.btn-secondary[disabled] { opacity: 0.6; cursor: default; }

.checkbox-row { display: flex; align-items: flex-start; gap: 8px; font-size: 11px; color: var(--muted); }
.checkbox-row input { width: 14px; height: 14px; margin-top: 3px; }

.submit-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 4px; }
.status-message { font-size: 11px; color: var(--muted); }
.status-message.error { color: var(--error); }
.status-message.success { color: var(--success); }

.footer {
  padding: 14px 6vw 20px;
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid rgba(30, 64, 175, 0.4);
  margin-top: 28px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.footer-inner span strong { color: var(--primary); }

.rtl body { direction: rtl; }
.rtl .navbar-left { flex-direction: row-reverse; }
.rtl .hero { direction: rtl; }
.rtl .hero-eyebrow { letter-spacing: 0.5px; }
.rtl .hero-eyebrow::before { display: none; }
.rtl .navbar-cta { justify-content: flex-start; }
.rtl .hero-card-footer { flex-direction: column; align-items: flex-end; }
.rtl .social-item { flex-direction: row-reverse; }
.rtl .social-item span:first-child { flex-direction: row-reverse; }
.rtl .submit-row { flex-direction: row-reverse; }

@media (max-width: 900px) {
  .hero { grid-template-columns: minmax(0, 1fr); padding-top: 24px; }
  .hero-right { order: -1; }
  .video-section { grid-template-columns: minmax(0, 1fr); }
  form { grid-template-columns: minmax(0, 1fr); }
  .email-row, .phone-row { grid-template-columns: minmax(0, 1fr); }
  .navbar { padding-inline: 4vw; }
  .hero, .section { padding-inline: 4vw; }
}

@media (max-width: 768px) {
.navbar{
  flex-direction: column;
}
.navbar-left{
  align-items: center;
}
.navbar-cta{
  flex-wrap: nowrap;
}
.lang-switch{
  display: grid;
  position: absolute;
  left: 5px;
  top: 0;
  border-radius: 0 0 100px 100px;
}
.navbar-cta .pill{
  padding: 7px 10px;
}
}