/* ═══════════════════════════════════════════════════════════
   FEKRA FACTORY — STYLESHEET
   Mobile-first. Desktop styles in @media (min-width: 768px)
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --blue:         #5e9bd9;
  --blue-dark:    #3a72b0;
  --blue-light:   #deeef9;
  --amber:        #e8a020;
  --amber-dark:   #b7791f;
  --amber-light:  #fef3dc;
  --slate:        #2d3748;
  --slate-mid:    #4a5568;
  --slate-light:  #edf2f7;
  --white:        #ffffff;
  --off:          #f7f5f2;
  --border:       #e2e8f0;
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow-sm:    0 2px 12px rgba(45,55,72,0.06);
  --shadow-md:    0 6px 28px rgba(45,55,72,0.10);
  --shadow-lg:    0 12px 48px rgba(45,55,72,0.14);
  --transition:   0.22s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --px-mobile:    20px;
  --px-desktop:   60px;
  --section-py:   80px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--slate); background: var(--white); overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* ── ARABIC / RTL ────────────────────────────────────────── */
[lang="ar"] { --font-body: 'Cairo', sans-serif; --font-display: 'Cairo', sans-serif; }
[dir="rtl"] body { font-family: 'Cairo', sans-serif; }
[dir="rtl"] .hero-title,
[dir="rtl"] .section-title,
[dir="rtl"] .cta-title { letter-spacing: 0; }
[dir="rtl"] .section-sub,
[dir="rtl"] .hero-sub,
[dir="rtl"] .cta-sub,
[dir="rtl"] .step-v-desc,
[dir="rtl"] .adv-desc,
[dir="rtl"] .pkg-list li { line-height: 1.9; }
[dir="rtl"] .form-field select { background-position: left 12px center; padding-left: 36px; padding-right: 14px; }
[dir="rtl"] .step-v { flex-direction: row; }
[dir="rtl"] .steps-v::before { right: 25px; left: auto; }

/* ── UTILITY ─────────────────────────────────────────────── */
.text-amber { color: var(--amber); }
.text-blue  { color: var(--blue); }

/* ── ANIMATION ───────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

/* ── CARD ────────────────────────────────────────────────── */
.card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  border: none;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: var(--blue-dark); }
.btn--primary:active { transform: scale(0.98); }
.btn--ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn--ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }
.btn--full { width: 100%; }
.btn--hero { padding: 16px 32px; font-size: 17px; font-weight: 700; }

/* ── SECTION TAGS ────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-tag--amber { color: var(--amber); }

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.8px;
  color: var(--slate);
  margin-bottom: 14px;
}
.section-title--white { color: var(--white); }

.section-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--slate-mid);
  max-width: 520px;
}
.section-sub--muted { color: #718096; }

/* ── BADGE ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-light);
  color: var(--amber-dark);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }

/* ── FORM ELEMENTS ───────────────────────────────────────── */
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12px; font-weight: 500; color: var(--slate-mid); }
.form-field input,
.form-field select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--slate);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(94,155,217,0.15); }
.form-field input::placeholder { color: #b0b8c4; }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%234a5568' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; }

.success-msg {
  display: none;
  align-items: center;
  gap: 10px;
  background: #e1f5ee;
  color: #0f6e56;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
}
.success-msg svg { width: 20px; height: 20px; flex-shrink: 0; }
.success-msg.is-visible { display: flex; }

/* ── HERO PILLS ──────────────────────────────────────────── */
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.hero-pill {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--blue-light);
  color: var(--blue-dark);
}
.hero-pill--animated {
  background: none;
  border-radius: 0;
  padding: 0 0 4px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--amber);
  border-bottom: 2px solid rgba(232,160,32,0.35);
  min-width: 4px;
}
.hero-pill--animated::after {
  content: '|';
  display: inline-block;
  margin-inline-start: 2px;
  font-weight: 300;
  animation: pill-cursor 0.65s step-end infinite;
}
@keyframes pill-cursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-price-note {
  font-size: 14px;
  color: var(--slate-mid);
  margin-top: 12px;
}
.hero-price-note strong { color: var(--amber); font-size: 18px; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--px-mobile);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(94,155,217,0.10);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-icon { width: 32px; height: 32px; flex-shrink: 0; border-radius: 8px; }
.nav-logo-text { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: #0C73B8; }
.nav-logo-text strong { color: #0C73B8; font-weight: 700; }

.nav-links { display: none; }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--blue-dark); }

.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--slate); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 61px; left: 0; right: 0;
  z-index: 190;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--px-mobile);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.mobile-menu.is-open { max-height: 320px; padding: 16px var(--px-mobile) 24px; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-link { display: block; padding: 12px 0; font-size: 16px; color: var(--slate-mid); border-bottom: 1px solid var(--border); transition: color var(--transition); }
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--blue); }
.mobile-cta { color: var(--blue); font-weight: 500; border-bottom: none; }

/* ── NAV LANGUAGE SWITCHER ───────────────────────────────── */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline-start: auto;
  margin-inline-end: 8px;
}
.lang-long { display: none; }
.lang-short { display: inline; }
.nav-lang-sep {
  font-size: 11px;
  color: var(--border);
  user-select: none;
  line-height: 1;
}
.nav-lang-btn {
  background: none;
  border: none;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-mid);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  font-family: var(--font-body);
  white-space: nowrap;
}
.nav-lang-btn:hover { color: var(--blue); }
.nav-lang-btn--active { color: var(--blue); font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--off);
  padding: 100px var(--px-mobile) 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-circle { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.hero-bg-circle--blue  { width: 500px; height: 500px; top: -150px; right: -150px; background: var(--blue-light); opacity: 0.5; }
.hero-bg-circle--amber { width: 300px; height: 300px; bottom: -80px; left: 5%; background: var(--amber-light); opacity: 0.6; }

.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 32px;
  max-width: 1200px; margin: 0 auto;
}

.hero-content-top    { display: flex; flex-direction: column; gap: 20px; }
.hero-content-bottom { display: flex; flex-direction: column; gap: 20px; }

.hero-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--slate);
}
.hero-title em { font-style: normal; color: var(--blue); }

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--slate-mid);
  max-width: 500px;
}

/* YouTube embed */
.hero-video { width: 100%; }
.video-wrapper { background: #000; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.video-label {
  position: absolute;
  top: 16px;
  right: 0;
  z-index: 2;
  padding: 8px 20px 8px 48px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
[dir="ltr"] .video-label {
  right: auto;
  left: 0;
  padding: 8px 48px 8px 20px;
  background: linear-gradient(to left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.55) 100%);
}
.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 10px 0 0;
}
.video-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
}

/* ══════════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--slate);
  padding: 28px var(--px-mobile);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 0;
}
.stat { text-align: center; }
.stat-value { display: flex; align-items: baseline; justify-content: center; gap: 2px; line-height: 1; margin-bottom: 6px; }
.stat-num { display: inline; font-family: var(--font-display); font-size: 34px; font-weight: 900; color: var(--amber); line-height: 1; }
.stat-unit { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--amber); line-height: 1; }
.stat-infinity { font-family: var(--font-display); font-size: 38px; font-weight: 900; color: var(--amber); line-height: 1; }
.stat-label { display: block; font-size: 12px; color: #718096; font-weight: 300; margin-top: 2px; }
.stat-divider { display: none; }

/* ══════════════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════════════ */
.section { padding: var(--section-py) var(--px-mobile); }
.section--dark { background: var(--slate); }
.section--off  { background: var(--off); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 48px; }

/* ══════════════════════════════════════════════════════════
   ADVANTAGES GRID
══════════════════════════════════════════════════════════ */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.adv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.adv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.adv-card--highlight { background: var(--slate); border-color: var(--slate); }
.adv-card--highlight .adv-title { color: var(--white); }
.adv-card--highlight .adv-desc  { color: #a0aec0; }

.adv-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.adv-icon--blue  { background: var(--blue-light); }
.adv-icon--amber { background: var(--amber-light); }
.adv-icon--white { background: rgba(255,255,255,0.1); }

.adv-title { font-size: 16px; font-weight: 600; color: var(--slate); margin-bottom: 8px; }
.adv-desc  { font-size: 13px; font-weight: 300; color: var(--slate-mid); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   PACKAGE GRID
══════════════════════════════════════════════════════════ */
.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pkg-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition);
}
.pkg-card:hover { border-color: var(--amber); }

.pkg-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--amber);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 10px;
}
.pkg-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pkg-list { display: flex; flex-direction: column; gap: 8px; }
.pkg-list li {
  font-size: 13px;
  font-weight: 300;
  color: #a0aec0;
  padding-right: 14px;
  position: relative;
  line-height: 1.6;
}
.pkg-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--amber);
  font-size: 11px;
  top: 1px;
}
[dir="ltr"] .pkg-list li { padding-right: 0; padding-left: 14px; }
[dir="ltr"] .pkg-list li::before { right: auto; left: 0; }

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS — VERTICAL STEPS
══════════════════════════════════════════════════════════ */
.steps-v {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.steps-v::before {
  content: '';
  position: absolute;
  top: 26px; bottom: 26px;
  right: 25px;
  width: 2px;
  background: var(--blue-light);
  z-index: 0;
}

.step-v {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  padding: 0 0 32px;
  position: relative;
  z-index: 1;
}
[dir="ltr"] .step-v { flex-direction: row-reverse; }

.step-v-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.step-v-num--1 { background: var(--blue);      color: var(--white); }
.step-v-num--2 { background: var(--amber);     color: var(--white); }
.step-v-num--3 { background: var(--blue-dark); color: var(--white); }
.step-v-num--4 { background: var(--amber-dark);color: var(--white); }
.step-v-num--5 { background: var(--slate);     color: var(--white); }
.step-v-num--6 { background: var(--blue);      color: var(--white); }

.step-v-content { flex: 1; padding-top: 10px; }
.step-v-title { font-size: 16px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.step-v-desc  { font-size: 13px; font-weight: 300; color: var(--slate-mid); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   INFO GRID
══════════════════════════════════════════════════════════ */
.info-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--border);
}
.info-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.info-card p { font-size: 14px; font-weight: 300; color: var(--slate-mid); line-height: 1.75; }

/* ══════════════════════════════════════════════════════════
   CTA / CONTACT
══════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--slate);
  padding: var(--section-py) var(--px-mobile);
  position: relative;
  overflow: hidden;
}
.cta-bg-circle { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-bg--blue  { width: 360px; height: 360px; top: -100px; right: -100px; background: rgba(94,155,217,0.07); }
.cta-bg--amber { width: 200px; height: 200px; bottom: -60px; left: 25%; background: rgba(232,160,32,0.07); }

.cta-inner { display: flex; flex-direction: column; gap: 40px; position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.cta-title em { font-style: normal; color: var(--amber); }
.cta-sub { font-size: 16px; color: #a0aec0; font-weight: 300; line-height: 1.75; margin-bottom: 28px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.cta-trust { display: flex; flex-direction: column; gap: 10px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #718096; }
.trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }

.cta-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border var(--transition), box-shadow var(--transition);
}
.cta-form h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); }
.cta-form > p { font-size: 13px; color: #718096; }
.cta-form .form-field label { color: #a0aec0; }
.cta-form .form-field input,
.cta-form .form-field select { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); color: var(--white); }
.cta-form .form-field input::placeholder { color: #4a5568; }
.cta-form .form-field input:focus,
.cta-form .form-field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(94,155,217,0.2); }
.cta-form .form-field select option { background: var(--slate); color: var(--white); }

#ctaForm { transition: border 0.3s ease, box-shadow 0.3s ease; }
#ctaForm.is-highlighted { border: 1.5px solid var(--blue) !important; box-shadow: 0 0 0 4px rgba(94,155,217,0.2) !important; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer { background: #1a202c; padding: 40px var(--px-mobile); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #0C73B8; }
.footer-logo span { color: #0C73B8; }
.footer-tagline { font-size: 12px; color: #4a5568; font-weight: 300; margin-top: 4px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { font-size: 13px; color: #718096; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-addr-label { font-size: 11px; font-weight: 500; color: #4a5568; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.footer-addr-text { font-size: 13px; color: #718096; line-height: 1.7; }
.footer-copy { font-size: 12px; color: #4a5568; }


/* ══════════════════════════════════════════════════════════
   DESKTOP — min-width: 768px
══════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  :root { --px-mobile: 40px; }

  /* Nav */
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
  .nav-links { display: flex; align-items: center; gap: 24px; }
  .nav-links a { font-size: 14px; font-weight: 400; color: var(--slate-mid); transition: color var(--transition); }
  .nav-links a:hover { color: var(--blue); }
  #navbar { padding: 16px var(--px-desktop); }
  .nav-right { gap: 0; }

  /* Lang switcher: centered on desktop */
  .nav-lang {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-inline-start: 0;
    margin-inline-end: 0;
  }
  .lang-long { display: inline; }
  .lang-short { display: none; }

  /* Hero */
  .hero { padding: 120px var(--px-desktop) 100px; }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px 60px;
    align-items: start;
  }
  .hero-content-top    { grid-column: 1; grid-row: 1; }
  .hero-content-bottom { grid-column: 1; grid-row: 2; }
  .hero-video          { grid-column: 2; grid-row: 1 / 3; align-self: center; }
  .hero-title { font-size: 52px; }

  /* Stats */
  .stats-bar {
    padding: 32px var(--px-desktop);
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
  }
  .stat-divider { display: block; width: 1px; height: 44px; background: rgba(255,255,255,0.1); }
  .stat-num { font-size: 38px; }

  /* Sections */
  .section { padding: var(--section-py) var(--px-desktop); }
  .section-title { font-size: 42px; }

  /* Advantages */
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }

  /* Package */
  .package-grid { grid-template-columns: repeat(2, 1fr); }

  /* Steps vertical */
  .steps-v { padding-right: 0; }
  .steps-v::before { top: 26px; bottom: 26px; }

  /* Info grid */
  .info-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA */
  .cta-inner { flex-direction: row; gap: 80px; align-items: center; }
  .cta-content  { flex: 1; }
  .cta-form-wrap { flex: 1; }
  .cta-title { font-size: 44px; }
  .cta-trust { flex-direction: row; gap: 20px; }
  .cta-form { padding: 36px; }

  /* Footer */
  footer { padding: 48px var(--px-desktop); }
  .footer-inner { flex-direction: row; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
}

/* ══════════════════════════════════════════════════════════
   LARGE DESKTOP — min-width: 1100px
══════════════════════════════════════════════════════════ */
@media (min-width: 1100px) {
  .hero-title { font-size: 60px; }
  .advantages-grid { grid-template-columns: repeat(4, 1fr); }
  .package-grid { grid-template-columns: repeat(3, 1fr); }
  .info-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── CONCEPT FIELD ───────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 500; color: #a0aec0; }
.form-group select,
.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--white);
  background: rgba(255,255,255,0.07);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--font-body);
  box-sizing: border-box;
}
.form-group select:focus,
.form-group input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(94,155,217,0.2); }
.form-group input::placeholder { color: #4a5568; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%234a5568' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; }
.form-group select option { background: var(--slate); color: var(--white); }
[dir="rtl"] .form-group select { background-position: left 12px center; padding-left: 36px; padding-right: 14px; }

.char-counter {
  display: block;
  font-size: 12px;
  color: #4a5568;
  text-align: right;
  margin-top: 4px;
}

.char-limit-msg {
  display: block;
  font-size: 12px;
  color: #c0392b;
  margin-top: 2px;
}
