/* ==============================================
   CUSTOM PROPERTIES
=============================================== */
:root {
  --navy:      #09243F;
  --blue:      #1B5EAE;
  --blue-dark: #164d92;
  --yellow:    #F5C300;
  --yellow-dk: #d9ac00;
  --purple:    #6C5CE7;
  --purple-lt: rgba(108,92,231,0.08);
  --light-bg:  #EEF2F7;
  --white:     #FFFFFF;

  --text-primary:   #09243F;
  --text-secondary: #4A5568;
  --text-muted:     #718096;
  --border:         #E2E8F0;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 18px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 36px rgba(0,0,0,0.14);

  --radius:    10px;
  --radius-sm:  6px;
  --ease: 0.22s ease;

  --nav-h: 68px;
}

/* ==============================================
   RESET & BASE
=============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ==============================================
   CONTAINER
=============================================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ==============================================
   BUTTONS
=============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease),
              transform var(--ease), box-shadow var(--ease);
}
.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--yellow { background: var(--yellow); color: var(--navy); }
.btn--yellow:hover, .btn--yellow:focus-visible {
  background: var(--yellow-dk);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ==============================================
   NAVBAR — fixed, transparent → frosted glass
=============================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Scrolled state */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

/* ── Logo ── */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-svg {
  width: 34px;
  height: 28px;
  flex-shrink: 0;
}
.logo-wordmark {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  transition: color 0.4s ease;
}

/* Transparent-state overrides (over dark hero) */
.navbar:not(.scrolled) .logo-wordmark            { color: var(--white); }
.navbar:not(.scrolled) .nav-link                 { color: rgba(255,255,255,0.72); }
.navbar:not(.scrolled) .nav-link:hover           { color: var(--white); }
.navbar:not(.scrolled) .hamburger                { color: var(--white); }
.navbar:not(.scrolled) .lang-dropdown__btn {
  border-color: rgba(255,255,255,0.22);
}
.navbar:not(.scrolled) .lang-dropdown__btn:hover {
  border-color: rgba(255,255,255,0.55);
}
.navbar:not(.scrolled) .lang-chevron {
  color: rgba(255,255,255,0.7);
}

/* ── Center nav ── */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--blue); }

/* ── Right side ── */
.navbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* ── Flag images ── */
.flag-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.flag-img--trigger {
  width: 26px;
  height: 26px;
}

/* ── Language dropdown ── */
.lang-dropdown { position: relative; }

.lang-dropdown__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 20px;
  padding: 4px 8px 4px 5px;
  cursor: pointer;
  transition: border-color 0.4s ease, box-shadow var(--ease);
  line-height: 1;
}
.lang-dropdown__btn:hover {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(108,92,231,0.1);
}
.lang-dropdown.open .lang-dropdown__btn {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(108,92,231,0.12);
}

.lang-chevron {
  font-size: 0.6rem;
  color: var(--text-muted);
  transition: transform var(--ease), color 0.4s ease;
}
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }

.lang-dropdown__menu[hidden] { display: none; }

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 300;
  list-style: none;
  min-width: 44px;
}
.lang-dropdown__menu li { display: block; }

.lang-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: none;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.lang-option:hover  {
  border-color: var(--purple);
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(108,92,231,0.2);
}
.lang-option.active { border-color: var(--purple); }

/* ── Hamburger ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  padding: 4px 2px;
  line-height: 1;
  margin-left: auto;
  transition: color 0.4s ease;
}

/* ── Mobile menu — always solid ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 28px 20px;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }

.mobile-nav-link {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color var(--ease);
}
.mobile-nav-link:hover { color: var(--blue); }

.mobile-lang-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 0 10px;
  flex-wrap: wrap;
}
.mobile-lang-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 50%;
  padding: 3px;
  cursor: pointer;
  transition: border-color var(--ease), transform var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-lang-btn:hover  { border-color: var(--purple); transform: scale(1.08); }
.mobile-lang-btn.active { border-color: var(--purple); }

.mobile-contact-btn { align-self: flex-start; margin-top: 4px; }

/* ==============================================
   SECTION BASE
=============================================== */
.section { padding: 96px 0; }
.section--light { background: var(--light-bg); }
.section--white { background: var(--white); }
.section--navy  { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 56px; }

.section-title {
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.022em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ==============================================
   HERO — extends behind fixed navbar
=============================================== */
.hero {
  position: relative;
  background: var(--navy);
  /* top padding = content gap above + nav height absorbed visually */
  padding: 152px 0 108px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,92,231,0.20) 0%, rgba(108,92,231,0.04) 50%, transparent 70%);
  pointer-events: none;
}
/* Second subtle glow bottom-left */
.hero__glow::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,195,0,0.06) 0%, transparent 65%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
  opacity: 0.7;
}
.hero__headline {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.17;
  letter-spacing: -0.028em;
  margin-bottom: 22px;
}
.hero__subhead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero__cta { font-size: 1rem; padding: 13px 28px; }
.hero__badges {
  margin-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.02em;
}

/* ==============================================
   SERVICE CARDS
=============================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(108,92,231,0.2);
}
.card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--purple-lt);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  color: var(--purple);
  margin-bottom: 18px;
}
.card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.68;
}

/* ==============================================
   START YOUR PROJECT — TRIGGER + FLOW
=============================================== */
.flow-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 8px 0 0;
}
.flow-trigger__btn {
  font-size: 1.0625rem;
  padding: 14px 36px;
}
.flow-trigger__note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Flow wrapper */
.flow-wrapper {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.35s ease;
  padding-top: 8px;
}
.flow-wrapper.visible { opacity: 1; }

/* Progress bar */
.step-progress {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 28px;
  overflow: hidden;
}
.step-progress__bar {
  height: 100%;
  background: var(--purple);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-indicator {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Steps */
.step { display: none; opacity: 0; transition: opacity 0.3s ease; }
.step.active  { display: block; }
.step.visible { opacity: 1; }

.step-question {
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.choice-grid { display: grid; gap: 12px; margin-bottom: 28px; }
.choice-grid--2 { grid-template-columns: repeat(2, 1fr); }
.choice-grid--3 { grid-template-columns: repeat(3, 1fr); }

.choice-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: border-color var(--ease), box-shadow var(--ease),
              transform var(--ease), background var(--ease);
}
.choice-box:hover {
  border-color: var(--purple);
  box-shadow: 0 2px 12px rgba(108,92,231,0.12);
  transform: translateY(-2px);
}
.choice-box:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; }
.choice-box.selected {
  border-color: var(--purple);
  background: var(--purple-lt);
}
.choice-box--icon { align-items: flex-start; }

.choice-box__icon { font-size: 1.375rem; color: var(--purple); margin-bottom: 2px; }
.choice-box__title { font-size: 0.9375rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.choice-box__desc  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }

.step-actions { display: flex; justify-content: center; margin-top: 4px; }
.step-actions--row { justify-content: space-between; align-items: center; }
.step-continue:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-back {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--ease);
}
.btn-back:hover { color: var(--navy); }

.other-input-wrap { margin-bottom: 4px; }
.other-input-wrap .flow-textarea { margin-bottom: 0; }

.contact-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
.contact-field { display: flex; flex-direction: column; gap: 5px; }
.contact-field--full { grid-column: 1 / -1; }
.field-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}
.flow-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-primary);
  outline: none;
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.flow-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(108,92,231,0.1);
}
.flow-input::placeholder { color: var(--text-muted); }
.flow-input.error,
.flow-textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.08);
}
.field-error {
  font-size: 0.84rem;
  color: #e53e3e;
  margin-bottom: 14px;
}

.flow-textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.65;
  resize: vertical;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  display: block;
  margin-bottom: 22px;
  background: var(--white);
}
.flow-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(108,92,231,0.1);
}
.flow-textarea::placeholder { color: var(--text-muted); }

.flow-success { text-align: center; padding: 56px 24px; opacity: 0; transition: opacity 0.35s ease; }
.flow-success.visible { opacity: 1; }
.flow-success__icon { display: block; font-size: 2.75rem; color: #22c55e; margin-bottom: 16px; }
.flow-success__text { font-size: 1.25rem; font-weight: 600; color: var(--navy); }

/* ==============================================
   HOW WE WORK
=============================================== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  position: relative;
}
/* Connector line between steps */
.how-grid::before {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 1px;
  background: linear-gradient(to right, var(--border) 0%, var(--purple) 50%, var(--border) 100%);
  opacity: 0.4;
  pointer-events: none;
}

.how-step__number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  background: var(--purple);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  letter-spacing: 0;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.how-step__title { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.how-step__desc  { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.68; }

/* ==============================================
   ABOUT
=============================================== */
.about-intro { max-width: 680px; }

.about-pillars {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
}
.about-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 28px;
  flex: 1;
  min-width: 180px;
  border-right: 1px solid var(--border);
}
.about-pillar:last-child { border-right: none; }
.about-pillar__icon {
  font-size: 1.375rem;
  color: var(--purple);
  flex-shrink: 0;
}
.about-pillar__text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

/* ==============================================
   CONTACT
=============================================== */
.contact-section .section-header { margin-bottom: 44px; }
.contact__title { color: var(--white) !important; }
.contact__sub   { color: rgba(255,255,255,0.62) !important; }

.contact-cards-wrap { display: flex; justify-content: center; margin-bottom: 28px; }

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 56px;
  text-align: center;
  min-width: 280px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  border-color: rgba(255,255,255,0.24);
}
.contact-card__icon  { font-size: 1.75rem; color: var(--yellow); margin-bottom: 4px; }
.contact-card__value { font-size: 1.0625rem; font-weight: 600; color: var(--white); transition: color var(--ease); }
.contact-card:hover .contact-card__value { color: var(--yellow); }
.contact-card__note  { font-size: 0.875rem; color: rgba(255,255,255,0.45); }

.contact__address {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
  letter-spacing: 0.01em;
}

/* ==============================================
   FOOTER
=============================================== */
.footer { background: #061929; padding: 22px 0; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 0.875rem; color: rgba(255,255,255,0.35); }
.footer__links { display: flex; gap: 20px; }
.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: color var(--ease);
}
.footer__link:hover { color: rgba(255,255,255,0.7); }

/* ==============================================
   MODALS
=============================================== */
.modal-overlay[hidden] { display: none; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9,36,63,0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(3px);
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 620px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 44px 40px 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
  line-height: 1;
}
.modal-close:hover { color: var(--navy); background: var(--light-bg); }
.modal-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  padding-right: 32px;
}
.modal-content p  { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.modal-content h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 24px 0 8px; }
.modal-content a  { color: var(--blue); text-decoration: underline; }
.modal-content a:hover { color: var(--blue-dark); }
.modal-content em { font-size: 0.85rem; color: var(--text-muted); }

/* ==============================================
   SCROLL FADE-IN
=============================================== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ==============================================
   RTL SUPPORT
=============================================== */
[dir="rtl"] .navbar__logo          { flex-direction: row-reverse; }
[dir="rtl"] .navbar__inner         { flex-direction: row-reverse; }
[dir="rtl"] .navbar__nav           { flex-direction: row-reverse; }
[dir="rtl"] .navbar__right         { flex-direction: row-reverse; }
[dir="rtl"] .hero__inner           { text-align: right; }
[dir="rtl"] .hero__eyebrow         { flex-direction: row-reverse; }
[dir="rtl"] .choice-box            { text-align: right; }
[dir="rtl"] .footer__inner         { flex-direction: row-reverse; }
[dir="rtl"] .mobile-lang-row       { flex-direction: row-reverse; }
[dir="rtl"] .lang-dropdown__menu   { right: auto; left: 0; }
[dir="rtl"] .modal-close           { right: auto; left: 16px; }
[dir="rtl"] .modal-title           { padding-right: 0; padding-left: 32px; }
[dir="rtl"] .about-pillar          { flex-direction: row-reverse; border-right: none; border-left: 1px solid var(--border); }
[dir="rtl"] .about-pillar:last-child { border-left: none; }

/* ==============================================
   RESPONSIVE
=============================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid      { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .how-grid::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .navbar__nav                  { display: none; }
  .navbar__right .lang-dropdown { display: none; }
  .navbar__right .btn           { display: none; }
  .hamburger                    { display: flex; }

  .hero { padding: 112px 0 72px; }

  .services-grid  { grid-template-columns: 1fr; }
  .choice-grid--2 { grid-template-columns: 1fr; }
  .choice-grid--3 { grid-template-columns: repeat(2, 1fr); }

  .how-grid { grid-template-columns: 1fr; gap: 28px; }

  .about-pillars  { max-width: 100%; }
  .about-pillar   { border-right: none; border-bottom: 1px solid var(--border); }
  .about-pillar:last-child { border-bottom: none; }
  [dir="rtl"] .about-pillar { border-left: none; border-bottom: 1px solid var(--border); }

  .contact-card { padding: 26px 32px; min-width: 0; width: 100%; max-width: 340px; }
  .modal-box    { padding: 36px 24px 28px; }
}

@media (max-width: 480px) {
  .hero           { padding: 100px 0 60px; }
  .choice-grid--3 { grid-template-columns: 1fr; }
  .footer__inner  { flex-direction: column; text-align: center; }
  .contact-fields { grid-template-columns: 1fr; }
}
