/* ===== Top bar ===== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: linear-gradient(90deg, rgba(212,168,83,0.12), rgba(212,168,83,0.04));
  border-bottom: 1px solid var(--border);
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.topbar-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #25d366;
  font-weight: 600;
}
.topbar-wa svg { width: 15px; height: 15px; flex-shrink: 0; }
.topbar-wa:hover { color: #4ade80; }
.topbar-msg a { color: var(--gold-light); font-weight: 600; }
.topbar-msg a:hover { color: var(--gold); }
.top-bar a { color: inherit; }
body.has-topbar .nav { top: 2rem; }
body.has-topbar { scroll-padding-top: 7rem; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10001;
  padding: 0.6rem 1rem;
  background: var(--gold);
  color: #080604;
  font-weight: 600;
  border-radius: 4px;
}
.skip-link:focus { top: 0.5rem; }

/* ===== Hero extras ===== */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.hero-badge {
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,83,0.06);
}
.hero-desc {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.hero-btn--ghost {
  display: inline-block;
  padding: 0.9rem 2rem;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.hero-btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ===== Stats ===== */
.stats-section {
  position: relative;
  z-index: 1;
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(18, 16, 12, 0.6);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-item span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== Why / Process / Tech / Testimonials / CTA ===== */
.section-intro {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.section-intro p { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.75rem; }

.why-grid, .process-grid, .testimonials-grid {
  display: grid;
  gap: 1.25rem;
}
.why-grid { grid-template-columns: repeat(4, 1fr); }
.process-grid { grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.testimonials-grid { grid-template-columns: repeat(3, 1fr); }

.why-card, .process-step, .testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: border-color 0.25s, transform 0.25s;
}
.why-card:hover, .process-step:hover, .testimonial-card:hover {
  border-color: rgba(212,168,83,0.45);
  transform: translateY(-3px);
}
.why-card h3, .process-step h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.why-card p, .process-step p, .testimonial-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}
.testimonial-card .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.75rem; letter-spacing: 0.15em; }
.testimonial-author {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
}
.testimonial-author strong { display: block; color: var(--text); }
.testimonial-author span { color: var(--text-muted); font-size: 0.72rem; }

.tech-section { text-align: center; max-width: 1100px; margin: 0 auto; }
.tech-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  margin-top: 2rem;
}
.tech-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.tech-tag {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  white-space: nowrap;
  background: var(--bg-card);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cta-band {
  position: relative;
  z-index: 1;
  margin: 0 clamp(1.5rem, 5vw, 4rem);
  padding: clamp(2.5rem, 5vw, 4rem);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(212,168,83,0.12), transparent),
    var(--bg-card);
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 0.75rem; }
.cta-band p { color: var(--text-muted); max-width: 520px; margin: 0 auto 1.75rem; }

/* ===== FAQ accordion ===== */
.faq-accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-acc-item {
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
}
.faq-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-acc-btn:hover { color: var(--gold); }
.faq-acc-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-acc-icon {
  margin-left: auto;
  width: 12px;
  height: 12px;
  position: relative;
  flex-shrink: 0;
}
.faq-acc-icon::before, .faq-acc-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.25s;
}
.faq-acc-icon::before { width: 12px; height: 2px; top: 5px; left: 0; }
.faq-acc-icon::after { width: 2px; height: 12px; top: 0; left: 5px; }
.faq-acc-item.open .faq-acc-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-acc-panel p {
  padding: 0 1.25rem 1.15rem 3.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== Contact form ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  padding-bottom: 1rem;
}
#contact {
  scroll-margin-bottom: 7rem;
}
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-submit {
  padding: 0.95rem 2rem;
  background: linear-gradient(135deg, var(--gold), #a07830);
  border: none;
  color: #080604;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font);
  width: 100%;
  max-width: 280px;
  align-self: flex-start;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
.form-note {
  min-height: 1.25rem;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.form-note--status {
  font-size: 0.82rem;
  font-weight: 500;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-glow); }
.form-note--success { color: #5dce8a; }
.form-note--error { color: #e85d5d; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ===== Footer mega ===== */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(8, 6, 4, 0.95);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem) 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  max-width: 280px;
  line-height: 1.65;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a { font-size: 0.78rem; color: var(--text-muted); }

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  background: #20bd5a;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.back-top {
  position: fixed;
  bottom: 5.75rem;
  right: 1.5rem;
  z-index: 9998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(8, 6, 4, 0.9);
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top svg { width: 18px; height: 18px; }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10002;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  background: rgba(12, 10, 8, 0.98);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
body.cookie-visible {
  padding-bottom: 7.5rem;
}
body.cookie-visible #contact .contact-form {
  margin-bottom: 1rem;
  padding-bottom: 5rem;
}
body.cookie-visible #contact .form-submit {
  z-index: 10003;
}
.cookie-banner p { font-size: 0.82rem; color: var(--text-muted); max-width: 640px; }
.cookie-actions { display: flex; gap: 0.75rem; }
.cookie-btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}
.cookie-btn--accept { background: var(--gold); color: #080604; border-color: var(--gold); }

/* ===== Inner pages ===== */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 8rem clamp(1.5rem, 5vw, 4rem) 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
}
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.page-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem clamp(1.5rem, 5vw, 4rem) 5rem;
}
.page-content h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; color: var(--gold); }
.page-content p, .page-content li { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; margin-bottom: 0.75rem; }
.page-content ul { padding-left: 1.25rem; margin-bottom: 1rem; }

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem) 5rem;
}
.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
}
.service-detail-card h2 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.service-detail-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1rem; }
.service-detail-card ul { list-style: none; }
.service-detail-card li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
}
.service-detail-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
}
a.service-detail-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, background 0.25s;
}
a.service-detail-card:hover {
  border-color: var(--gold);
  background: #1c1814;
}
a.service-detail-card span[data-i18n="page.service.more"] {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--gold);
}

/* Service detail pages */
.service-page {
  position: relative;
  z-index: 1;
  padding-top: 5.5rem;
}
.service-page-hero {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem clamp(1.5rem, 5vw, 4rem) 2.5rem;
  text-align: center;
}
.service-breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}
.service-breadcrumb a:hover { text-decoration: underline; }
.service-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
.service-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}
.service-page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem) 3rem;
}
.service-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.service-section:last-child { border-bottom: none; }
.service-section h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.service-section h3 {
  font-size: 1rem;
  margin: 1.5rem 0 0.75rem;
}
.service-section p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.service-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.service-benefits-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}
.service-benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}
.service-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}
.service-process-grid .process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.25rem;
}
.service-process-grid .process-step h3 {
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.service-process-grid .process-step p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.65;
}
/* Service sections: visible even before scroll observer runs */
.service-page .service-section.reveal,
.service-page .cta-band.reveal,
.service-page .service-related.reveal {
  opacity: 1;
  transform: none;
}
.service-crosslinks p a {
  color: var(--gold);
  text-decoration: none;
}
.service-crosslinks p a:hover { text-decoration: underline; }
.service-related {
  max-width: 820px;
  margin: 0 auto 3rem;
  padding: 2rem clamp(1.5rem, 5vw, 4rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.service-related h2 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.service-related-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.service-related-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
}
.service-related-list a:hover { color: var(--gold-light); }
.service-related-all a {
  color: var(--gold);
  font-size: 0.88rem;
  text-decoration: none;
}
.service-related-all a:hover { text-decoration: underline; }
.service-hero-visual {
  max-width: 420px;
  margin: 0 auto 1.5rem;
}
.service-hero-visual img {
  width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #12100c;
}
.service-detail-card .service-thumb {
  width: 100%;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  background: #12100c;
}
.about-visual {
  margin-bottom: 1.75rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-visual img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  display: block;
  background: #12100c;
}
.site-visual-band {
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.site-visual-band img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #12100c;
}
.footer-col--services ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 1rem;
}
@media (max-width: 480px) {
  .footer-col--services ul { grid-template-columns: 1fr; }
}

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.error-links {
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.error-links ul {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
}
.error-links a {
  color: var(--gold);
  text-decoration: none;
}
.error-links a:hover { text-decoration: underline; }
.error-page h1 { font-size: clamp(4rem, 12vw, 8rem); color: var(--gold); line-height: 1; }
.error-page p { color: var(--text-muted); margin: 1rem 0 2rem; }

.nav-links a.active { color: var(--gold); }

@media (max-width: 1024px) {
  .why-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body.has-topbar .nav { top: 0; }
  .top-bar { position: relative; font-size: 0.65rem; }
  .top-bar-inner { flex-direction: column; gap: 0.35rem; }
  .nav-wa span { display: none; }
  .nav-wa { padding: 0.45rem; border-radius: 50%; }
  .back-top { bottom: 5.25rem; right: 1rem; width: 40px; height: 40px; }
  .whatsapp-float { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .process-grid, .services-detail-grid, .service-process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .tech-track { animation: none; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== RTL (Arabic) ===== */
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .nav-links,
html[dir="rtl"] .footer-grid,
html[dir="rtl"] .section-split,
html[dir="rtl"] .service-hero-inner,
html[dir="rtl"] .page-content { direction: rtl; }
html[dir="rtl"] .lang-select {
  padding: 0.35rem 0.55rem 0.35rem 1.75rem;
  background-position: left 0.45rem center;
}
html[dir="rtl"] .nav-logo-text,
html[dir="rtl"] .hero-badges { direction: ltr; }
