@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #080808;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(249,115,22,.3); border-radius: 3px; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: 'Inter', system-ui, sans-serif; cursor: pointer; }
input, select, textarea { font-family: 'Inter', system-ui, sans-serif; }

/* ── NAV ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,8,.78);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-img {
  height: 46px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: #fff;
}
.nav-logo-text .elec { color: #F97316; }
.nav-links {
  display: flex;
  gap: 4px;
}
.nav-link {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  transition: color .18s, background .18s;
  border: none;
  background: none;
  letter-spacing: -.1px;
  display: block;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.05); }
.nav-link[aria-current="page"] { color: #F97316; background: rgba(249,115,22,.15); }
.nav-cta {
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  background: #F97316;
  border: none;
  transition: filter .18s, transform .18s;
  letter-spacing: -.1px;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* ── GLASS ──────────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.glass-hover {
  transition: background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.glass-hover:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(249,115,22,.25);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

/* ── BADGE ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: rgba(249,115,22,.15);
  color: #F97316;
  border: 1px solid rgba(249,115,22,.22);
  margin-bottom: 20px;
}
.badge svg { width: 12px; height: 12px; }

/* ── TYPE ──────────────────────────────────────────── */
.h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.0;
}
.h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
}
.h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.5px;
}
.accent { color: #F97316; }
.text-muted { color: rgba(255,255,255,.55); }
.text-sub { color: rgba(255,255,255,.35); }

/* ── LAYOUT ──────────────────────────────────────────── */
.section {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  margin: 0 32px;
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  background: #F97316;
  border: none;
  transition: filter .2s, transform .2s;
  letter-spacing: -.1px;
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  transition: background .2s, border-color .2s, transform .2s;
  letter-spacing: -.1px;
}
.btn-secondary:hover { background: rgba(255,255,255,.09); border-color: rgba(249,115,22,.3); transform: translateY(-1px); }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-ambient {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}
.hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 24px 0 36px;
  max-width: 480px;
}
.hero-sub {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-top: 16px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── PANEL MOCKUP ──────────────────────────────────────────── */
.panel-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 460px;
}
.panel-ambient {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(249,115,22,.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.panel-mockup {
  width: 286px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14);
  padding: 26px;
  box-shadow: 0 40px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04);
  position: relative;
  z-index: 2;
}
.panel-title-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.panel-conform {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(249,115,22,.12);
  color: #F97316;
  border: 1px solid rgba(249,115,22,.22);
  margin-bottom: 20px;
}
.panel-conform svg { width: 12px; height: 12px; }
.panel-breakers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 20px;
}
.breaker {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
}
.breaker-sw {
  width: 7px; height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
}
.breaker.on .breaker-sw {
  background: #F97316;
  box-shadow: 0 0 8px rgba(249,115,22,.7);
}
.breaker.off .breaker-sw { background: rgba(255,255,255,.15); }
.breaker-name {
  font-size: 10px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}
.panel-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.panel-voltage-num {
  font-size: 24px;
  font-weight: 800;
  color: #F97316;
  letter-spacing: -1px;
  display: block;
}
.panel-voltage-hz {
  font-size: 10px;
  color: rgba(255,255,255,.35);
  margin-top: 1px;
}
.panel-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,.45);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,.7);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* ── STATS ──────────────────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 48px 0;
}
.stat-item {
  padding: 24px 20px;
  border-radius: 16px;
  text-align: center;
}
.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  color: #F97316;
}
.stat-icon svg { width: 26px; height: 26px; }
.stat-label { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -.3px; }
.stat-sub { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 3px; }

/* ── FEAT GRID ──────────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.feat-card { padding: 28px; border-radius: 20px; }
.feat-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: #F97316;
}
.feat-icon svg { width: 26px; height: 26px; }
.feat-card-short {
  font-size: 12px;
  font-weight: 600;
  color: #F97316;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 10px;
  display: block;
}
.feat-card p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ── SERVICES PAGE ──────────────────────────────────────────── */
.page-intro {
  padding-top: 120px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, rgba(249,115,22,.06) 0%, transparent 100%);
}
.page-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}
.service-card { padding: 32px; border-radius: 20px; }
.service-card-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: #F97316;
}
.service-card-icon svg { width: 28px; height: 28px; }
.service-card-short {
  font-size: 12px;
  font-weight: 600;
  color: #F97316;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 8px;
  display: block;
}
.service-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-top: 10px;
}
.service-urgent {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(249,115,22,.04)) !important;
  border-color: rgba(249,115,22,.3) !important;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.service-urgent .service-card-icon { margin-bottom: 0; flex-shrink: 0; }

/* ── CONTACT ──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.contact-form { padding: 36px; border-radius: 20px; }
.form-title { font-size: 19px; font-weight: 700; letter-spacing: -.5px; margin-bottom: 24px; }
.form-field { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.55); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 14px;
  transition: border-color .18s, background .18s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(249,115,22,.5);
  background: rgba(249,115,22,.06);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.35); }
.form-select option { background: #1a1a1a; color: #fff; }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-submit { width: 100%; justify-content: center; margin-top: 4px; }
.form-hint { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 12px; text-align: center; }

/* Info cards */
.info-cards { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  padding: 22px 24px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.info-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #F97316;
}
.info-card-icon svg { width: 22px; height: 22px; }
.info-card-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 3px;
}
.info-card-value { font-size: 15px; font-weight: 600; color: #fff; }
.info-card-sub { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; }
.info-card-urgent {
  background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(249,115,22,.04));
  border-color: rgba(249,115,22,.28);
}
.info-card-urgent .info-card-icon { background: rgba(249,115,22,.2); }

/* ── WHY US ──────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.why-card {
  padding: 24px;
  border-radius: 16px;
}
.why-card svg { width: 28px; height: 28px; color: #F97316; margin-bottom: 12px; display: block; }
.why-card-title { font-size: 15px; font-weight: 700; letter-spacing: -.3px; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: rgba(0,0,0,.5);
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 60px 32px 40px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand-logo .icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #F97316, #EA580C);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.footer-brand-logo .icon svg { width: 18px; height: 18px; color: #000; }
.footer-brand-logo .name { font-size: 18px; font-weight: 800; letter-spacing: -.5px; }
.footer-brand-logo .name .elec { color: #F97316; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 280px; }
.footer-brand-email { display: inline-block; margin-top: 16px; font-size: 13px; color: #F97316; font-weight: 600; }
.footer-brand-email:hover { color: #FB923C; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  transition: color .15s;
}
.footer-link:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── SUCCESS STATE ──────────────────────────────────────────── */
.form-success {
  padding: 48px 40px;
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(249,115,22,.10), rgba(249,115,22,.03));
  border-color: rgba(249,115,22,.25);
  display: none;
}
.form-success.show { display: block; }
.form-success svg { width: 48px; height: 48px; color: #F97316; margin: 0 auto 16px; display: block; }
.form-success p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin-top: 8px; }
.form-success a { color: #F97316; }

/* ── COOKIE BANNER ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 32px;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.10);
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p {
  flex: 1;
  min-width: 220px;
  font-size: 13px;
  color: rgba(255,255,255,.60);
  line-height: 1.6;
  margin: 0;
}
.cookie-banner p a { color: #F97316; text-decoration: underline; }
.cookie-banner p a:hover { color: #FB923C; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: #F97316;
  color: #000;
  border: none;
  cursor: pointer;
  transition: filter .18s;
}
.cookie-accept:hover { filter: brightness(1.1); }
.cookie-refuse {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.60);
  border: 1px solid rgba(255,255,255,.12);
  cursor: pointer;
  transition: background .18s, color .18s;
}
.cookie-refuse:hover { background: rgba(255,255,255,.10); color: #fff; }

/* ── BURGER ──────────────────────────────────────────── */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .18s, border-color .18s;
}
.burger:hover { background: rgba(255,255,255,.09); border-color: rgba(249,115,22,.3); }
.burger svg { width: 20px; height: 20px; color: #fff; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .burger { display: inline-flex; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(8,8,8,.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.10);
    padding: 8px 20px 16px;
    gap: 2px;
    z-index: 99;
  }
  .nav-links.open li { border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open .nav-link {
    display: block;
    width: 100%;
    padding: 12px 4px;
    font-size: 16px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .panel-wrap { display: none; }
  .h1 { letter-spacing: -2px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .service-urgent { flex-direction: column; gap: 16px; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 60px 20px; }
  .footer { padding: 40px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 0 20px; }
}

/* ── LANG DROPDOWN ──────────────────────────────────────────── */
.lang-dropdown { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.lang-btn:hover,
.lang-dropdown.open .lang-btn {
  background: rgba(255,255,255,.09);
  border-color: rgba(249,115,22,.35);
  color: #fff;
}
.lang-btn svg { transition: transform .2s; flex-shrink: 0; }
.lang-dropdown.open .lang-btn svg { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: rgba(14,14,14,.97);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 4px;
  min-width: 72px;
  list-style: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, visibility .18s, transform .18s;
  z-index: 200;
}
.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu li a {
  display: block;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  color: rgba(255,255,255,.55);
  transition: background .15s, color .15s;
}
.lang-menu li a:hover { background: rgba(255,255,255,.07); color: #fff; }

/* ── LANG FLAT (mobile hamburger) ──────────────────────────── */
.lang-flat {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  padding: 3px;
}
.lang-flat a,
.lang-flat-active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  border-radius: 7px;
  transition: background .15s, color .15s;
}
.lang-flat a { color: rgba(255,255,255,.45); }
.lang-flat a:hover { color: #fff; background: rgba(255,255,255,.08); }
.lang-flat-active { background: #F97316; color: #000; pointer-events: none; }

/* ── MOBILE NAV EXTRAS (lang + CTA inside hamburger) ───────── */
@media (max-width: 900px) {
  .nav-right .lang-dropdown,
  .nav-right .nav-cta { display: none !important; }

  .nav-mobile-extras {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 4px 8px;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: none !important;
  }
  .nav-mobile-extras .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background: #F97316;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
  }
}
@media (min-width: 901px) {
  .nav-mobile-extras { display: none !important; }
}

/* ── RTL (Arabic) ─────────────────────────────────────────── */
[dir="rtl"] body { font-family: 'Segoe UI', Tahoma, Arial, 'Noto Sans Arabic', sans-serif; }
[dir="rtl"] .nav-links.open .nav-link { text-align: right; }
[dir="rtl"] .hero-lead,
[dir="rtl"] .hero-sub,
[dir="rtl"] .hero-cta,
[dir="rtl"] .badge,
[dir="rtl"] .h2,
[dir="rtl"] .h3,
[dir="rtl"] .feat-card p,
[dir="rtl"] .why-card p,
[dir="rtl"] .page-intro-inner p,
[dir="rtl"] .footer-brand-desc { text-align: right; }
[dir="rtl"] .footer-col-title,
[dir="rtl"] .footer-link { text-align: right; }
[dir="rtl"] .info-card-label,
[dir="rtl"] .info-card-value,
[dir="rtl"] .info-card-sub { text-align: right; }
[dir="rtl"] .form-label { text-align: right; }
[dir="rtl"] .stat-sub { text-align: center; }
[dir="rtl"] .panel-footer-bar { direction: ltr; }
