/* ═══════════════════════════════════════════════════
   MAR Technology — Superhuman-Inspired Design System
   Based on DESIGN.md: purple hero → white canvas → dark footer
   ═══════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'IBM Plex Sans Arabic', system-ui, -apple-system, Helvetica Neue, sans-serif;
  font-weight: 400;
  color: #292827;
  background: #fff;
  direction: rtl;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Tokens ── */
:root {
  --hero:     #050505;
  --hero-mid: #111111;
  --lavender: #00f0ff;
  --amethyst: #0070f3;
  --charcoal: #0a0a0a;
  --cream:    #f8f9fa;
  --parchment:#eaeaea;
  --dark-bg:  #000000;
  --white-95: rgba(255,255,255,0.95);
  --white-80: rgba(255,255,255,0.80);
  --white-20: rgba(255,255,255,0.20);
  --max-w:    1200px;
  --nav-h:    90px;
  --r-sm:     8px;
  --r-lg:     16px;
}

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ═══════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════ */
.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #000;
  color: var(--white-80);
  text-align: center;
  padding: 10px 48px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.ann-link {
  color: var(--lavender);
  font-weight: 600;
  transition: opacity 0.2s;
}
.ann-link:hover { opacity: 0.7; }
.ann-close {
  position: absolute;
  left: 16px;
  color: var(--white-80);
  font-size: 20px;
  line-height: 1;
  padding: 4px 8px;
  transition: opacity 0.2s;
}
.ann-close:hover { opacity: 0.6; }
.announcement-bar.hidden { display: none; }

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--parchment);
  height: var(--nav-h);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-wordmark {
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  gap: 0;
  margin-left: auto; /* RTL: pushes links to the left, keeping logo + CTA on the right */
}
.nav-link {
  font-size: 17px;
  font-weight: 500;
  color: #555;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--charcoal); background: #f5f4f2; }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-action-link {
  font-size: 17px;
  font-weight: 500;
  color: #555;
  padding: 8px 14px;
  transition: color 0.2s;
}
.nav-action-link:hover { color: var(--charcoal); }
.btn-signup {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--charcoal);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--r-lg);
  transition: background 0.2s, transform 0.15s;
}
.btn-signup:hover { background: #1a1a18; transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; padding: 6px; color: var(--charcoal); }
.mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--parchment);
  padding: 12px 32px 20px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mob-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  padding: 12px 12px;
  border-radius: var(--r-sm);
  transition: background 0.2s;
}
.mob-link:hover { background: #f5f4f2; }
.mob-cta { margin-top: 8px; text-align: center; justify-content: center; }

/* ═══════════════════════════════════════════════════
   HERO — Deep purple gradient, Superhuman style
   ═══════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(160deg, var(--hero) 0%, #0a0a0a 40%, #111 70%, #1a1a1a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

/* subtle noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.hero-h1 {
  font-size: clamp(52px, 6.5vw, 80px);
  font-weight: 700;
  line-height: 0.96;
  color: var(--white-95);
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--white-80);
  max-width: 560px;
  margin: 0 auto 40px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--charcoal);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--r-lg);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 72px;
}
.btn-hero:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.btn-hero svg { flex-shrink: 0; }

/* Hero Visual — floating cards */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 340px;
}

/* Floating cards */
.hcard {
  position: absolute;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  color: var(--white-95);
  font-size: 13px;
  animation: float-card 6s ease-in-out infinite;
}
.hcard-1 {
  left: 0; top: 20px;
  width: 240px;
  animation-delay: 0s;
}
.hcard-2 {
  right: 0; top: 0;
  width: 200px;
  animation-delay: 2s;
}
.hcard-3 {
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 280px;
  animation-delay: 4s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hcard-3 { animation: float-card-center 6s ease-in-out 4s infinite; }
@keyframes float-card-center {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.hcard-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--white-80);
}
.hcard-dot { width: 8px; height: 8px; border-radius: 50%; }
.hcard-dot.green { background: #4ade80; }

.hcard-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.hcard-label { color: var(--white-80); }
.hcard-status { font-size: 11px; font-weight: 600; }
.hcard-status.ok { color: #86efac; }
.hcard-status.warn { color: #fde047; }

.hcard-bar {
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin: 12px 0 6px;
  overflow: hidden;
}
.hcard-bar-fill {
  height: 100%;
  background: var(--lavender);
  border-radius: 2px;
}
.hcard-footer { font-size: 11px; color: var(--white-80); }

.hcard-icon-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.hcard-shield {
  width: 42px; height: 42px;
  background: rgba(0,240,255,0.15);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.hcard-sec-label { font-size: 13px; font-weight: 600; }
.hcard-sec-desc { font-size: 12px; color: #86efac; margin-bottom: 10px; }
.hcard-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.hcard-tag {
  font-size: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 3px 8px;
  color: var(--white-80);
}

.hcard-chat { margin-bottom: 12px; }
.chat-bubble {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 85%;
  margin-bottom: 6px;
  line-height: 1.4;
}
.chat-bubble.left {
  background: rgba(255,255,255,0.12);
  color: var(--white-95);
}
.chat-bubble.right {
  background: var(--amethyst);
  color: #fff;
  margin-right: auto;
  margin-left: auto;
  float: left;
}
.hcard-support-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #86efac;
  clear: both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
}
.badge-dot.pulse {
  animation: pulse-badge 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
}
@keyframes pulse-badge {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ═══════════════════════════════════════════════════
   TRUSTED BY — White canvas, thin border logos
   ═══════════════════════════════════════════════════ */
.trusted {
  padding: 56px 0;
  background: #fff;
}
.trusted-label {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #888;
  margin-bottom: 32px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 64px;
}
.partner-logo {
  height: 67px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}
.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   SUITE / SERVICES — White canvas + tabs
   ═══════════════════════════════════════════════════ */
.suite {
  padding: 80px 0;
  background: #f8f7f5;
}
.suite-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 20px;
}
.suite-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -1.2px;
  line-height: 0.96;
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border: 1.5px solid var(--parchment);
  border-radius: var(--r-lg);
  font-size: 14px;
  font-weight: 600;
  color: var(--amethyst);
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-outline-dark:hover { border-color: var(--amethyst); background: #f5f0ff; }

/* Tabs */
.suite-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--parchment);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 0;
  background: #fff;
}
.stab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #777;
  border-left: 1px solid var(--parchment);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.stab:first-child { border-left: none; }
.stab.active { background: #ede9e2; color: var(--charcoal); font-weight: 600; }
.stab:hover:not(.active) { background: #f5f4f2; color: var(--charcoal); }

/* Suite panels */
.suite-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--parchment);
  border-top: none;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  overflow: hidden;
}
.suite-panel.active { display: block; }

.panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
}
.panel-text {
  padding: 48px 48px 48px 40px;
  border-left: 1px solid var(--parchment);
}
.panel-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--amethyst);
  margin-bottom: 16px;
}
.panel-h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}
.panel-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #6b6866;
  margin-bottom: 20px;
}
.panel-learn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--amethyst);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 28px;
  transition: opacity 0.2s;
}
.panel-learn:hover { opacity: 0.7; }
.panel-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.panel-features li {
  font-size: 14px;
  color: var(--charcoal);
  padding-right: 16px;
  position: relative;
}
.panel-features li::before {
  content: '○';
  position: absolute;
  right: 0;
  color: #bbb;
  font-size: 11px;
  top: 2px;
}

/* Panel visual card */
.panel-visual {
  padding: 48px 40px;
  background: #f8f7f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel-card {
  width: 100%;
  max-width: 340px;
  background: #fff;
  border: 1px solid var(--parchment);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.pcard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.pcard-title { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.pcard-status { font-size: 12px; font-weight: 600; }
.pcard-status.green { color: #16a34a; }
.pcard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--parchment);
}
.metric { text-align: center; }
.m-val { display: block; font-size: 18px; font-weight: 700; color: var(--charcoal); }
.m-lbl { display: block; font-size: 11px; color: #888; margin-top: 2px; }

.pcard-list { display: flex; flex-direction: column; gap: 10px; }
.pcard-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--charcoal);
}
.pi-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pi-dot.green { background: #16a34a; }
.pi-dot.yellow { background: #eab308; }

/* ═══════════════════════════════════════════════════
   BECOMING — Dark teal-purple section
   ═══════════════════════════════════════════════════ */
.becoming {
  background: #000000;
  overflow: hidden;
}
.becoming-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.becoming-text {
  padding: 80px 64px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.becoming-h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.0;
  margin-bottom: 24px;
}
.becoming-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 440px;
}
.becoming-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}
.becoming-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  mix-blend-mode: luminosity;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS — White canvas grid
   ═══════════════════════════════════════════════════ */
.testimonials-section { padding: 80px 0; background: #fff; }

.section-header-centered { text-align: center; margin-bottom: 56px; }
.sh-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -1.2px;
  line-height: 0.96;
  margin-bottom: 12px;
}
.sh-sub { font-size: 16px; color: #888; }

.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tst-card {
  padding: 28px;
  border: 1px solid var(--parchment);
  border-radius: var(--r-lg);
  background: #fff;
  transition: box-shadow 0.25s, transform 0.25s;
}
.tst-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.tst-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 24px;
  font-style: italic;
}
.tst-author { display: flex; align-items: center; gap: 12px; }
.tst-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--amethyst);
  flex-shrink: 0;
}
.tst-name { display: block; font-size: 14px; font-weight: 700; color: var(--charcoal); }
.tst-role { display: block; font-size: 12px; color: #888; margin-top: 2px; }

/* ═══════════════════════════════════════════════════
   FINAL CTA — Cinematic purple/blue gradient
   ═══════════════════════════════════════════════════ */
.final-cta {
  background: linear-gradient(135deg, #000000 0%, #111111 40%, #1a1a1a 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.final-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.fcta-text { }
.fcta-h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 0.96;
  margin-bottom: 36px;
}
.fcta-btn { margin-top: 0; background: var(--cream); color: var(--charcoal); }
.fcta-btn:hover { background: #d9d5cd; transform: translateY(-2px); }

/* Contact form in CTA */
.fcta-form-wrap { }
.fcta-form {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-lg);
  padding: 36px;
  backdrop-filter: blur(8px);
}
.form-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fl {
  font-size: 12px;
  font-weight: 600;
  color: var(--white-80);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fi {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-sm);
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  direction: rtl;
}
.fi::placeholder { color: rgba(255,255,255,0.4); }
.fi:focus { border-color: var(--lavender); background: rgba(255,255,255,0.14); }
.fs { appearance: none; cursor: pointer; }
.fs option { color: #000; background: #fff; }
.ft { resize: vertical; min-height: 88px; }
.btn-submit {
  width: 100%;
  padding: 13px;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.btn-submit:hover { background: #d9d5cd; transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════
   FOOTER — Dark maroon (Superhuman exact)
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  padding-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-wordmark {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.footer-tagline { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.55); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.fc-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.fc-links { display: flex; flex-direction: column; gap: 10px; }
.fc-link {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.fc-link:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.fb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.fb-copy, .fb-address {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .panel-inner { grid-template-columns: 1fr; }
  .panel-visual { padding: 32px; }
  .panel-text { border-left: none; border-bottom: 1px solid var(--parchment); }
  .becoming-inner { grid-template-columns: 1fr; }
  .becoming-visual { min-height: 260px; }
  .becoming-text { padding: 56px 32px; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { max-width: 100%; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .announcement-bar { font-size: 12px; padding: 10px 40px; }
  
  .nav-inner { justify-content: space-between; }
  .nav-links { display: none !important; }
  .nav-actions { display: flex !important; margin-inline-start: auto; margin-inline-end: 16px; gap: 8px; }
  .nav-actions > *:not(.lang-switch) { display: none !important; }
  .hamburger { display: flex; }

  .hero { padding-top: 60px; }
  .hero-h1 { letter-spacing: -1px; }
  .hero-visual { display: none; }
  .btn-hero { margin-bottom: 0; }

  .suite { padding: 56px 0; }
  .suite-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .suite-tabs { grid-template-columns: repeat(2, 1fr); }
  .stab { font-size: 13px; padding: 14px 8px; }
  .stab:nth-child(1), .stab:nth-child(2) { border-bottom: 1px solid var(--parchment); }
  .stab:nth-child(1) { border-left: 1px solid var(--parchment); }
  .stab:nth-child(2) { border-left: none; }

  .panel-text { padding: 28px 24px; }
  .tst-grid { grid-template-columns: 1fr; }

  .trusted-logos { flex-direction: column; }
  .tlogo { border: 1px solid var(--parchment) !important; border-top: none !important; border-radius: 0 !important; width: 100%; }
  .tlogo:first-child { border-top: 1px solid var(--parchment) !important; border-radius: var(--r-sm) var(--r-sm) 0 0 !important; }
  .tlogo:last-child { border-radius: 0 0 var(--r-sm) var(--r-sm) !important; }

  .final-cta { padding: 64px 0; }
  .fcta-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-cols { grid-template-columns: 1fr 1fr; }
  .fb-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .suite-tabs { grid-template-columns: 1fr; }
  .stab { border-left: none !important; border-bottom: 1px solid var(--parchment); }
  .stab:last-child { border-bottom: none; }
  .footer-cols { grid-template-columns: 1fr; }
}
