/* ═══════════════════════════════════════════════════
   A2i Catalogue 2026 — Brutalist Luxury Design System
   ═══════════════════════════════════════════════════ */

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

/* ── CSS Variables ── */
:root {
  --navy: #1A1A2E;
  --navy-light: #2A2A4E;
  --gold: #C5A55A;
  --gold-light: #D4B96A;
  --red: #E30613;
  --red-light: #FF1A27;
  --grey: #F5F5F7;
  --white: #FFFFFF;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

ul,
ol {
  list-style: none;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
}

.label-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-label__line {
  width: 4rem;
  height: 2px;
}

/* ── Animations ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 {
  transition-delay: 0.1s;
}

.animate-delay-2 {
  transition-delay: 0.2s;
}

.animate-delay-3 {
  transition-delay: 0.3s;
}

.animate-delay-4 {
  transition-delay: 0.4s;
}

.animate-delay-5 {
  transition-delay: 0.5s;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  50% {
    transform: translateY(-8px) translateX(-50%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.5s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav__brand-text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-left: 1px solid rgba(197, 165, 90, 0.3);
  padding-left: 0.75rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: var(--gold);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__mobile-toggle {
  display: none;
  color: white;
  font-size: 1.5rem;
  padding: 0.5rem;
}

.nav__mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.nav__mobile-menu {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
}

.nav__mobile-menu.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.nav__mobile-link {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.nav__mobile-link:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy), rgba(26, 26, 46, 0.6), transparent);
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 6rem 0 6rem;
  animation: fadeInUp 1s 0.3s both;
  padding-left: 24px;
  padding-right: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 6rem);
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 900px;
  line-height: 0.95;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero__desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

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

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite, fadeIn 1s 1.5s both;
  color: var(--gold);
}

.hero__scroll-indicator svg {
  width: 24px;
  height: 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}

.btn--gold:hover {
  background: var(--gold-light);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--red {
  background: var(--red);
  color: var(--white);
}

.btn--red:hover {
  background: var(--red-light);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════
   MANIFESTE
   ═══════════════════════════════════════════════════ */
.manifeste {
  background: var(--navy);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.manifeste__watermark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.03;
  pointer-events: none;
}

.manifeste__watermark img {
  height: 320px;
  width: auto;
}

.manifeste__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.manifeste h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.05;
}

.manifeste h2 .gold {
  color: var(--gold);
}

.manifeste p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 800px;
}

.manifeste p strong {
  color: var(--white);
}

/* ═══════════════════════════════════════════════════
   VISION — MODÈLE INTÉGRÉ
   ═══════════════════════════════════════════════════ */
.vision {
  padding: 8rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.vision__texture {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-size: cover;
  background-position: center;
}

.vision__content {
  position: relative;
  z-index: 2;
}

.vision h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.vision__subtitle {
  font-size: 1.1rem;
  color: rgba(26, 26, 46, 0.6);
  max-width: 640px;
  margin-bottom: 5rem;
}

.vision__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 70px;
}

.vision__title {
  flex: 1;
}

.vision__title h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .95;
  margin: 0;
}

.vision__title h3 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: .95;
  margin: 0;
}

.vision__text {
  flex: 1;
  max-width: 600px;
}

.vision__text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(26, 26, 46, .75);
  margin-bottom: 24px;
}

.vision__text p:first-child {
  font-weight: 700;
  color: var(--navy);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pillar {
  padding: 2.5rem;
  border-top: 4px solid;
  background: var(--grey);
  transition: background-color var(--transition), color var(--transition);
  height: 100%;
}

.pillar:nth-child(odd) {
  border-top-color: var(--gold);
}

.pillar:nth-child(even) {
  border-top-color: var(--red);
}

.pillar:hover {
  background: var(--navy);
}

.pillar__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  color: rgba(26, 26, 46, 0.05);
  display: block;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}

.pillar:hover .pillar__num {
  color: rgba(255, 255, 255, 0.05);
}

.pillar__icon {
  color: var(--gold);
  margin-bottom: 1rem;
}

.pillar__icon svg {
  width: 24px;
  height: 24px;
}

.pillar__title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.pillar:hover .pillar__title {
  color: var(--white);
}

.pillar__desc {
  font-size: 0.85rem;
  color: rgba(26, 26, 46, 0.6);
  line-height: 1.6;
  transition: color var(--transition);
}

.pillar:hover .pillar__desc {
  color: rgba(255, 255, 255, 0.6);
}
.visionTextFex{
    display: flex;
    gap: 40px;
    max-width: 100%;
    align-items: flex-start;
}

/* ═══════════════════════════════════════════════════
   TRACK A — INVESTISSEURS PRIVÉS
   ═══════════════════════════════════════════════════ */
.track-intro {
  position: relative;
  min-height: 70vh;
  padding: 4rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.track-intro__bg {
  position: absolute;
  inset: 0;
}

.track-intro__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-intro__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.4));
}

.track-intro__content {
  position: relative;
  z-index: 10;
}

.track-intro h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 2rem;
}

.track-intro p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 1000px;
  line-height: 1.7;
}

.track-intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.track-intro__tag {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(227, 6, 19, 0.4);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ── SCI Offers ── */
.sci-section {
  background: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.sci-section__texture {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-size: cover;
  background-position: center bottom;
}

.sci-section__content {
  position: relative;
  z-index: 2;
}

.sci-section h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  margin-bottom: 4rem;
}

.sci-section h3 .gold {
  color: var(--gold);
}

/* Tab buttons */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--grey);
  color: rgba(26, 26, 46, 0.6);
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: rgba(26, 26, 46, 0.1);
}

.tab-btn.active {
  background: var(--navy);
  color: var(--white);
}

/* Tab content */
.tab-content {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.tab-content.active {
  display: grid;
  grid-template-columns: 3fr 2fr;
}

.tab-panel__info {
  background: var(--navy);
  padding: 3rem 4rem;
}

.tab-panel__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-panel__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-panel__icon svg {
  width: 32px;
  height: 32px;
}

.tab-panel__title {
  font-size: 1.5rem;
  color: var(--white);
}

.tab-panel__subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
  font-weight: 400;
  text-transform: none;
}

.tab-panel__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.tab-panel__benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tab-panel__benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.tab-panel__benefit svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tab-panel__benefit span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.tab-panel__header img.tabImageLogo{
  max-width: 52%;
}

/* Tab metrics */
.tab-panel__metrics {
  background: var(--grey);
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tab-panel__metric {
  margin-bottom: 2rem;
}

.tab-panel__metric:last-child {
  margin-bottom: 0;
}

.tab-panel__metric-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(26, 26, 46, 0.4);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.tab-panel__metric-value {
  font-size: 1.1rem;
  font-weight: 700;
}

.tab-panel__metric-divider {
  width: 100%;
  height: 1px;
  background: rgba(26, 26, 46, 0.1);
  margin: 2rem 0;
}

/* ── Comparison Table ── */
.comparison {
  margin-top: 6rem;
}

.comparison h3 {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}

.comparison__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.comparison__table thead tr {
  background: var(--navy);
}

.comparison__table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  font-size: 0.75rem;
}

.comparison__table td {
  padding: 1rem 1.25rem;
}

.comparison__table tbody tr:nth-child(odd) {
  background: var(--grey);
}

.comparison__table tbody tr:nth-child(even) {
  background: var(--white);
}

.comparison__table td:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(26, 26, 46, 0.6);
}

/* ═══════════════════════════════════════════════════
   JENGA — GUARANTEES
   ═══════════════════════════════════════════════════ */
.guarantees {
  background: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.guarantees__texture {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-size: cover;
  background-position: top center;
}

.guarantees__content {
  position: relative;
  z-index: 2;
}

.guarantees h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  margin-bottom: 0.75rem;
}

.guarantees h3 .red {
  color: var(--red);
}

.guarantees__subtitle {
  text-align: center;
  color: rgba(26, 26, 46, 0.6);
  font-size: 1.1rem;
  margin-bottom: 4rem;
}

.guarantees__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.guarantee {
  padding: 2rem;
  border-top: 4px solid var(--red);
  background: var(--grey);
  text-align: center;
  transition: background-color var(--transition);
  height: 100%;
}

.guarantee:hover {
  background: var(--navy);
}

.guarantee__icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--red);
  transition: background-color var(--transition);
}

.guarantee:hover .guarantee__icon-wrap {
  background: rgba(255, 255, 255, 0.1);
}

.guarantee__icon-wrap svg {
  width: 28px;
  height: 28px;
}

.guarantee__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.guarantee:hover .guarantee__title {
  color: var(--white);
}

.guarantee__desc {
  font-size: 0.75rem;
  color: rgba(26, 26, 46, 0.6);
  line-height: 1.6;
  transition: color var(--transition);
}

.guarantee:hover .guarantee__desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════════════
   TRACK B — INSTITUTIONNELS
   ═══════════════════════════════════════════════════ */
.institutional-detail {
  background: var(--grey);
  padding: 6rem 0;
}

.institutional-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.institutional-detail h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.institutional-detail__text {
  font-size: 1.1rem;
  color: rgba(26, 26, 46, 0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.institutional-detail__segments {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.segment {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.segment__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--red);
  min-width: 2rem;
  line-height: 1;
}

.segment__text {
  color: rgba(26, 26, 46, 0.8);
  padding-top: 0.25rem;
  line-height: 1.3;
}

/* ── Decision Process ── */
.decision-process {
  background: var(--navy);
  padding: 3rem;
  height: 100%;
}

.decision-process h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.decision-process__steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.process-step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--gold);
  min-width: 2rem;
}

.process-step__info {
  flex: 1;
}

.process-step__label {
  color: var(--white);
  font-weight: 600;
}

.process-step__dash {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
}

.process-step__desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.process-step__connector {
  width: 1px;
  height: 16px;
  background: rgba(197, 165, 90, 0.3);
  margin-left: 0.75rem;
  margin-top: 0.5rem;
}

.decision-process__pilot {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.decision-process__pilot-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.decision-process__pilot-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════════════
   KEY METRICS
   ═══════════════════════════════════════════════════ */
.metrics {
  background: var(--navy);
  padding: 6rem 0;
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.metric__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}

.metric__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */
.faq {
  padding: 8rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.faq__texture {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-size: cover;
  background-position: center;
}

.faq__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 4rem;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 26, 46, 0.1);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  gap: 1rem;
}

.faq-item__question-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-item__q-marker {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--red);
}

.faq-item__q-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.faq-item__question:hover .faq-item__q-text {
  color: var(--gold);
}

.faq-item__chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item__chevron svg {
  width: 20px;
  height: 20px;
}

.faq-item.open .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.open .faq-item__answer {
  max-height: 300px;
  opacity: 1;
}

.faq-item__answer p {
  padding: 0 0 1.5rem 2.5rem;
  color: rgba(26, 26, 46, 0.6);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   CTA DUAL TRACK
   ═══════════════════════════════════════════════════ */
.cta {
  background: var(--navy);
  padding: 8rem 0;
}

.cta h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
}

.cta h2 .gold {
  color: var(--gold);
}

.cta__subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.15rem;
  margin-bottom: 5rem;
}

.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.cta-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 4rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

.cta-card--gold:hover {
  border-color: rgba(197, 165, 90, 0.5);
}

.cta-card--red:hover {
  border-color: rgba(227, 6, 19, 0.5);
}

.cta-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-card__icon svg {
  width: 40px;
  height: 40px;
}

.cta-card__icon--gold {
  background: rgba(197, 165, 90, 0.1);
  color: var(--gold);
}

.cta-card__icon--red {
  background: rgba(227, 6, 19, 0.1);
  color: var(--red);
}

.cta-card h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact {
  padding: 8rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.contact__texture {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-size: cover;
  background-position: bottom center;
}

.contact__content {
  position: relative;
  z-index: 2;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

/* Contact info */
.contact-info__logo {
  height: 128px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.contact-info__consortium {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.contact-info__desc {
  color: rgba(26, 26, 46, 0.6);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 3rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.contact-channel__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey);
  color: var(--gold);
}

.contact-channel__icon svg {
  width: 20px;
  height: 20px;
}

.contact-channel__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(26, 26, 46, 0.4);
  display: block;
}

.contact-channel__value {
  font-size: 1.05rem;
}

.contact-offices {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
}

.contact-office {
  border-left: 2px solid var(--red);
  padding-left: 1rem;
}

.contact-office__city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.contact-office__detail {
  font-size: 0.8rem;
  color: rgba(26, 26, 46, 0.5);
}

/* ── Contact Form ── */
.contact-form {
  background: var(--grey);
  padding: 2.5rem 3rem;
}

.contact-form h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-form__subtitle {
  color: rgba(26, 26, 46, 0.5);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}

/* Form fields */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(26, 26, 46, 0.5);
  display: block;
  margin-bottom: 0.5rem;
}

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

.form-input-wrap {
  position: relative;
}

.form-input-wrap svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: rgba(26, 26, 46, 0.3);
  pointer-events: none;
}

.form-input-wrap--textarea svg {
  top: 0.75rem;
  transform: none;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  background: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--navy);
  outline: none;
  transition: box-shadow 0.3s ease;
}

.form-input:focus {
  box-shadow: 0 0 0 2px rgba(197, 165, 90, 0.5);
}

.form-input::placeholder {
  color: rgba(26, 26, 46, 0.3);
}

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--navy);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231A1A2E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.form-select:focus {
  box-shadow: 0 0 0 2px rgba(197, 165, 90, 0.5);
}

textarea.form-input {
  resize: none;
  min-height: 100px;
}

/* Request type toggle */
.request-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.request-toggle__btn {
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--white);
  color: rgba(26, 26, 46, 0.5);
  transition: all 0.3s ease;
}

.request-toggle__btn:hover {
  background: rgba(26, 26, 46, 0.05);
}

.request-toggle__btn.active {
  background: var(--navy);
  color: var(--white);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(26, 26, 46, 0.3);
  margin-top: 1rem;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 4rem 2rem;
  display: none;
}

.form-success.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.form-success__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
}

.form-success__icon svg {
  width: 40px;
  height: 40px;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  text-transform: none;
}

.form-success p {
  color: rgba(26, 26, 46, 0.6);
  margin-bottom: 2rem;
}

.form-success__reset {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.form-success__reset:hover {
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.4;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

.footer__disclaimer {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
  max-width: 500px;
  text-align: right;
  line-height: 1.5;
}

/* partenaires_wraper */
  .partenaires_wraper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    padding: 30px 60px;
    border-radius: 20px;
    background-color: var(--white);
  }
  .partenaires_wraper .partenaires_single img {
    /* height: 111px; */
    width: 190px;
  }
  .partenaires_btn {
    display: flex;
    justify-content: end;
    margin-top: 20px;
}
.partenaires_btn a {
    display: flex;
    padding: 10px 28px;
    border-radius: 50px;
    color: black;
    background-color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #e7e6e6;
    gap: 8px;
    align-items: center;
    justify-content: center;
    max-width: 236px;
    outline: none;
    transition: all 400ms ease;
}
.partenaires_btn a:hover{
  color: #e30613;
    border: 2px solid #e30613;
}
.underline{
    width:280px;
    height:6px;
    background:#ececec;
    border-radius:10px;
    margin:0 auto 40px;
    position:relative;
}

.underline::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 96px;
    height: 4px;
    background: #e30613;
    border-radius: 10px;
}

.OptezTextBr{
  display: none;
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .nav__links {
    display: none;
  }
    .nav__links {
    display: none;
  }
    .nav__mobile-toggle {
    display: block;
  }
}
@media (max-width: 1024px) {
  .pillars {
    grid-template-columns: 1fr 1fr;
  }

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

  .tab-content.active {
    grid-template-columns: 1fr;
  }

  .tab-panel__info,
  .tab-panel__metrics {
    padding: 2.5rem;
  }

  .institutional-detail__grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 768px) {
  .vision__header {
    flex-direction: column;
    gap: 30px;
  }

  .vision__text {
    max-width: 100%;
  }

  /* .nav__brand-text {
    display: none;
  } */

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero__ctas {
    flex-direction: column;
  }

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

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

  .tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-btn {
    text-align: center;
  }

  .comparison__table {
    font-size: 0.75rem;
  }

  .comparison__table th,
  .comparison__table td {
    padding: 0.75rem;
  }

  /* .track-intro {
    height: 60vh;
  } */

  /* .track-intro h2 {
    font-size: 2.5rem;
  } */

  .cta-card {
    padding: 3rem 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

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

  .contact-offices {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__disclaimer {
    text-align: center;
    max-width: 100%;
  }
  
  .track-intro p,
    .hero__desc {
    line-height: 1.4;
  }
  .track-intro h2,
  .hero h1,
  .section-label {
    margin-bottom: 1.5rem;
}
.visionTextFex{
    gap: 30px;
    flex-direction: column;
}
.visionTextFex .vision__text-right {
    margin-left: 35px;
}
.partenaires_wraper {
    padding: 30px 40px;
}
}

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

  .metrics__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .decision-process {
    padding: 2rem;
  }
  .btn {
    padding: 1rem 14px;
  }
.nav__brand {
    gap: 0;
}
.partenaires_wraper {
    grid-template-columns: repeat(1, 1fr);
    padding: 20px;
    gap: 30px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.partenaires_btn {
    justify-content: center;
}
.hero__desc {
    max-width: 310px;
}
.track-intro p,
    .hero__desc {
    line-height: 1.3;
  }
  .OptezText{
  display: none;
}
  .OptezTextBr{
  display: block;
}
}