/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:   #05111F;
  --navy2:  #0A1E35;
  --blue:   #0E4D8A;
  --mid:    #1A6FC4;
  --steel:  #2A85D8;
  --light:  #5BAAEC;
  --accent: #C8891E;
  --white:  #FFFFFF;
  --off:    #F5F7FA;
  --text:   #1A2535;
  --muted:  #4E6180;
  --border: #D6E4F0;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--navy);
  padding: 7px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar-right { display: flex; align-items: center; gap: 4px; }
.topbar-right a { color: rgba(255,255,255,0.45); transition: color .2s; padding: 0 4px; }
.topbar-right a:hover { color: rgba(255,255,255,0.85); }
.active-lang { color: rgba(255,255,255,0.8) !important; font-weight: 500; }
.sep { color: rgba(255,255,255,0.2); margin: 0 4px; }
.topbar-contact { margin-left: 16px; border-left: 1px solid rgba(255,255,255,0.1); padding-left: 16px !important; }

/* ─── NAV ─── */
#navbar {
  background: rgba(5,17,31,0.97);
  backdrop-filter: blur(14px);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 300;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--steel));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 16px; color: white; letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-words { display: flex; flex-direction: column; line-height: 1.15; }
.logo-words b { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: white; letter-spacing: 0.5px; }
.logo-words small { font-size: 10px; color: var(--light); letter-spacing: 2.5px; text-transform: uppercase; font-weight: 400; }

.nav-menu { display: flex; gap: 32px; }
.nav-menu a { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 400; letter-spacing: 0.3px; transition: color .2s; }
.nav-menu a:hover { color: white; }

.btn-quote {
  background: var(--accent);
  color: white;
  padding: 9px 22px;
  border-radius: 5px;
  border: none;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-quote:hover { background: #b87a15; transform: translateY(-1px); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: all .3s; }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy2);
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 299;
  padding: 24px 32px;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.75); font-size: 15px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color .2s; }
.mobile-menu a:hover { color: white; }
.mob-cta { background: var(--accent) !important; color: white !important; text-align: center; border-radius: 5px; padding: 12px 0 !important; font-weight: 600; border: none !important; margin-top: 12px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.22;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(5,17,31,0.98) 45%, rgba(5,17,31,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 80px 60px;
  max-width: 680px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(26,111,196,0.18);
  border: 1px solid rgba(91,170,236,0.28);
  color: var(--light);
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 2px;
  margin-bottom: 30px;
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--light);
  border-radius: 50%;
  animation: pulse 2.2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.25} }

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: 62px; font-weight: 800;
  color: white; line-height: 1.02; letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero h1 em { color: var(--light); font-style: normal; }

.hero-lead {
  font-size: 17px; color: rgba(255,255,255,0.58);
  line-height: 1.8; margin-bottom: 40px;
  max-width: 540px; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.btn-hero-primary {
  background: var(--mid); color: white;
  padding: 15px 32px; border-radius: 5px; border: none;
  font-size: 15px; font-weight: 600; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .2s, transform .15s;
}
.btn-hero-primary:hover { background: var(--blue); transform: translateY(-1px); }

.btn-hero-outline {
  background: transparent; color: white;
  padding: 14px 28px; border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 15px; font-weight: 400; cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: flex; align-items: center; gap: 10px;
  transition: border-color .2s;
}
.btn-hero-outline:hover { border-color: rgba(255,255,255,0.55); }

.hero-scroll {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  margin-top: 56px;
}
.scroll-line { width: 44px; height: 1px; background: rgba(255,255,255,0.18); }

/* Hero side stats */
.hero-side-stats {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  z-index: 2;
  display: flex; flex-direction: column; gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; overflow: hidden;
}
.hss-item { padding: 22px 28px; text-align: center; }
.hss-divider { height: 1px; background: rgba(255,255,255,0.08); }
.hss-num { display: block; font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700; color: white; line-height: 1; margin-bottom: 5px; }
.hss-label { display: block; font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--navy2);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 60px;
  display: flex; align-items: stretch; flex-wrap: wrap;
}
.trust-item {
  flex: 1; min-width: 150px;
  padding: 20px 20px;
  display: flex; align-items: center; gap: 12px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.trust-item:last-child { border-right: none; }
.trust-meta { display: flex; flex-direction: column; }
.trust-meta b { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); line-height: 1.2; }
.trust-meta small { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.3px; margin-top: 2px; }

/* ─── INTRO BAND ─── */
.intro-band {
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 36px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.intro-text { font-size: 15px; color: var(--muted); max-width: 680px; line-height: 1.8; }
.intro-text strong { color: var(--text); }
.cert-badges { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.cert-badge {
  background: white; border: 1px solid var(--border);
  border-radius: 5px; padding: 7px 14px;
  font-size: 12px; font-weight: 600; color: var(--blue);
  letter-spacing: 0.3px; white-space: nowrap;
}

/* ─── SECTIONS ─── */
.section { padding: 88px 60px; }
.section.dark { background: var(--navy); padding: 88px 60px; }
.section.gray { background: var(--off); }

.sec-label {
  font-size: 11px; font-weight: 600;
  color: var(--mid); letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 12px;
}
.sec-label.light { color: var(--light); }

.sec-title {
  font-family: 'Syne', sans-serif;
  font-size: 38px; font-weight: 700;
  color: var(--text); line-height: 1.1; margin-bottom: 14px;
}
.sec-title.light { color: white; }

.sec-sub { font-size: 15px; color: var(--muted); max-width: 560px; line-height: 1.8; }
.sec-sub.light { color: rgba(255,255,255,0.5); }

.sec-header { margin-bottom: 52px; }
.sec-header.center { text-align: center; }
.sec-header.center .sec-sub { margin: 0 auto; }

/* ─── PHOTO STRIP ─── */
.photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3px;
  height: 640px;
  margin-bottom: 3px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.photo-col { display: grid; grid-template-rows: 1fr 1fr; gap: 3px; }
.photo-cell { position: relative; overflow: hidden; }
.photo-cell img { transition: transform 0.5s ease; }
.photo-cell:hover img { transform: scale(1.04); }
.photo-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(5,17,31,0.88));
  padding: 20px 16px 14px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8);
  letter-spacing: 1px; text-transform: uppercase;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.svc {
  background: white; padding: 30px 26px;
  transition: background 0.2s; cursor: default;
}
.svc:hover { background: #EBF5FE; }
.svc-num { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; color: var(--border); letter-spacing: 1px; margin-bottom: 14px; }
.svc-icon {
  width: 48px; height: 48px;
  background: var(--off); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.svc-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.svc-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.svc-list { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.svc-list li { font-size: 12.5px; color: var(--muted); padding-left: 14px; position: relative; }
.svc-list li::before { content: '–'; position: absolute; left: 0; color: var(--light); }
.svc-tag {
  display: inline-block;
  background: rgba(14,77,138,0.08); color: var(--blue);
  font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 3px; letter-spacing: 0.3px;
}

/* ─── COVERAGE ─── */
.coverage-band {
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 28px 60px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.cov-label {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.35); letter-spacing: 2px;
  text-transform: uppercase; white-space: nowrap; margin-right: 8px;
}
.ports { display: flex; gap: 8px; flex-wrap: wrap; }
.port {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 12px; padding: 5px 14px; border-radius: 20px; white-space: nowrap;
  transition: all .2s;
}
.port:hover { background: rgba(255,255,255,0.1); color: white; }
.port-more { border-color: rgba(91,170,236,0.3); color: var(--light); }

/* ─── WHY GIDEROS ─── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-list { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(26,111,196,0.15);
  border: 1px solid rgba(26,111,196,0.28);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.why-list li > div:last-child b { font-size: 14px; font-weight: 600; color: white; display: block; margin-bottom: 4px; }
.why-list li > div:last-child p { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.65; }

.why-img-block { position: relative; border-radius: 12px; overflow: hidden; height: 480px; }
.why-img-block img { height: 100%; }
.why-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 30%, rgba(5,17,31,0.9) 100%);
  display: flex; align-items: flex-end; padding: 28px;
}
.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }
.kpi {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 14px 16px;
}
.kpi-n { display: block; font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: white; line-height: 1; margin-bottom: 4px; }
.kpi-l { display: block; font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.3; }

/* ─── PROCESS ─── */
.process-steps {
  display: flex; align-items: flex-start; gap: 0;
  position: relative;
}
.process-step {
  flex: 1; text-align: center; padding: 0 16px;
}
.step-num {
  width: 56px; height: 56px; margin: 0 auto 20px;
  background: white; border: 2px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--blue);
  transition: all .25s; position: relative; z-index: 1;
}
.process-step:hover .step-num { border-color: var(--mid); background: var(--mid); color: white; }
.process-step h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.step-arrow {
  flex-shrink: 0; color: var(--border);
  font-size: 20px; margin-top: 18px; padding: 0 4px;
  align-self: flex-start;
}

/* ─── STANDARDS ─── */
.standards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.std-card {
  background: white; border: 1px solid var(--border);
  border-radius: 10px; padding: 26px 20px; text-align: center;
  transition: border-color .2s, transform .2s;
}
.std-card:hover { border-color: var(--steel); transform: translateY(-2px); }
.std-abbr { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.std-card p { font-size: 12.5px; color: var(--muted); line-height: 1.55; }

/* ─── CTA / CONTACT ─── */
.cta-section { position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.15; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(14,77,138,0.97), rgba(5,17,31,0.97)); }
.cta-inner { position: relative; z-index: 2; padding: 84px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.cta-text h2 { font-family: 'Syne', sans-serif; font-size: 38px; font-weight: 700; color: white; line-height: 1.1; margin-bottom: 16px; }
.cta-text > p { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.8; margin-bottom: 36px; }
.cta-details { display: flex; flex-direction: column; gap: 12px; }
.cta-detail { display: flex; gap: 12px; align-items: baseline; }
.cd-l { font-size: 11px; font-weight: 600; color: var(--light); letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; min-width: 72px; }
.cd-v { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); }

/* Contact form */
.cta-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 36px 32px;
}
.cta-form h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: white; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.cta-form input, .cta-form textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; padding: 12px 16px;
  font-size: 14px; color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  outline: none; transition: border-color .2s;
  margin-bottom: 12px;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.cta-form input:focus, .cta-form textarea:focus { border-color: var(--light); }
.cta-form textarea { resize: vertical; }
.btn-submit {
  width: 100%; background: var(--accent); color: white;
  border: none; border-radius: 6px;
  padding: 14px; font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px; transition: background .2s, transform .15s;
  margin-top: 4px;
}
.btn-submit:hover { background: #b87a15; transform: translateY(-1px); }
.form-note { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ─── FOOTER ─── */
footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07); padding: 56px 60px 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-mark {
  width: 38px; height: 38px;
  background: var(--blue); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 800; color: white;
}
.footer-logo span { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: white; }
.footer-brand > p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-reg { display: flex; flex-direction: column; gap: 4px; }
.footer-reg span { font-size: 11px; color: rgba(255,255,255,0.2); }
.footer-col h4 { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.28); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero h1 { font-size: 48px; }
  .hero-side-stats { display: none; }
  .why-grid { gap: 40px; }
  .standards-grid { grid-template-columns: repeat(3,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .topbar { padding: 7px 24px; }
  #navbar { padding: 0 24px; }
  .nav-menu { display: none; }
  .btn-quote { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 60px 24px; }
  .hero h1 { font-size: 40px; }
  .trust-bar { padding: 0 24px; }
  .trust-item { min-width: 130px; }
  .intro-band { padding: 28px 24px; }
  .section { padding: 60px 24px; }
  .section.dark { padding: 60px 24px; }
  .section.gray { padding: 60px 24px; }
  .coverage-band { padding: 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .photo-strip { height: 240px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-right { display: none; }
  .process-steps { flex-direction: column; gap: 24px; }
  .step-arrow { display: none; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .standards-grid { grid-template-columns: repeat(2,1fr); }
  .footer { padding: 40px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 34px; letter-spacing: -1px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .standards-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .sec-title { font-size: 30px; }
}

/* ─── LANGUAGE SWITCHER ─── */
.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
}
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.55);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  transition: all .2s;
  white-space: nowrap;
}
.lang-btn:hover { color: white; border-color: rgba(255,255,255,0.4); }
.lang-btn.active { background: var(--mid); border-color: var(--mid); color: white; }

.mob-lang {
  display: flex;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.mob-lang .lang-btn { font-size: 18px; padding: 6px 10px; }

/* ─── RTL SUPPORT ─── */
body.rtl {
  font-family: 'Inter', 'Segoe UI', Tahoma, Arial, sans-serif;
}
body.rtl .topbar { flex-direction: row-reverse; }
body.rtl .topbar-right { flex-direction: row-reverse; }
body.rtl .topbar-contact { margin-left: 0; border-left: none; padding-left: 0; margin-right: 16px; border-right: 1px solid rgba(255,255,255,0.1); padding-right: 16px; }
body.rtl nav { flex-direction: row-reverse; }
body.rtl .nav-menu { flex-direction: row-reverse; }
body.rtl .nav-right { flex-direction: row-reverse; }
body.rtl .logo { flex-direction: row-reverse; }
body.rtl .hero-content { padding: 80px 60px 80px 0; margin-left: auto; }
body.rtl .hero-side-stats { left: 60px; right: auto; }
body.rtl .hero h1 { direction: rtl; }
body.rtl .hero-tag { flex-direction: row-reverse; }
body.rtl .hero-actions { flex-direction: row-reverse; }
body.rtl .hero-scroll { flex-direction: row-reverse; }
body.rtl .trust-bar { flex-direction: row-reverse; }
body.rtl .trust-item { flex-direction: row-reverse; }
body.rtl .trust-item:last-child { border-right: 1px solid rgba(255,255,255,0.07); border-left: none; }
body.rtl .trust-item:first-child { border-left: 1px solid rgba(255,255,255,0.07); border-right: none; }
body.rtl .intro-band { flex-direction: row-reverse; }
body.rtl .sec-header { direction: rtl; }
body.rtl .sec-header.center { direction: ltr; text-align: center; }
body.rtl .svc { direction: rtl; }
body.rtl .svc-list li { padding-left: 0; padding-right: 14px; }
body.rtl .svc-list li::before { left: auto; right: 0; }
body.rtl .coverage-band { flex-direction: row-reverse; }
body.rtl .why-grid { direction: rtl; }
body.rtl .why-list li { flex-direction: row-reverse; }
body.rtl .why-list li > div:last-child { text-align: right; }
body.rtl .why-list li > div:last-child b { text-align: right; }
body.rtl .process-steps { flex-direction: row-reverse; }
body.rtl .step-arrow { transform: scaleX(-1); }
body.rtl .cta-inner { direction: rtl; }
body.rtl .cta-detail { flex-direction: row-reverse; }
body.rtl .cta-form { direction: rtl; }
body.rtl .form-row { direction: rtl; }
body.rtl .footer-inner { direction: rtl; }
body.rtl .footer-bottom { flex-direction: row-reverse; }
body.rtl .footer-links { flex-direction: row-reverse; }
body.rtl .footer-logo { flex-direction: row-reverse; }

@media (max-width: 900px) {
  .lang-switcher { display: none; }
  body.rtl .hero-content { padding: 60px 24px; }
  body.rtl .hero-side-stats { display: none; }
}
