/* =========================================================
   SENTINEL HORIZON SYSTEMS — Global Stylesheet
   Palette: #FFFFFF | #0B1F3A (navy) | #F5F7FA (light gray) | #1A3A6B (accent blue)
   Font: Inter (Google Fonts)
   ========================================================= */

/* --- Reset & Base --------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #0B1F3A;
  background: #FFFFFF;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Typography ----------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1A3A6B;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: #4a5568;
  max-width: 640px;
}

/* --- Layout Utilities ----------------------------------------- */

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.section {
  padding-block: 6rem;
}

.section--gray {
  background: #F5F7FA;
}

.section--navy {
  background: #0B1F3A;
}

/* --- Buttons -------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: #0B1F3A;
  color: #FFFFFF;
  border-color: #0B1F3A;
}

.btn--primary:hover {
  background: #1A3A6B;
  border-color: #1A3A6B;
  box-shadow: 0 4px 16px rgba(11, 31, 58, 0.35);
}

.btn--ghost {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
}

.btn--outline {
  background: transparent;
  color: #0B1F3A;
  border-color: #0B1F3A;
}

.btn--outline:hover {
  background: #0B1F3A;
  color: #FFFFFF;
}

.btn--lg {
  font-size: 0.9375rem;
  padding: 0.9rem 2.25rem;
}

/* =========================================================
   HEADER
   ========================================================= */

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 31, 58, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

#site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.site-logo__name {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #FFFFFF;
  line-height: 1;
}

.site-logo__tagline {
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
}

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.primary-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.5rem 0.85rem;
  border-radius: 2px;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: #4a8cf7;
  transform: scaleX(0);
  transition: transform 0.2s ease;
  border-radius: 1px;
}

.primary-nav a:hover {
  color: #FFFFFF;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

/* Header CTA */
.header-cta .btn {
  background: #1A3A6B;
  color: #FFFFFF;
  border-color: #1A3A6B;
  font-size: 0.775rem;
  padding: 0.55rem 1.25rem;
}

.header-cta .btn:hover {
  background: #2251a3;
  border-color: #2251a3;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('assets/desert.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================================
   OVERVIEW — Official Positioning
   ========================================================= */

#overview .overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

#overview .overview-text p {
  font-size: 1.0625rem;
  color: #374151;
  max-width: 520px;
  line-height: 1.75;
}

.stat-boxes {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stat-box {
  background: #F5F7FA;
  border-left: 4px solid #0B1F3A;
  padding: 1.5rem 1.75rem;
  border-radius: 2px;
}

.stat-box__value {
  font-size: 2rem;
  font-weight: 800;
  color: #0B1F3A;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-box__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

/* =========================================================
   CAPABILITIES
   ========================================================= */

#capabilities .capabilities-header {
  margin-bottom: 3.5rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.capability-card {
  background: #FFFFFF;
  border: 1px solid #e5e7eb;
  border-top: 4px solid #0B1F3A;
  border-radius: 3px;
  padding: 2.25rem 2rem;
  box-shadow: 0 2px 12px rgba(11, 31, 58, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.capability-card:hover {
  box-shadow: 0 8px 32px rgba(11, 31, 58, 0.13);
  transform: translateY(-3px);
}

.capability-card__icon {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.capability-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.capability-card__text {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
}

/* =========================================================
   HOW IT WORKS — Operational Sequence / Deployment
   ========================================================= */

#deployment {
  background: #F5F7FA;
}

#deployment .deployment-header {
  margin-bottom: 4rem;
}

.timeline {
  position: relative;
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(28px + 1.5rem);
  right: calc(28px + 1.5rem);
  height: 2px;
  background: #d1d5db;
  z-index: 0;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.timeline-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0B1F3A;
  color: #FFFFFF;
  font-size: 1.0625rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  border: 3px solid #F5F7FA;
  box-shadow: 0 0 0 2px #0B1F3A;
}

.timeline-step__title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0B1F3A;
  margin-bottom: 0.6rem;
}

.timeline-step__text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.65;
}

/* =========================================================
   ENVIRONMENTS — All-Terrain
   ========================================================= */

#environments .env-header {
  margin-bottom: 3rem;
}

.env-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.env-card {
  position: relative;
  height: 320px;
  border-radius: 3px;
  overflow: hidden;
  cursor: default;
}

.env-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.env-card:hover .env-card__bg {
  transform: scale(1.04);
}

.env-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  z-index: 1;
}

.env-card__label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.75rem;
  z-index: 2;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.env-card__label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #4a8cf7;
  vertical-align: middle;
  margin-right: 0.6rem;
  margin-top: -2px;
}

/* =========================================================
   TECHNOLOGY STACK
   ========================================================= */

#technology {
  background: #0B1F3A;
  color: #FFFFFF;
}

#technology .section-label {
  color: #7aadff;
}

#technology .section-title {
  color: #FFFFFF;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 3px;
  padding: 1.75rem 1.5rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.tech-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.tech-item__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.tech-item__sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

/* =========================================================
   OPERATIONAL ADVANTAGES
   ========================================================= */

#advantages {
  background: #F5F7FA;
}

#advantages .advantages-header {
  margin-bottom: 3.5rem;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.advantage-item:first-child {
  border-top: 1px solid #e5e7eb;
}

.advantage-item__check {
  width: 36px;
  height: 36px;
  background: #0B1F3A;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.advantage-item__text {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0B1F3A;
  letter-spacing: -0.01em;
}

.advantage-item__detail {
  margin-left: auto;
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* =========================================================
   FOR GOVERNMENTS
   ========================================================= */

#governments {
  background: #FFFFFF;
  text-align: center;
}

.governments-inner {
  max-width: 760px;
  margin-inline: auto;
}

.governments-quote {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: #374151;
  line-height: 1.75;
  border-left: 4px solid #0B1F3A;
  text-align: left;
  padding: 1.5rem 2rem;
  background: #F5F7FA;
  border-radius: 0 3px 3px 0;
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* =========================================================
   BRIEFING FORM
   ========================================================= */

#briefing {
  background: #F5F7FA;
}

#briefing .briefing-header {
  margin-bottom: 3rem;
}

.form-wrapper {
  max-width: 720px;
  background: #FFFFFF;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 3rem;
  box-shadow: 0 4px 24px rgba(11, 31, 58, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #0B1F3A;
  background: #FFFFFF;
  border: 1.5px solid #d1d5db;
  border-radius: 3px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0B1F3A;
  box-shadow: 0 0 0 3px rgba(11, 31, 58, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc2626;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-notice {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-notice::before {
  content: '🔒';
  font-size: 0.75rem;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

#form-status {
  font-size: 0.9rem;
  font-weight: 600;
}

#form-status.success {
  color: #15803d;
}

#form-status.error {
  color: #dc2626;
}

/* =========================================================
   FOOTER
   ========================================================= */

#site-footer {
  background: #0B1F3A;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 3.5rem 2rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-brand__name {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.footer-brand__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* =========================================================
   FADE-IN ANIMATION
   ========================================================= */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in--delay-1 { transition-delay: 0.1s; }
.fade-in--delay-2 { transition-delay: 0.2s; }
.fade-in--delay-3 { transition-delay: 0.3s; }
.fade-in--delay-4 { transition-delay: 0.4s; }
.fade-in--delay-5 { transition-delay: 0.5s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {
  .capabilities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tech-grid {
    grid-template-columns: 1fr 1fr;
  }

  #overview .overview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .primary-nav,
  .header-cta {
    display: none;
  }

  .primary-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(11, 31, 58, 0.98);
    padding: 1.5rem 2rem;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
  }

  .primary-nav.mobile-open a {
    padding: 0.75rem 0;
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: flex;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .env-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    flex-direction: column;
    gap: 2rem;
  }

  .timeline::before {
    display: none;
  }

  .timeline-step {
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
    padding: 0;
  }

  .timeline-step__number {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 2rem 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .advantage-item__detail {
    display: none;
  }

  .section {
    padding-block: 4rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 1.25rem;
  }
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  position: relative;
}

.lang-switcher__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--color-white, #FFFFFF);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, background 0.2s;
}

.lang-switcher__toggle:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
}

.lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #FFFFFF;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  min-width: 120px;
  z-index: 1000;
}

.lang-switcher.is-open .lang-switcher__dropdown {
  display: block;
}

.lang-switcher__dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: #0B1F3A;
  text-decoration: none;
  font-weight: 400;
  transition: background 0.15s;
}

.lang-switcher__dropdown li a:hover,
.lang-switcher__dropdown li a[aria-current="true"] {
  background: #F5F7FA;
  font-weight: 600;
}

/* ============================================================
   RTL SUPPORT
   ============================================================ */
[dir="rtl"] .header-inner {
  flex-direction: row-reverse;
}

[dir="rtl"] .primary-nav {
  flex-direction: row-reverse;
}

[dir="rtl"] .header-cta {
  order: -1;
}

[dir="rtl"] .lang-switcher__dropdown {
  right: auto;
  left: 0;
}

[dir="rtl"] .overview-grid {
  direction: rtl;
}

[dir="rtl"] .capability-card {
  text-align: right;
}

[dir="rtl"] .timeline {
  direction: rtl;
}

[dir="rtl"] .timeline-step {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .advantage-item {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .footer-main {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer-nav {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}

[dir="rtl"] .form-row {
  direction: rtl;
}

[dir="rtl"] .tech-grid {
  direction: rtl;
}

[dir="rtl"] .tech-item {
  flex-direction: row-reverse;
  text-align: right;
}

/* Arabic font */
[lang="ar"] body,
[lang="ar"] h1,
[lang="ar"] h2,
[lang="ar"] h3,
[lang="ar"] p,
[lang="ar"] a,
[lang="ar"] button,
[lang="ar"] input,
[lang="ar"] textarea,
[lang="ar"] label {
  font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
}

/* Hebrew font */
[lang="he"] body,
[lang="he"] h1,
[lang="he"] h2,
[lang="he"] h3,
[lang="he"] p,
[lang="he"] a,
[lang="he"] button,
[lang="he"] input,
[lang="he"] textarea,
[lang="he"] label {
  font-family: 'Noto Sans Hebrew', 'Inter', sans-serif;
}

/* Scrolled header RTL */
[dir="rtl"] #site-header.scrolled .lang-switcher__toggle {
  border-color: rgba(11,31,58,0.3);
  color: #0B1F3A;
}
