/* ============================================================
   PAGE STYLES
   ============================================================ */

/* ============================================================
   VIDEO HERO (full-width autoplay video, replaces image hero)
   Visible only on desktop — on mobile we show .mobile-hero instead
   ============================================================ */
.video-hero {
  position: relative;
  width: 100%;
  height: clamp(420px, 75vh, 720px);
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) {
  .video-hero { display: none; }
}

/* ============================================================
   MOBILE HERO (image + Watch button — replaces video on mobile)
   Visible only on mobile, hidden on desktop
   ============================================================ */
.mobile-hero {
  display: none;
}
@media (max-width: 880px) {
  .mobile-hero {
    display: block;
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 32px var(--gutter-h) 28px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .mobile-hero-bg {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
  }
  .mobile-hero-bg::before,
  .mobile-hero-bg::after {
    content: '';
    position: absolute;
    border: 1px solid var(--line);
    inset: 12%;
    z-index: 0;
    pointer-events: none;
  }
  .mobile-hero-bg::after {
    inset: 18%;
    transform: rotate(45deg);
  }
  .mobile-hero-bg img {
    position: relative;
    z-index: 2;
    width: min(220px, 60%);
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
  }
  .mobile-hero-watch {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    width: fit-content;
    padding: 12px 22px;
    background: var(--lime);
    color: var(--bg);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: transform 0.3s var(--ease);
  }
  .mobile-hero-watch:hover { transform: scale(1.04); }
  .mobile-hero-watch svg { flex-shrink: 0; width: 16px; height: 16px; }
}
.video-hero-frame {
  position: absolute;
  inset: 0;
  /* Cinematic black gradient overlay at top (for nav legibility) and bottom (for scroll cue) */
}
.video-hero-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.55) 0%, transparent 18%, transparent 78%, rgba(10,10,12,0.85) 100%);
}
/* Subtle lime corner accents to keep brand identity */
.video-hero-frame::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(193, 229, 19, 0.25);
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 720px) {
  .video-hero-frame::after { inset: 12px; }
}
.video-hero-frame iframe,
.video-hero-frame #propadel-video-player {
  position: absolute;
  /* Cover the container — YouTube iframes have a native 16:9 ratio,
     we scale up so the video always fills the viewport even on tall screens */
  top: 50%;
  left: 50%;
  width: 177.77vh;       /* 16:9 of viewport height */
  min-width: 100%;
  height: 56.25vw;       /* 9:16 of viewport width */
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  z-index: 1;
}
.video-hero-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  /* Invisible click overlay — makes the entire video clickable to open on YouTube */
  /* Disabled by default so users can interact with YouTube controls if any.
     Hidden visually but available for keyboard nav via aria-label. */
  display: none;
}
/* Scroll-down indicator at bottom */
.video-hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 22px;
  height: 38px;
  border: 1px solid rgba(193, 229, 19, 0.6);
  border-radius: 12px;
  pointer-events: none;
}
.video-hero-scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--lime);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scrollDown 1.6s var(--ease-out) infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ============================================================
   HERO BELOW VIDEO (text + CTAs, centered single column)
   ============================================================ */
.hero.hero-below-video {
  display: block !important;
  grid-template-columns: none !important;
  min-height: auto;
  text-align: center;
  padding: clamp(60px, 9vw, 120px) var(--gutter-h) clamp(60px, 8vw, 100px);
  gap: 0;
  overflow: visible;
}
.hero.hero-below-video .hero-content-centered {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.hero.hero-below-video .eyebrow {
  display: inline-flex;
}
.hero.hero-below-video h1 {
  font-size: clamp(34px, 4.6vw, 60px);
  margin: 24px 0 28px;
  text-align: center;
}
.hero.hero-below-video p {
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
}
.hero.hero-below-video .hero-cta {
  justify-content: center;
}
@media (max-width: 720px) {
  .hero.hero-below-video {
    padding: 36px var(--gutter-h) 48px;
  }
  .hero.hero-below-video h1 {
    font-size: clamp(30px, 7.2vw, 40px);
    margin: 16px 0 20px;
    line-height: 1.1;
  }
  .hero.hero-below-video .eyebrow {
    font-size: 11px;
  }
  .hero.hero-below-video p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
  }
}
/* Inline stats (used in hero-below-video) — universal override */
.hero-stats.hero-stats-inline,
.hero-stats-inline {
  position: static !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  display: flex !important;
  justify-content: center !important;
  gap: clamp(40px, 6vw, 80px) !important;
  margin-top: clamp(48px, 6vw, 72px) !important;
  padding-top: clamp(40px, 5vw, 56px) !important;
  border-top: 1px solid var(--line) !important;
  pointer-events: auto !important;
  z-index: auto !important;
}
.hero-stats-inline .hero-stat strong {
  font-size: 32px;
}
@media (max-width: 540px) {
  .hero-stats-inline {
    gap: 28px !important;
    flex-wrap: wrap !important;
  }
}

/* ============================================================
   HERO (legacy two-column — kept for other pages if needed)
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 72px - 48px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: var(--section-y) var(--gutter-h);
  overflow: hidden;
}
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 40px;
  }
}

.hero-content { position: relative; z-index: 2; }
.hero h1 {
  margin: 24px 0 32px;
  font-weight: 800;
}
.hero h1 .accent { display: block; color: var(--lime); font-style: italic; font-family: var(--font-italic); font-weight: 400; font-size: 0.7em; margin-top: 12px; }
.hero p {
  font-size: clamp(15px, 1.1vw, 17px);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 10%;
  border: 1px solid var(--line);
  z-index: 0;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 18%;
  border: 1px solid var(--line);
  z-index: 0;
  transform: rotate(45deg);
}
.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(520px, 90%);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  animation: fadeIn 1s var(--ease-out) 0.3s both;
}
.hero-stats {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  z-index: 3;
  pointer-events: none;
}
.hero-stat {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--silver-dim);
  text-transform: uppercase;
}
.hero-stat strong {
  display: block;
  color: var(--lime);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
  background: rgba(193, 229, 19, 0.03);
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.ticker-track > span {
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--lime);
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.ticker-track > span::after {
  content: '◆';
  color: var(--lime-dim);
}

/* ============================================================
   SECTION
   ============================================================ */
.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ============================================================
   MODELS GRID (homepage preview + models page)
   ============================================================ */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .models-grid { grid-template-columns: 1fr; }
}
.model-card {
  position: relative;
  padding: 36px 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  transition: all 0.4s var(--ease);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.model-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.model-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.model-card:hover::before { transform: scaleX(1); }

.model-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.model-court {
  width: 100%;
  height: 100px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
}
.model-court svg { width: 100%; height: 100%; }
.model-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.model-tagline {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--lime);
  font-size: 16px;
  margin-bottom: 24px;
}
.model-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.model-features li {
  font-size: 13px;
  padding: 8px 0;
  color: var(--silver-dim);
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}
.model-features li:last-child { border-bottom: none; }
.model-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--lime);
  flex-shrink: 0;
  margin-top: 9px;
}
html[dir="rtl"] .model-features li { flex-direction: row-reverse; }

.model-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--lime);
  padding: 10px 0;
  border-top: 1px solid var(--lime);
  margin-top: auto;
}
html[lang="ar"] .model-tag { letter-spacing: 0.05em; }

/* ============================================================
   SERVICES (homepage)
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .services { grid-template-columns: 1fr; } }
.service {
  padding: 60px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.3s;
}
.service:last-child { border-right: none; }
@media (max-width: 880px) {
  .service { border-right: none; border-bottom: 1px solid var(--line); }
  .service:last-child { border-bottom: none; }
}
.service:hover { background: rgba(193, 229, 19, 0.03); }
.service-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.service h3 {
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--white);
}
html[lang="ar"] .service h3 { letter-spacing: 0; text-transform: none; }
.service p { font-size: 14px; }

/* ============================================================
   CONTACT BLOCK
   ============================================================ */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 80px);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  position: relative;
}
@media (max-width: 880px) {
  .contact-block { grid-template-columns: 1fr; gap: 40px; padding: 48px 32px; }
}
.contact-info ul { list-style: none; margin: 32px 0 0; display: flex; flex-direction: column; gap: 20px; }
.contact-info li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
}
.contact-info .label {
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.2em;
  border-right: 1px solid var(--line);
  padding-right: 16px;
  min-width: 24px;
}
html[dir="rtl"] .contact-info .label { border-right: none; border-left: 1px solid var(--line); padding-right: 0; padding-left: 16px; }
.contact-info .value { font-size: 15px; color: var(--white); }

/* ============================================================
   FORM
   ============================================================ */
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-dim);
  font-weight: 600;
}
html[lang="ar"] .form label { letter-spacing: 0; text-transform: none; }
.form input, .form select, .form textarea {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--lime);
}
.form textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--lime) 50%), linear-gradient(135deg, var(--lime) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
html[dir="rtl"] .form select { background-position: 20px 50%, 14px 50%; padding-right: 16px; padding-left: 40px; }

.form-submit { margin-top: 8px; align-self: flex-start; }
html[dir="rtl"] .form-submit { align-self: flex-end; }
.form-message {
  margin-top: 12px;
  padding: 12px 16px;
  font-size: 13px;
  border-left: 2px solid var(--lime);
  background: rgba(193, 229, 19, 0.05);
  display: none;
}
html[dir="rtl"] .form-message { border-left: none; border-right: 2px solid var(--lime); }
.form-message.show { display: block; animation: fadeInUp 0.4s var(--ease-out); }
.form-message-error {
  border-left-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.06);
  color: #ffa9a9;
}
html[dir="rtl"] .form-message-error { border-right-color: #ff6b6b; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { padding: clamp(80px, 10vw, 140px) 0 60px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 60px;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-grid h3 { letter-spacing: 0.06em; margin-bottom: 16px; }
.about-grid p { margin-bottom: 16px; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
}
@media (max-width: 720px) { .values { grid-template-columns: 1fr; } }
.value {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.value-num {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--lime);
  font-size: 14px;
  margin-bottom: 16px;
}
.value h4 {
  color: var(--white);
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  text-transform: none;
}
.value p { font-size: 14px; }

/* ============================================================
   PAGE HEADER (for inner pages)
   ============================================================ */
.page-hero {
  padding: clamp(80px, 10vw, 140px) 0 60px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero h1 {
  margin: 24px 0 24px;
  font-size: clamp(40px, 6vw, 80px);
}
.page-hero p { max-width: 520px; }

/* ============================================================
   CONTACT PAGE — extra map block
   ============================================================ */
.contact-map {
  grid-column: 1 / -1;
  height: 280px;
  background:
    linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--line);
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.contact-map::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(193, 229, 19, 0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(193, 229, 19, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.contact-map-pin {
  position: relative;
  z-index: 2;
  text-align: center;
}
.contact-map-pin .dot {
  width: 16px; height: 16px;
  background: var(--lime);
  border-radius: 50%;
  margin: 0 auto 16px;
  position: relative;
}
.contact-map-pin .dot::before, .contact-map-pin .dot::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--lime);
  animation: ping 2s var(--ease-out) infinite;
}
.contact-map-pin .dot::after { animation-delay: 1s; }
@keyframes ping {
  to { transform: scale(3.5); opacity: 0; }
}
.contact-map-pin p { font-size: 12px; letter-spacing: 0.22em; color: var(--lime); text-transform: uppercase; }

/* ============================================================
   TRUST / STATS BAND (homepage)
   ============================================================ */
.trust-band {
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 6vw, 80px) 0;
  background: linear-gradient(180deg, transparent, rgba(193, 229, 19, 0.02));
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
}
@media (max-width: 880px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.trust-stat {
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.trust-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--line);
}
@media (max-width: 880px) {
  .trust-stat:nth-child(2)::after { display: none; }
}
html[dir="rtl"] .trust-stat:not(:last-child)::after { right: auto; left: 0; }
.trust-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.trust-unit {
  font-size: 0.5em;
  font-weight: 600;
  color: var(--silver-dim);
  letter-spacing: 0;
}
.trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
html[lang="ar"] .trust-label { letter-spacing: 0; text-transform: none; }
.trust-sub {
  font-size: 12px;
  color: var(--silver-dim);
  font-style: italic;
  font-family: var(--font-italic);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line);
  background: rgba(20, 20, 26, 0.5);
  transition: all 0.3s var(--ease);
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open] {
  border-color: var(--lime-dim);
  background: rgba(193, 229, 19, 0.04);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span:first-child { flex: 1; }
.faq-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--lime);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--lime);
  color: var(--bg);
  border-color: var(--lime);
}
.faq-item p {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver-dim);
  animation: fadeInUp 0.3s var(--ease-out);
}

/* ============================================================
   GALLERY (Réalisations page)
   ============================================================ */
.gallery-section {
  padding-bottom: clamp(60px, 8vw, 100px);
}

/* Filters */
.gallery-filters {
  display: flex;
  gap: 8px;
  margin-bottom: clamp(40px, 4vw, 56px);
  flex-wrap: wrap;
  justify-content: center;
  padding: 6px;
  background: rgba(20, 20, 26, 0.5);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.gallery-filter {
  padding: 10px 22px;
  background: transparent;
  color: var(--silver-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
html[lang="ar"] .gallery-filter { letter-spacing: 0; text-transform: none; font-size: 13px; }
.gallery-filter:hover {
  color: var(--white);
}
.gallery-filter.active {
  background: var(--lime);
  color: var(--bg);
}
@media (max-width: 600px) {
  .gallery-filters {
    border-radius: 16px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: stretch;
  }
  .gallery-filter {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    font-size: 10px;
    border-radius: 12px;
  }
}

/* Grid — masonry-like with CSS Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
}
@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  cursor: pointer;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  border-radius: 0;
  height: 100%;
}
.gallery-item.gallery-tall {
  grid-row: span 2;
}
@media (max-width: 720px) {
  .gallery-item.gallery-tall {
    grid-row: span 1;
  }
}
.gallery-item.hidden {
  display: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  display: block;
}
.gallery-item:hover {
  border-color: var(--lime-dim);
}
.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 12, 0.92) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
@media (hover: none) {
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 12, 0.92) 100%);
  }
}
.gallery-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--lime);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 12px;
  width: fit-content;
}
html[lang="ar"] .gallery-tag { letter-spacing: 0; text-transform: none; }
.gallery-overlay h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.gallery-overlay p {
  font-size: 13px;
  color: var(--silver-dim);
  font-family: var(--font-italic);
  font-style: italic;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.96);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open {
  display: flex;
  animation: fadeIn 0.3s var(--ease);
}
.lightbox-content {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.lightbox-content img {
  max-width: 100%;
  max-height: calc(100vh - 200px);
  object-fit: contain;
  border: 1px solid var(--lime-dim);
  border-radius: 0;
  box-shadow: 0 20px 80px rgba(193, 229, 19, 0.08);
}
.lightbox-caption {
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lightbox-caption strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}
.lightbox-caption span {
  font-size: 13px;
  color: var(--silver-dim);
  font-family: var(--font-italic);
  font-style: italic;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(20, 20, 26, 0.8);
  border: 1px solid var(--line);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transition: all 0.3s var(--ease);
  z-index: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--lime);
  color: var(--bg);
  border-color: var(--lime);
}
.lightbox-close {
  top: 24px;
  right: 24px;
  font-size: 28px;
}
.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  padding-bottom: 4px;
}
.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  padding-bottom: 4px;
}
@media (max-width: 720px) {
  .lightbox { padding: 16px; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 24px; }
  .lightbox-close { width: 40px; height: 40px; font-size: 22px; top: 16px; right: 16px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ============================================================
   CTA LARGE (used on Realisations page)
   ============================================================ */
.cta-large {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 60px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(193, 229, 19, 0.03), transparent);
  position: relative;
  overflow: hidden;
}
.cta-large::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(193, 229, 19, 0.08), transparent 60%);
  pointer-events: none;
}
.cta-large > * { position: relative; }
.cta-large h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 24px 0 24px;
  line-height: 1.05;
}
.cta-large p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--silver-dim);
  line-height: 1.7;
}
.cta-large .hero-cta {
  justify-content: center;
}

/* ============================================================
   PROCESS PAGE — Timeline (9 steps)
   ============================================================ */
.process-section {
  padding-bottom: clamp(60px, 8vw, 120px);
}
.process-timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding-left: clamp(60px, 8vw, 100px);
}
html[dir="rtl"] .process-timeline {
  padding-left: 0;
  padding-right: clamp(60px, 8vw, 100px);
}
/* Vertical line connecting steps */
.process-timeline::before {
  content: '';
  position: absolute;
  left: clamp(28px, 4vw, 48px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--lime-dim) 8%,
    var(--lime-dim) 92%,
    transparent 100%);
}
html[dir="rtl"] .process-timeline::before {
  left: auto;
  right: clamp(28px, 4vw, 48px);
}

.process-step {
  position: relative;
  padding-bottom: clamp(48px, 6vw, 80px);
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 3vw, 40px);
}
.process-step:last-child {
  padding-bottom: 0;
}

.process-step-number {
  position: absolute;
  left: calc(clamp(60px, 8vw, 100px) * -1);
  top: 0;
  width: clamp(56px, 7vw, 80px);
  height: clamp(56px, 7vw, 80px);
  background: var(--bg);
  border: 1px solid var(--lime);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--lime);
  letter-spacing: -0.02em;
  z-index: 2;
  transition: all 0.3s var(--ease);
}
html[dir="rtl"] .process-step-number {
  left: auto;
  right: calc(clamp(60px, 8vw, 100px) * -1);
}
.process-step.visible .process-step-number,
.process-step:hover .process-step-number {
  background: var(--lime);
  color: var(--bg);
  box-shadow: 0 0 0 6px rgba(193, 229, 19, 0.12);
}

.process-step-content {
  flex: 1;
  min-width: 0;
  background: rgba(20, 20, 26, 0.4);
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 40px);
  transition: all 0.3s var(--ease);
}
.process-step:hover .process-step-content {
  border-color: var(--lime-dim);
  background: rgba(20, 20, 26, 0.6);
}

.process-step-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(193, 229, 19, 0.08);
  border: 1px solid var(--lime-dim);
  color: var(--lime);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-radius: 4px;
}
html[lang="ar"] .process-step-tag { letter-spacing: 0; text-transform: none; font-size: 12px; }

.process-step-content h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.process-step-content p {
  color: var(--silver-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.process-step-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process-step-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--silver);
}
html[dir="rtl"] .process-step-list li {
  padding-left: 0;
  padding-right: 22px;
}
.process-step-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 1px;
  background: var(--lime);
}
html[dir="rtl"] .process-step-list li::before {
  left: auto;
  right: 0;
}

/* Mobile adaptation */
@media (max-width: 720px) {
  .process-timeline {
    padding-left: 56px;
  }
  html[dir="rtl"] .process-timeline {
    padding-left: 0;
    padding-right: 56px;
  }
  .process-timeline::before {
    left: 24px;
  }
  html[dir="rtl"] .process-timeline::before {
    left: auto;
    right: 24px;
  }
  .process-step-number {
    left: -56px;
    width: 48px;
    height: 48px;
    font-size: 14px;
  }
  html[dir="rtl"] .process-step-number {
    left: auto;
    right: -56px;
  }
}

/* ============================================================
   TIMING GRID (process page)
   ============================================================ */
.timing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(40px, 5vw, 56px);
}
@media (max-width: 880px) {
  .timing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .timing-grid { grid-template-columns: 1fr; }
}
.timing-card {
  padding: clamp(24px, 3vw, 36px);
  background: rgba(20, 20, 26, 0.5);
  border: 1px solid var(--line);
  text-align: center;
  transition: all 0.3s var(--ease);
}
.timing-card:hover {
  border-color: var(--lime-dim);
  transform: translateY(-4px);
}
.timing-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.timing-unit {
  font-size: 0.4em;
  color: var(--silver-dim);
  font-weight: 600;
  letter-spacing: 0;
  margin-left: 4px;
}
html[dir="rtl"] .timing-unit { margin-left: 0; margin-right: 4px; }
.timing-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
html[lang="ar"] .timing-card h4 { letter-spacing: 0; text-transform: none; }
.timing-card p {
  font-size: 13px;
  color: var(--silver-dim);
  line-height: 1.6;
}

/* ============================================================
   INVESTIR PAGE
   ============================================================ */

/* --- Key stats grid (4 large numbers) --- */
.invest-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 880px) {
  .invest-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .invest-stats { grid-template-columns: 1fr; }
}

.invest-stat {
  background: var(--bg);
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s var(--ease);
}
.invest-stat:hover {
  background: rgba(193, 229, 19, 0.04);
}
.invest-stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.04em;
}
.invest-stat-plus {
  color: var(--lime);
  font-weight: 600;
  letter-spacing: 0;
}
.invest-stat-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 12px;
}
html[lang="ar"] .invest-stat-label {
  letter-spacing: 0;
  text-transform: none;
  font-size: 15px;
}
.invest-stat-source {
  font-size: 11px;
  font-style: italic;
  font-family: var(--font-italic);
  color: var(--silver-dim);
  margin-top: 4px;
}
html[lang="ar"] .invest-stat-source {
  font-family: var(--font-body);
  font-style: normal;
}

/* --- Why padel works grid (3 cards) --- */
.invest-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(40px, 5vw, 56px);
}
@media (max-width: 880px) {
  .invest-why-grid { grid-template-columns: 1fr; }
}

.invest-why-card {
  position: relative;
  padding: clamp(28px, 3.5vw, 44px);
  background: rgba(20, 20, 26, 0.5);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.invest-why-card:hover {
  border-color: var(--lime-dim);
  background: rgba(20, 20, 26, 0.7);
  transform: translateY(-3px);
}
.invest-why-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.invest-why-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.invest-why-card p {
  color: var(--silver-dim);
  line-height: 1.7;
  font-size: 15px;
}

/* --- Algeria opportunity (split layout text + image) --- */
.invest-algeria {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 6vw, 80px) 0;
}
@media (max-width: 880px) {
  .invest-algeria { grid-template-columns: 1fr; }
}
.invest-algeria-content h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin: 16px 0 24px;
  line-height: 1.05;
}
.invest-algeria-content p {
  color: var(--silver-dim);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}
.invest-algeria-highlight {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--lime) !important;
  font-size: clamp(18px, 2vw, 22px) !important;
  line-height: 1.4 !important;
  border-left: 2px solid var(--lime);
  padding-left: 16px;
  margin-top: 28px !important;
}
html[dir="rtl"] .invest-algeria-highlight {
  border-left: none;
  border-right: 2px solid var(--lime);
  padding-left: 0;
  padding-right: 16px;
}
html[lang="ar"] .invest-algeria-highlight {
  font-family: var(--font-body);
  font-style: normal;
}
.invest-algeria-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
}
.invest-algeria-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.invest-algeria-visual:hover img {
  transform: scale(1.04);
}

/* --- Revenue grid (6 cards) --- */
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(40px, 5vw, 56px);
}
@media (max-width: 880px) {
  .revenue-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .revenue-grid { grid-template-columns: 1fr; }
}
.revenue-card {
  padding: clamp(24px, 3vw, 36px);
  background: rgba(20, 20, 26, 0.4);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.revenue-card:hover {
  border-color: var(--lime-dim);
  background: rgba(20, 20, 26, 0.6);
}
.revenue-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(193, 229, 19, 0.08);
  border: 1px solid var(--lime-dim);
  border-radius: 50%;
  color: var(--lime);
  margin-bottom: 24px;
  transition: all 0.3s var(--ease);
}
.revenue-card:hover .revenue-icon {
  background: var(--lime);
  color: var(--bg);
}
.revenue-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.revenue-card p {
  font-size: 14px;
  color: var(--silver-dim);
  line-height: 1.6;
}

/* --- Profiles grid (5 cards, asymmetric) --- */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(40px, 5vw, 56px);
}
@media (max-width: 980px) {
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .profiles-grid { grid-template-columns: 1fr; }
}
.profile-card {
  padding: clamp(28px, 3.5vw, 40px);
  background: rgba(20, 20, 26, 0.5);
  border: 1px solid var(--line);
  border-top: 2px solid var(--lime);
  transition: all 0.3s var(--ease);
}
.profile-card:hover {
  border-color: var(--lime-dim);
  border-top-color: var(--lime);
  background: rgba(20, 20, 26, 0.7);
  transform: translateY(-3px);
}
.profile-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.profile-card p {
  font-size: 14px;
  color: var(--silver-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}
.profile-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.profile-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  color: var(--silver);
}
html[dir="rtl"] .profile-list li {
  padding-left: 0;
  padding-right: 22px;
}
.profile-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 1px;
  background: var(--lime);
}
html[dir="rtl"] .profile-list li::before {
  left: auto;
  right: 0;
}

/* --- ROI highlight block --- */
.invest-roi {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 60px);
  background:
    radial-gradient(ellipse at center, rgba(193, 229, 19, 0.06), transparent 70%),
    var(--bg-elevated);
  border: 1px solid var(--lime-dim);
}
.invest-roi h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 24px 0 24px;
  line-height: 1.05;
}
.invest-roi p {
  max-width: 640px;
  margin: 0 auto 24px;
  color: var(--silver-dim);
  line-height: 1.8;
  font-size: 16px;
}
.invest-roi-disclaimer {
  font-size: 12px;
  font-style: italic;
  font-family: var(--font-italic);
  color: var(--silver-dim);
  opacity: 0.7;
  margin-top: 20px;
}
html[lang="ar"] .invest-roi-disclaimer {
  font-family: var(--font-body);
  font-style: normal;
}

/* ============================================================
   AUDIENCE SECTION (homepage — "Pour qui ?")
   ============================================================ */
.audience-section .section-head {
  margin-bottom: clamp(40px, 5vw, 56px);
}
.audience-section .section-head p {
  color: var(--silver-dim);
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
  max-width: 600px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 980px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .audience-grid { grid-template-columns: 1fr; }
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(28px, 3.5vw, 40px) clamp(24px, 3vw, 32px);
  background: rgba(20, 20, 26, 0.4);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
html[dir="rtl"] .audience-card::before {
  transform-origin: right;
}
.audience-card:hover {
  border-color: var(--lime-dim);
  background: rgba(20, 20, 26, 0.7);
  transform: translateY(-4px);
}
.audience-card:hover::before {
  transform: scaleX(1);
}

.audience-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(193, 229, 19, 0.06);
  border: 1px solid var(--lime-dim);
  border-radius: 50%;
  color: var(--lime);
  margin-bottom: 8px;
  transition: all 0.3s var(--ease);
}
.audience-card:hover .audience-icon {
  background: var(--lime);
  color: var(--bg);
  transform: scale(1.05);
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.audience-card p {
  font-size: 14px;
  color: var(--silver-dim);
  line-height: 1.65;
  flex: 1;
}

.audience-link {
  display: inline-block;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  transition: gap 0.3s var(--ease);
}
html[lang="ar"] .audience-link {
  letter-spacing: 0;
  text-transform: none;
  font-size: 13px;
}
.audience-card:hover .audience-link {
  letter-spacing: 0.22em;
}
html[lang="ar"] .audience-card:hover .audience-link {
  letter-spacing: 0;
}

/* ============================================================
   FORM — section divider + disclaimer (B2B enriched form)
   ============================================================ */
.form-section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0 4px;
}
.form-section-divider::before,
.form-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.form-section-divider span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  padding: 0 4px;
}
html[lang="ar"] .form-section-divider span {
  letter-spacing: 0;
  text-transform: none;
  font-size: 13px;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--silver-dim);
  font-style: italic;
  font-family: var(--font-italic);
  margin-top: 12px;
  line-height: 1.5;
}
html[lang="ar"] .form-disclaimer {
  font-style: normal;
  font-family: var(--font-body);
}
