/* ===== FONTS ===== */
@font-face {
  font-family: Ppneuemontreal;
  src: url("fonts/PPNeueMontreal-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Ppneuemontreal;
  src: url("fonts/PPNeueMontreal-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Ppneuemontreal;
  src: url("fonts/PPNeueMontreal-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Ppneuemontreal;
  src: url("fonts/PPNeueMontreal-Regular.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Ppneuemontreal;
  src: url("fonts/PPNeueMontreal-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Ppneuemontreal;
  src: url("fonts/PPNeueMontreal-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Pptelegraf;
  src: url("fonts/PPTelegraf-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Pptelegraf;
  src: url("fonts/PPTelegraf-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Pptelegraf;
  src: url("fonts/PPTelegraf-UltraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Ppneuemontreal, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  background: #141415;
  line-height: 1.5;
  overflow-x: hidden
}

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

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

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

ul {
  list-style: none
}

/* ===== VARIABLES ===== */
:root {
  --gold: #F4BE7E;
  --gold-light: #f7cfa0;
  --bg-dark: #141415;
  --bg-card: #161616;
  --bg-card-hover: #1e1e1e;
  --border: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666;
  --green: #22c55e;
  --nav-h: 80px;
}

/* ===== CONTAINERS ===== */
.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px
}

/* ===== BANNER ===== */
.banner-survey {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding-left: 17px;
  position: sticky;
  top: 0;
  z-index: 110;
  gap: 16px;
  font-size: 16px;
  color: #fff;
  height: 50px;
  box-sizing: border-box;
}

.banner-survey-inner {
  display: flex;
  align-items: center;
  gap: 16px
}

.banner-icon {
  width: 24px;
  flex-shrink: 0;
  background-color: #6e727a1a;
  border-radius: 100%;
  padding: 4px
}

.banner-text {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #EDF0F5;
  line-height: 24px
}

.banner-link {
  font-family: Inter, sans-serif;
  display: flex;
  align-items: center;
  gap: normal;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity .2s;
  color: #F4BE7E;
  font-size: 14px;
  line-height: 24px
}

.banner-link:hover {
  opacity: .7
}

.banner-chevron {
  width: 16px
}

.banner-close {
  display: none
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgb(20, 20, 21);
  border-bottom: 1px solid #ffffff1a;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 2rem;
  margin-right: 2rem;
  height: var(--nav-h);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-left: 8px
}

.logo-img {
  height: 24px;
  filter: brightness(0) saturate(100%) invert(81%) sepia(30%) saturate(678%) hue-rotate(338deg) brightness(101%) contrast(92%)
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #959BA4;
  line-height: 18px;
  padding: 0;
  border-radius: 6px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-dropdown:hover>.nav-link {
  color: #fff;
  background: rgba(255, 255, 255, .06)
}

.nav-chevron {
  width: 14px;
  height: 7px;
  flex-shrink: 0;
  transition: transform .2s
}

.nav-left>:not(.nav-logo) {
  position: relative;
  top: 1px
}

.nav-left>.nav-logo+* {
  margin-left: 25px
}

/* Assurance vie badge */
.nav-assurance-vie {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 8px
}

.nav-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 2px 6px;
  border-radius: 4px;
  background: linear-gradient(116deg, #5682F2 -36%, #F9D09F 100%);
  color: #fff;
}

.nav-badge-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0
}

.nav-badge-sm {
  width: 24px;
  height: 20px;
  border-radius: 4px;
  flex-shrink: 0;
  padding: 2px 4px;
  background: linear-gradient(116deg, #5682F2 -36%, #F9D09F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-badge-sm img {
  width: 16px;
  height: 16px;
  object-fit: contain
}

/* Dropdown */
.nav-dropdown {
  position: relative
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 40px);
  left: 0;
  min-width: 368px;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s ease;
  z-index: 200;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .5);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.nav-dropdown:hover .dropdown-mega,
.dropdown-mega.show {
  transform: translateX(-50%) translateY(0);
}

.dropdown-mega {
  transform: translateX(-50%) translateY(-6px);
}

.dropdown-features,
.dropdown-crypto {
  display: flex;
  gap: 16px;
  min-width: 728px
}

.dropdown-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  transition: background .15s;
  position: relative;
}

.dropdown-item::after {
  content: '\2192';
  color: var(--gold);
  font-size: 16px;
  margin-left: auto;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .4s ease, transform .4s ease;
  flex-shrink: 0;
}

.dropdown-item:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, .06)
}

.dropdown-item:hover .dropdown-title {
  color: var(--gold);
  transition: color .2s ease;
}

.dropdown-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dropdown-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain
}

.dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.dropdown-title {
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  line-height: 20px
}

.dropdown-desc {
  font-size: 12px;
  color: #959BA4;
  line-height: 20px;
  font-weight: 400
}

.dropdown-about,
.dropdown-locale {
  min-width: 280px
}

/* Mega dropdown for Ressources */
.dropdown-mega {
  display: flex !important;
  flex-direction: row;
  gap: 32px;
  min-width: 1060px;
  padding: 22px 28px;
  left: 50%;
  transform: translateX(-50%);
}

.mega-cards {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.mega-card {
  display: flex;
  flex-direction: column;
  width: 260px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  text-decoration: none;
  color: inherit;
  transition: background .2s;
  border: 1px solid rgba(255, 255, 255, .04);
}

.mega-card:hover {
  background: rgba(255, 255, 255, .08);
}

.mega-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #111;
}

.mega-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mega-card-text {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mega-card-text .dropdown-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.mega-card-text .dropdown-desc {
  font-size: 11px;
  color: #959BA4;
  line-height: 15px;
}

/* Book cover placeholder for Ressources dropdown */
.book-cover-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1a1520 0%, #2a1f2d 40%, #1e1825 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px;
}

.book-cover-placeholder .book-title {
  font-family: Pptelegraf, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #F4BE7E;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.1;
}

.book-cover-placeholder .book-subtitle {
  font-family: Ppneuemontreal, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 180px;
  flex: 1;
}

.mega-col-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #959BA4;
  margin-bottom: 12px;
  padding: 0 12px;
  text-transform: uppercase;
}

.mega-col-outils .dropdown-item {
  padding: 8px 0;
}

/* Smaller icons inside mega dropdown */
.mega-col .dropdown-icon {
  width: 24px;
  height: 24px;
}

.mega-col .dropdown-icon img {
  width: 24px;
  height: 24px;
}

.mega-col .dropdown-item {
  padding: 8px 12px;
  gap: 10px;
}

.mega-col .dropdown-title {
  font-size: 13px;
  font-weight: 500;
}

.locale-dropdown .dropdown-menu {
  min-width: 80px;
  padding: 8px
}

/* dropdown-about-mega uses same sizing as dropdown-mega */

.locale-active {
  color: var(--gold) !important
}

/* Right nav */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 8px
}

.nav-locale {
  color: #959BA4 !important;
  font-size: 14px !important;
  margin-right: 21px
}

.btn-connexion {
  font-size: 14px;
  font-weight: 400;
  color: #F4BE7E;
  line-height: 16px;
  padding: 12px 16px;
  border: 1px solid #F4BE7E;
  border-radius: 48px;
  transition: all .15s;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-connexion:hover {
  background: rgba(244, 190, 126, .1)
}

.btn-signup {
  font-size: 14px;
  font-weight: 500;
  color: #141415;
  line-height: 16px;
  padding: 12px 16px;
  border-radius: 48px;
  border: none;
  background: #F4BE7E;
  transition: all .15s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-signup:hover {
  background: #f0b46e
}

/* ===== HERO ===== */
.hero {
  background-color: var(--bg-dark);
  background-image: url("blur.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 140px 0 5px;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  box-sizing: content-box;
}

.hero-left {
  width: 704px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.hero-title {
  font-family: Pptelegraf, sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 72px;
  color: #fff;
  margin: 0;
}

.hero-gold {
  background: linear-gradient(167deg, #5682F2, #FDBC71);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  padding: 6px 14px;
  border-radius: 10px;
  position: relative;
  vertical-align: middle;
  top: -4px;
  background: linear-gradient(167deg, #5682F2, #FDBC71);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-v2-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(167deg, #5682F2, #FDBC71);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-subtitle {
  font-size: 16px;
  color: #959BA4;
  line-height: 24px;
  margin: 0;
  max-width: 496px;
}

/* Hero Gold CTA Button */
.btn-hero-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
  border-radius: 48px;
  background: #F4BE7E;
  color: #141415;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  transition: all .2s;
  text-decoration: none;
}

.btn-hero-gold:hover {
  background: #f0b46e;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(244, 190, 126, .3)
}

/* Social Proof Cards */
.social-proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 550px;
  max-width: 100%;
}

.sp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 16px;
  height: 129px;
  justify-content: center;
  box-shadow: 0 0 20px 4px rgba(255, 255, 255, 0.04), 0 10px 18px rgba(0, 0, 0, 0.18);
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}

.sp-card img {
  height: 48px;
  width: auto;
  object-fit: contain
}

.sp-text {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
  text-align: center
}

.sp-text strong {
  font-weight: 700
}

/* Hero Mockup Image */
.mockup-desktop-home {
  position: absolute;
  top: 100px;
  right: 0;
  bottom: 0;
  left: 46%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.mockup-desktop-home-img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

/* Press Logos Marquee */
.section-logo-slide {
  background: #141415;
  padding: 110px 0 32px;
  position: relative;
  overflow: hidden;
}

.marquee {
  display: flex;
  gap: 32px;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
  animation: scroll 18s linear infinite;
}

.logo-barre-slide {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(0.40) sepia(0.30) hue-rotate(180deg) saturate(1.3);
  opacity: 1;
}

@keyframes scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(calc(-100% - 32px))
  }
}

.overlay-left-logos-slider,
.overlay-right-logos-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 272px;
  z-index: 2;
  pointer-events: none;
}

.overlay-left-logos-slider {
  left: 0;
  background: linear-gradient(to right, #141415, transparent);
}

.overlay-right-logos-slider {
  right: 0;
  background: linear-gradient(to left, #141415, transparent);
}

/* ===== Section: Suivre votre patrimoine ===== */
.section-track-home {
  padding: 82px 0 104px;
  background: #fff;
  background-image: radial-gradient(circle at 100% -40%, rgba(253, 188, 113, 0.7), rgba(86, 130, 242, 0.2) 38%, rgba(255, 255, 255, 0.2) 74%);
  color: #0c0c0c;
}

.section-wrapper {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
}

.track-home-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.track-home-left {
  flex: 0 0 52%;
  max-width: 650px;
  margin-left: -20px;
}

.track-home-right {
  flex: 1;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animations pour les images des onglets */
@keyframes slideInFromRight {
  from {
    transform: translate(50%, -50%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@keyframes slideOutToRight {
  from {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  to {
    transform: translate(50%, -50%);
    opacity: 0;
  }
}

/* Animation spécifique pour l'image 0 (codeproduit.png) */
@keyframes slideInFromRight0 {
  from {
    transform: scale(0.85) translate(50%, -15%);
    opacity: 0;
  }
  to {
    transform: scale(0.85) translate(-65%, -15%);
    opacity: 1;
  }
}

@keyframes slideOutToRight0 {
  from {
    transform: scale(0.85) translate(-65%, -15%);
    opacity: 1;
  }
  to {
    transform: scale(0.85) translate(50%, -15%);
    opacity: 0;
  }
}

/* Animation spécifique pour l'image 2 (uicpt.png) */
@keyframes slideInFromRight2 {
  from {
    transform: scale(0.85) translate(50%, -50%);
    opacity: 0;
  }
  to {
    transform: scale(0.85) translate(-50%, -50%);
    opacity: 1;
  }
}

@keyframes slideOutToRight2 {
  from {
    transform: scale(0.85) translate(-50%, -50%);
    opacity: 1;
  }
  to {
    transform: scale(0.85) translate(50%, -50%);
    opacity: 0;
  }
}

.track-tab-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 130%;
  opacity: 0;
  pointer-events: none;
}

.track-tab-img[data-tab-img="0"] {
  border-radius: 12px;
  left: 60%;
  top: 60%;
}

.track-tab-img[data-tab-img="1"] {
  top: 75%;
}

.track-tab-img[data-tab-img="2"] {
  top: 85%;
  left: 44%;
  border-radius: 12px;
  transform: translate(-50%, -50%) scale(0.85);
}

.track-tab-img.active {
  opacity: 1;
  pointer-events: auto;
  animation: slideInFromRight 0.5s ease-out forwards;
}

.track-tab-img[data-tab-img="0"].active {
  animation: slideInFromRight0 0.5s ease-out forwards;
}

.track-tab-img[data-tab-img="2"].active {
  animation: slideInFromRight2 0.5s ease-out forwards;
}

.track-tab-img.exiting {
  animation: slideOutToRight 0.5s ease-in forwards;
}

.track-tab-img[data-tab-img="0"].exiting {
  animation: slideOutToRight0 0.5s ease-in forwards;
}

.track-tab-img[data-tab-img="2"].exiting {
  animation: slideOutToRight2 0.5s ease-in forwards;
}

.heading-track {
  font-size: 42px;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 16px;
  color: #000;
  font-family: Pptelegraf, sans-serif;
}

.subtitle-track {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  line-height: 24px;
  margin-bottom: 32px;
  font-family: 'PP Neue Montreal', sans-serif;
  letter-spacing: 0.01em;
}

.tabs-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.tab-track {
  padding: 24px 32px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: height .4s ease, box-shadow .4s ease, background .4s ease;
  background: transparent;
  border: 0.8px solid rgba(149, 155, 164, 0.5);
  position: relative;
  overflow: hidden;
  height: 73px;
}

.tab-track.active {
  background: #fff;
  border: 0.8px solid rgba(149, 155, 164, 0.5);
  box-shadow: 0 0 18px 8px rgba(20, 20, 21, 0.08);
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tab-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  overflow: hidden;
}

.tab-track.active .tab-progress-bar {
  background: #e5e5e5;
}

.tab-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgb(86, 130, 242), rgb(253, 188, 113));
  border-radius: 0 2px 2px 0;
}

.tab-track.active .tab-progress-fill {
  width: 100%;
  transition: width 8s linear;
}

.tab-track-title {
  font-size: 18px;
  font-weight: 400;
  color: rgb(149, 155, 164);
  line-height: 25.2px;
  margin-bottom: 0;
  font-family: 'PP Neue Montreal', sans-serif;
}

.tab-track.active .tab-track-title {
  color: rgb(149, 155, 164);
  font-weight: 400;
  margin-bottom: 10px;
}

.tab-track-desc {
  font-size: 13px;
  color: rgb(103, 112, 125);
  line-height: 19px;
  font-family: 'PP Neue Montreal', sans-serif;
  opacity: 0;
  transition: opacity .3s ease;
}

.tab-track.active .tab-track-desc {
  opacity: 1;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 48px;
  background: #F4BE7E;
  color: #141415;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.btn-orange:hover {
  background: #f0b46e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 190, 126, .3);
}

.btn-orange-center {
  display: block;
  width: fit-content;
  margin: 40px auto;
}

.track-home-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.track-app-img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

/* ===== Section: 4 Feature Cards ===== */
.section-pv-home {
  padding: 80px 0;
  background: #000;
  color: #fff;
}

.grid-pv-cards {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-left: -24px;
}

.pv-card {
  text-align: center;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 282px;
  max-width: 282px;
  flex-shrink: 0;
}

.pv-card-img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  margin-bottom: 40px;
}

.pv-card-title {
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 8px;
  color: #fff;
  font-family: Pptelegraf, sans-serif;
}

.pv-card-desc {
  font-size: 13px;
  color: rgb(149, 155, 164);
  line-height: 20px;
  font-family: 'PP Neue Montreal', sans-serif;
}

/* ===== Section: Sécurité ===== */
.section-security {
  padding: 140px 0 104px;
  background: #fff;
  background-image: radial-gradient(circle at 100% 140%, rgba(253, 188, 113, 0.7), rgba(86, 130, 242, 0.2) 38%, rgba(255, 255, 255, 0.2) 74%);
}

.security-top-heading {
  font-size: 56px;
  font-weight: 400;
  font-family: Pptelegraf, sans-serif;
  color: rgb(43, 43, 44);
  line-height: 64px;
  text-align: left;
  max-width: 720px;
  margin: 0 auto 120px;
}

.security-layout {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.security-right {
  flex: 1;
  max-width: 512px;
}

.security-heading {
  font-size: 48px;
  font-weight: 400;
  font-family: Pptelegraf, sans-serif;
  color: #000;
  line-height: 56px;
  margin: 0 0 10px;
}

.security-desc {
  font-size: 16px;
  font-weight: 400;
  font-family: 'PP Neue Montreal', sans-serif;
  color: #000;
  line-height: 24px;
  margin-bottom: 16px;
}

.security-checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
  margin-bottom: 24px;
}

.security-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  font-family: 'PP Neue Montreal', sans-serif;
  color: #000;
  line-height: 24px;
}

.security-check-item svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.security-btn {
  display: inline-block;
  padding: 24px 48px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'PP Neue Montreal', sans-serif;
  border-radius: 48px;
  background: rgb(244, 190, 126);
  color: rgb(20, 20, 21);
  text-decoration: none;
  text-align: center;
  line-height: 18px;
}

/* ===== Section: Tous vos actifs ===== */
.section-assets-home {
  padding: 112px 0 160px;
  background: rgb(237, 240, 245);
  color: #0c0c0c;
}

.assets-layout {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.assets-left {
  flex: 1;
}

.assets-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #c4993c;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.assets-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.asset-link {
  font-size: 48px;
  font-weight: 400;
  color: #0c0c0c;
  cursor: pointer;
  transition: color .2s;
  line-height: 1.25;
  font-family: 'PP Neue Montreal', sans-serif;
}

.asset-link.active {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.asset-link:hover {
  color: #6366f1;
}

.assets-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.assets-card-img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
}

.stock-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 360px;
}

.stock-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  background: #1c1c1e;
  border-radius: 14px;
  padding: 16px 20px;
  gap: 16px;
}

.stock-card-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stock-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stock-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.stock-ticker {
  font-size: 10px;
  color: #666;
}

.stock-card-mid {
  text-align: left;
}

.stock-price {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.stock-gain {
  font-size: 10px;
  color: #34d399;
  margin-top: 2px;
}

.stock-pct {
  color: #34d399;
}

.stock-chart {
  width: 80px;
  height: 36px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.stock-chart-green::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 20'%3E%3Cpath d='M0 18 L8 14 L16 16 L24 10 L32 12 L40 6 L48 8 L56 2 L60 4' stroke='%2334d399' fill='none' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* ===== Section: Optimisez votre patrimoine ===== */
.section-optimize-home {
  padding: 104px 0;
  background: #000;
  color: #fff;
}

.heading-optimize {
  font-size: 56px;
  font-weight: 400;
  line-height: 64px;
  text-align: center;
  margin-bottom: 64px;
  color: rgb(237, 240, 245);
  font-family: Pptelegraf, sans-serif;
}

.grid-optimize-top,
.grid-optimize-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.optimize-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-top: 2px solid rgba(244, 190, 126, .4);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.optimize-card-title {
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  line-height: 32px;
  font-family: Pptelegraf, sans-serif;
}

.optimize-card-desc {
  font-size: 16px;
  color: #959BA4;
  line-height: 24px;
  margin-bottom: 16px;
  font-family: 'PP Neue Montreal', sans-serif;
}

.optimize-card-img {
  width: 100%;
  border-radius: 8px;
  margin-top: auto;
}

/* ===== CONTENT SECTIONS (white bg) ===== */
.section-tracking,
.section-assets,
.section-optimize,
.section-invest,
.section-security,
.section-steps,
.section-community,
.section-faq,
.section-final-cta {
  padding: 80px 0;
  background: #fff;
  color: #0c0c0c;
}

.section-assets,
.section-invest,
.section-steps,
.section-faq {
  background: #f7f7f8;
}

.section-title-large {
  font-size: 48px;
  font-weight: 400;
  line-height: 64px;
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  text-align: center;
  font-size: 17px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 40px
}

/* Buttons dark theme (on white sections) */
.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
  border-radius: 48px;
  background: #F4BE7E;
  color: #141415;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
}

.btn-primary-dark:hover {
  background: #f0b46e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 190, 126, .3)
}

.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  border: 2px solid #ddd;
  color: #0c0c0c;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}

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

/* ===== TABS (Tracking section) ===== */
.tabs-container {
  max-width: 700px;
  margin: 0 auto
}

.tab {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all .2s;
}

.tab:hover {
  border-color: #ccc
}

.tab.active {
  border-color: var(--gold);
  background: rgba(212, 168, 67, .04)
}

.tab h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0c0c0c
}

.tab-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-top: 12px;
  display: none;
}

.tab.active .tab-desc {
  display: block;
  color: var(--gold)
}

/* ===== ASSETS ===== */
.assets-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto;
}

.asset-tag {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: all .2s;
  cursor: default;
}

.asset-tag:hover {
  border-color: var(--gold);
  color: var(--gold)
}

/* Optimize Plus Badge */
.optimize-plus-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ===== INVEST (Side-by-Side) ===== */
.invest-row {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.invest-row-reverse {
  flex-direction: row-reverse
}

.invest-row-visual {
  flex: 0 0 45%
}

.invest-row-text {
  flex: 1
}

.invest-row-title {
  font-size: 40px;
  font-weight: 400;
  color: #0c0c0c;
  line-height: 48px;
  margin-bottom: 24px
}

.btn-invest-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
  border-radius: 48px;
  background: #F4BE7E;
  color: #141415;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
}

.btn-invest-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px)
}

@media(max-width:768px) {

  .invest-row,
  .invest-row-reverse {
    flex-direction: column
  }

  .invest-row-visual {
    flex: none;
    width: 100%
  }
}

/* AV Mockup */
.invest-av-mockup {
  position: relative
}

.av-app-screen {
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  min-height: 240px;
}

.av-sidebar-mini {
  width: 48px;
  background: #111;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 16px;
}

.av-nav-dots {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px
}

.av-nav-dots span {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #222;
  display: block
}

.av-main-area {
  flex: 1;
  padding: 16px
}

.av-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px
}

.av-finary-life {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #fff
}

.av-date {
  font-size: 11px;
  color: var(--text-muted)
}

.av-amount {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 12px 0 8px
}

.av-perf-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px
}

.av-bar-chart {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px
}

.av-bar-row {
  display: flex;
  align-items: center;
  gap: 8px
}

.av-bar-label {
  font-size: 9px;
  color: var(--text-muted);
  width: 24px;
  text-align: right
}

.av-bar {
  height: 6px;
  background: linear-gradient(90deg, #D4A843, #e8c36a);
  border-radius: 3px
}

.badge-green-sm {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: rgba(34, 197, 94, .12);
  padding: 2px 8px;
  border-radius: 4px
}

.av-ishares-badge {
  position: absolute;
  top: 16px;
  right: -20px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.av-generali-badge {
  position: absolute;
  bottom: 40px;
  left: -10px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Crypto Phone Mockup */
.crypto-visual-wrap {
  position: relative
}

.invest-crypto-phone {
  max-width: 320px;
  margin: 0 auto;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 20px 16px;
  overflow: hidden;
}

.crypto-phone-screen {
  padding: 8px
}

.crypto-phone-status {
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px
}

.crypto-phone-screen h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px
}

.crypto-phone-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px
}

.crypto-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.crypto-card-item {
  background: #222;
  border-radius: 14px;
  padding: 14px;
}

.crypto-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.crypto-card-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px
}

.crypto-card-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff
}

.crypto-card-ticker {
  font-size: 11px;
  color: var(--text-muted)
}

.crypto-card-price {
  font-size: 12px;
  color: #fff;
  font-weight: 500
}

.crypto-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
}

.crypto-card-badge.green {
  color: var(--green);
  background: rgba(34, 197, 94, .12)
}

.crypto-phone-all {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.crypto-bitcoin-3d {
  position: absolute;
  right: -30px;
  bottom: 20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #F7931A, #E2820A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 32px rgba(247, 147, 26, .4);
  z-index: 2;
}

.bitcoin-coin {
  line-height: 1
}

/* ===== TRACKING DARK MOCKUP ===== */
.tracking-dark-mockup {
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  width: 100%;
  font-size: 12px;
}

.track-mock-header {
  display: flex;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.track-mock-tab {
  font-weight: 600;
  color: #fff;
  font-size: 12px
}

.track-mock-tab-dim {
  color: var(--text-muted);
  font-size: 11px
}

.track-mock-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.track-mock-row.highlight {
  background: rgba(255, 255, 255, .03)
}

.track-mock-row.sub {
  padding-left: 32px
}

.track-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0
}

.track-dot-sm {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0
}

.track-sub-icon {
  font-size: 12px;
  width: 14px;
  flex-shrink: 0
}

.track-name {
  flex: 1;
  color: var(--text-secondary);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.track-pct {
  width: 36px;
  text-align: right;
  color: var(--text-muted);
  font-size: 11px
}

.track-val {
  width: 80px;
  text-align: right;
  font-weight: 500;
  font-size: 11px;
  color: #fff
}

.track-perf {
  width: 70px;
  text-align: right;
  font-size: 10px;
  font-weight: 600
}

.track-perf.green {
  color: var(--green)
}

.tracking-right {
  flex: 1;
  display: flex;
  align-items: center
}

/* ===== INVEST BULLETS ===== */
.invest-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.invest-bullets li {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  padding: 8px 0 8px 24px;
  position: relative;
}

.invest-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.section-testimonials {
  padding: 80px 0;
  background: var(--bg-dark);
  color: #fff;
}

.testimonials-badge {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.testimonial-carousel {
  position: relative;
  margin-top: 48px;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  align-items: center;
  gap: 48px;
}

.testimonial-slide.active {
  display: flex
}

.testimonial-photo {
  flex: 0 0 320px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.testimonial-content {
  flex: 1
}

.testimonial-quote {
  font-size: 22px;
  color: #fff;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 32px;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-plus-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
}

.testimonial-author-name {
  font-size: 14px;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonial-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.testimonial-arrow:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.testimonial-dots {
  display: flex;
  gap: 8px
}

.testimonial-dot {
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  cursor: pointer;
  transition: background .2s;
}

.testimonial-dot.active {
  background: var(--gold)
}

@media(max-width:768px) {
  .testimonial-slide.active {
    flex-direction: column
  }

  .testimonial-photo {
    flex: none;
    width: 100%;
    height: 280px
  }

  .testimonial-quote {
    font-size: 18px
  }
}

/* ===== SECURITY ===== */
.section-security {
  padding: 0 0 120px;
  background: #fff;
  background-image: radial-gradient(circle at 100% 140%, rgba(253, 188, 113, 0.7), rgba(86, 130, 242, 0.2) 38%, rgba(255, 255, 255, 0.2) 74%);
}

.security-bg-gradient {
  background: linear-gradient(180deg, #fff 0%, #fef3e2 40%, #fde8c8 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.security-shield-top {
  text-align: center;
  margin-bottom: 32px;
}

.security-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.security-left {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-right {
  flex: 1;
  position: relative
}

.security-gold {
  background: linear-gradient(167deg, #5682F2, #FDBC71);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.security-learn-more {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  color: #333;
  transition: color .2s;
}

.security-learn-more:hover {
  color: var(--gold)
}

.security-badges-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.security-badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 100px;
  padding: 14px 24px;
  font-size: 14px;
  color: #333;
  transition: box-shadow .2s;
}

.security-badge-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06)
}

.security-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff5eb;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-badge-icon.amf {
  background: #e8f0fe
}

.security-badge-icon.orange {
  background: #fff5eb
}

.security-3d-device {
  position: absolute;
  right: -20px;
  bottom: -40px;
  opacity: .8;
}

@media(max-width:768px) {
  .security-layout {
    flex-direction: column;
    gap: 32px
  }

  .security-left {
    flex: none
  }

  .security-3d-device {
    display: none
  }
}

/* ===== STEPS ===== */
.steps-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start
}

.steps-left {
  flex: 1
}

.steps-right {
  flex: 0 0 320px;
  display: flex;
  justify-content: center
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.step-number {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--gold);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
}

.step-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #0c0c0c
}

.step-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.6
}

.steps-phone-mockup {
  background: #1a1a1a;
  border-radius: 32px;
  padding: 20px 16px;
  width: 280px;
  border: 1px solid var(--border);
}

.steps-phone-screen {
  padding: 8px
}

.steps-phone-status {
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px
}

.steps-phone-screen h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px
}

.steps-phone-search {
  background: #222;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.steps-bank-list {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.steps-bank-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: #fff;
}

.steps-bank-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

@media(max-width:768px) {
  .steps-layout {
    flex-direction: column
  }

  .steps-right {
    flex: none;
    width: 100%
  }
}

/* ===== COMMUNITY ===== */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 20px
}

.community-card {
  padding: 24px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  transition: all .2s;
}

.community-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px)
}

.community-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0c0c0c
}

.community-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5
}

/* ===== FAQ ===== */
.faq-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start
}

.faq-left {
  flex: 0 0 280px
}

.faq-right {
  flex: 1
}

.faq-help-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  color: #666;
  line-height: 1.8;
  margin-top: 24px;
}

.faq-list {
  width: 100%
}

.faq-item {
  border-bottom: 1px solid #e5e5e5
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: #0c0c0c;
  text-align: left;
}

.faq-plus {
  font-size: 24px;
  color: #999;
  flex-shrink: 0;
  transition: transform .2s
}

.faq-item.open .faq-plus {
  transform: rotate(45deg)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 14px;
  color: #666;
  line-height: 1.7
}

@media(max-width:768px) {
  .faq-layout {
    flex-direction: column;
    gap: 32px
  }

  .faq-left {
    flex: none
  }
}

/* ===== FINAL CTA ===== */
.section-final-cta {
  background: #fff
}

/* ===== LEGAL DISCLAIMERS ===== */
.section-legal {
  background: #000;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.legal-text {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-text:last-child {
  margin-bottom: 0
}

.legal-text a {
  color: var(--gold);
  text-decoration: underline
}

/* ===== FOOTER ===== */
.footer {
  background: #000;
  color: var(--text-secondary);
  padding: 60px 0 24px;
  border-top: 1px dashed rgba(244, 190, 126, 0.25)
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.footer-logo {
  margin-bottom: 40px;
  position: relative;
  left: -47px;
  top: -32px
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 500;
  color: #edf0f5;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #959ba4;
  margin-bottom: 12px;
  transition: color .15s
}

.footer-col a:hover {
  color: var(--gold)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px dashed rgba(244, 190, 126, 0.2);
  margin-top: 8px;
}

.footer-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #959ba4;
  cursor: pointer
}

.footer-social {
  display: flex;
  gap: 24px;
  align-items: center
}

.footer-social a {
  color: var(--text-muted);
  transition: opacity .15s
}

.footer-social a:hover {
  opacity: 0.7
}

.footer-social a img {
  display: block
}

.footer-legal-row {
  padding-top: 24px;
  border-top: 1px dashed rgba(244, 190, 126, 0.2);
  display: flex;
  justify-content: flex-end;
}

.footer-bottom-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.footer-bottom-right a {
  font-size: 12px;
  color: #959ba4;
  text-decoration: underline;
  transition: color .15s
}

.footer-bottom-right a:hover {
  color: var(--gold)
}

/* ===== RESPONSIVE ===== */
/* Handled by new responsive rules at bottom of file */

@media(max-width:768px) {

  .nav-left .nav-dropdown,
  .nav-assurance-vie,
  .nav-link:not([data-dropdown-btn]) {
    display: none
  }

  .nav-left {
    gap: 0
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .dropdown-features,
  .dropdown-crypto {
    flex-direction: column;
    min-width: auto
  }

  .banner-survey {
    flex-wrap: wrap;
    padding: 10px 40px 10px 16px;
    font-size: 12px
  }
}

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

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

  .proof-item {
    padding: 10px 14px
  }

  .social-proof {
    gap: 12px
  }

  .invest-grid {
    grid-template-columns: 1fr
  }
}

/* ===== PRESS LOGOS ===== */
.section-press {
  background: var(--bg-dark);
  padding: 40px 0;
  border-top: 1px solid var(--border)
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: .5
}

.press-logo {
  color: #fff;
  white-space: nowrap
}

/* ===== 4 FEATURES DARK ===== */
.section-four-features {
  background: linear-gradient(180deg, #0c0c0c 0%, #111 50%, #0e1117 100%);
  padding: 80px 0;
  border-bottom: 1px solid var(--border)
}

.four-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center
}

.ff-item h4 {
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  margin: 16px 0 8px
}

.ff-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6
}

.ff-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto
}

.ff-icon-3d {
  width: 132px;
  height: 132px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ff-icon-3d img {
  width: 132px;
  height: 132px;
  object-fit: contain
}

@media(max-width:768px) {
  .four-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
  }
}

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

/* ===== TRACKING SECTION (LEFT ALIGNED) ===== */
.section-tracking {
  background: #fff;
  color: #0c0c0c;
  padding: 80px 0
}

.tracking-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start
}

.tracking-left {
  flex: 0 0 50%
}

.tracking-right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  border-radius: 16px;
  position: relative;
}

.tracking-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.tc-card {
  border-radius: 16px;
  padding: 24px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tc-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px
}

.tc-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.4
}

.tc-green {
  background: linear-gradient(135deg, #1a4a3a, #2d7a5a)
}

.tc-blue {
  background: linear-gradient(135deg, #1a2a4a, #2d4a7a)
}

.tc-warm {
  background: linear-gradient(135deg, #3a2a1a, #6a4a2a)
}

.tc-dark {
  background: #1a1a1a;
  border: 1px solid #2a2a2a
}

.tc-dark h4 {
  color: #F4BE7E
}

.section-title-left {
  font-size: 56px;
  font-weight: 400;
  line-height: 64px;
  margin-bottom: 16px;
  text-align: left
}

.tracking-subtitle {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px
}

.tracking-mockup-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e0e0ec, #c8c8d8)
}

@media(max-width:1024px) {
  .tracking-layout {
    flex-direction: column
  }

  .tracking-left {
    flex: none;
    width: 100%
  }

  .tracking-right {
    width: 100%;
    min-height: 300px
  }
}

/* ===== ASSETS LARGE TYPOGRAPHY ===== */
.section-assets-large {
  background: #f7f7f8;
  color: #0c0c0c;
  padding: 80px 0
}

.assets-large-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start
}

.assets-large-left {
  flex: 0 0 55%
}

.assets-large-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.assets-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase
}

.asset-type {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.2;
  color: #ccc;
  cursor: pointer;
  transition: color .2s
}

.asset-type.active {
  background: linear-gradient(167deg, #5682F2, #FDBC71);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.asset-type:hover {
  color: #999
}

/* Stock cards */
.stock-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stock-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px
}

.stock-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700
}

.stock-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff
}

.stock-ticker {
  font-size: 11px;
  color: var(--text-muted)
}

.stock-card-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between
}

.stock-price {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px
}

.stock-change {
  font-size: 12px
}

.stock-change .green {
  color: var(--green)
}

.stock-sparkline {
  flex-shrink: 0
}

@media(max-width:1024px) {
  .assets-large-layout {
    flex-direction: column
  }

  .assets-large-left {
    flex: none;
    width: 100%
  }

  .assets-large-right {
    flex-direction: row;
    flex-wrap: wrap
  }

  .stock-card {
    flex: 1;
    min-width: 200px
  }
}

/* ===== OPTIMIZE CARDS ===== */
.section-optimize {
  background: #f7f7f8;
  color: #0c0c0c;
  padding: 80px 0
}

.optimize-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.optimize-card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.optimize-card.dark {
  background: #1a1a1a;
  color: #fff;
}

.optimize-card-visual {
  padding: 24px;
  background: rgba(255, 255, 255, .05);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.optimize-card-visual.center {
  align-items: center;
  text-align: center
}

.optimize-card h3 {
  font-size: 16px;
  font-weight: 600;
  padding: 20px 24px 8px;
  line-height: 1.4
}

.optimize-card p {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 0 24px 20px;
  line-height: 1.5
}

.opt-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

.opt-label {
  font-size: 11px;
  color: var(--text-muted)
}

.opt-val {
  font-size: 16px;
  font-weight: 700;
  color: #fff
}

.opt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  font-size: 13px;
  color: #fff;
}

.opt-score {
  font-size: 14px;
  color: var(--green);
  font-weight: 600
}

.opt-score span {
  font-size: 20px
}

.opt-diversification {
  display: flex;
  align-items: center;
  gap: 16px
}

@media(max-width:768px) {
  .optimize-grid {
    grid-template-columns: 1fr
  }
}

/* ===== INVEST CARDS UPDATE ===== */
.section-invest {
  background: var(--bg-dark);
  color: #fff;
  padding: 80px 0
}

.section-invest .section-title-large {
  color: #fff
}

.section-invest .invest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.invest-card-av,
.invest-card-crypto {
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.invest-card-av h3,
.invest-card-crypto h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2
}

.invest-card-av p,
.invest-card-crypto p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px
}

.invest-card-visual {
  margin-bottom: 20px
}

.invest-card-badge-life {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}

.invest-link {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600
}

@media(max-width:768px) {
  .section-invest .invest-grid {
    grid-template-columns: 1fr
  }
}

/* ===== COMMUNITY SECTION (LEFT ALIGNED) ===== */
.section-community {
  background: #fff;
  color: #0c0c0c;
  padding: 80px 0
}

.community-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start
}

.community-left {
  flex: 0 0 35%
}

.community-right {
  flex: 1
}

.community-subtitle {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-top: 20px
}

.community-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.community-card {
  padding: 24px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  transition: all .2s;
  display: block
}

.community-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px)
}

.community-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0c0c0c
}

.community-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5
}

.cc-icon {
  font-size: 28px;
  margin-bottom: 12px;
  opacity: .5
}

.cc-icon-3d {
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 10px rgba(99, 102, 241, .15))
}

.community-3d-people {
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 12px rgba(99, 102, 241, .12))
}

@media(max-width:1024px) {
  .community-layout {
    flex-direction: column
  }

  .community-left {
    flex: none;
    width: 100%
  }
}

@media(max-width:480px) {
  .community-grid-2x2 {
    grid-template-columns: 1fr
  }
}

/* ===== FINAL CTA (DARK) ===== */
.section-final-cta {
  background: var(--bg-dark);
  color: #fff;
  padding: 80px 0 0;
  border-radius: 24px 24px 0 0;
  margin-top: -1px;
}

.final-cta-title {
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
  line-height: 64px;
}

.final-cta-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
  border-radius: 48px;
  background: #F4BE7E;
  color: #141415;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .5px;
  transition: all .2s;
}

.btn-cta-gold:hover {
  background: #f0b46e;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(244, 190, 126, .3)
}

/* CTA App Mockup */
.final-cta-mockup {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-bottom: none;
  background: #111;
}

.cta-app-screen {
  display: flex;
  min-height: 340px
}

.cta-sidebar {
  width: 160px;
  background: #0e0e0e;
  border-right: 1px solid var(--border);
  padding: 20px 16px;
  flex-shrink: 0;
}

.cta-logo-sm {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px
}

.cta-menu-items {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.cta-menu-item {
  font-size: 12px;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: 6px;
  cursor: default
}

.cta-menu-item.active {
  background: rgba(212, 168, 67, .1);
  color: var(--gold)
}

.cta-main-area {
  flex: 1;
  padding: 20px
}

.cta-content-wrap {
  display: flex;
  gap: 24px;
  align-items: flex-start
}

.cta-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px
}

.cta-topbar>span {
  font-size: 14px;
  font-weight: 600;
  color: #fff
}

.cta-tabs {
  display: flex;
  gap: 8px
}

.cta-tabs span {
  font-size: 11px;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 6px;
  cursor: default
}

.cta-tabs span.active {
  background: rgba(255, 255, 255, .08);
  color: #fff
}

.cta-portfolio {
  flex: 1
}

.cta-date {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 4px
}

.cta-amount {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px
}

.cta-change {
  display: flex;
  gap: 8px;
  font-size: 11px;
  margin-bottom: 12px
}

.cta-change .green {
  color: var(--green)
}

.cta-chart-area {
  width: 100%;
  height: 100px
}

.cta-chart-svg {
  width: 100%;
  height: 100%
}

.cta-allocation {
  width: 180px;
  flex-shrink: 0
}

.cta-alloc-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px
}

.cta-donut {
  display: flex;
  justify-content: center
}

@media(max-width:768px) {
  .cta-sidebar {
    display: none
  }

  .cta-allocation {
    display: none
  }

  .cta-main-area {
    flex-direction: column
  }
}

/* ===== Section: Testimonials ===== */
.section-testimonials-home {
  background: #000;
  background-image: linear-gradient(40deg, rgba(0, 0, 0, 0) 30%, rgba(255, 183, 74, 0.16));
  padding: 104px 0;
}

.testimonials-label {
  color: rgb(244, 190, 126);
  font-size: 16px;
  font-family: Ppneuemontreal, sans-serif;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.testimonials-heading {
  font-size: 80px;
  font-weight: 400;
  font-family: Pptelegraf, sans-serif;
  color: #fff;
  text-align: center;
  margin: 0 0 64px;
  line-height: 1.1;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-slides {
  display: flex;
  transition: transform 0.5s ease-out;
}

.section-testimonials-home .testimonial-slide {
  min-width: 100%;
  flex-shrink: 0;
  display: block;
}

.testimonial-inner {
  display: flex;
  gap: 104px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-img-wrap {
  width: 384px;
  min-width: 384px;
  height: 384px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.testimonial-content {
  flex: 1;
}

.testimonial-quote {
  font-size: 24px;
  line-height: 40px;
  color: #fff;
  font-family: Ppneuemontreal, sans-serif;
  font-weight: 400;
  margin: 0 0 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-badge {
  height: 28px;
  width: auto;
}

.testimonial-name {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-family: Ppneuemontreal, sans-serif;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.testimonial-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-arrow img {
  width: 48px;
  height: 48px;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-dot {
  width: 88px;
  height: 1px;
  background: #959BA4;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-dot.active {
  background: linear-gradient(90deg, #5682F2, #FDBC71);
  height: 2px;
}

/* Testimonial responsive rules handled in main responsive blocks at bottom of file */

/* ===== Activation Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #141415;
  border: 0.5px solid rgba(244, 190, 126, .4);
  border-radius: 8px;
  padding: 40px 48px 32px;
  max-width: 580px;
  width: 90%;
  position: relative;
  color: #c6d4df;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  transform: translateY(20px) scale(.97);
  transition: transform .25s ease;
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #F4BE7E;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color .2s;
}

.modal-close:hover {
  color: #f0b46e;
}

.modal-title {
  font-family: 'PP Neue Montreal', sans-serif;
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(167deg, #5682F2, #FDBC71);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  margin: 0 0 16px;
}

.modal-desc {
  font-size: 14px;
  line-height: 22px;
  color: #8f98a0;
  margin: 0 0 24px;
  font-family: 'PP Neue Montreal', sans-serif;
}

.modal-examples {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #8f98a0;
  font-family: monospace;
}

.modal-examples-label {
  font-family: 'PP Neue Montreal', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .5px;
  color: #F4BE7E;
  margin-bottom: 4px;
}

.modal-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 15px;
  font-family: 'PP Neue Montreal', sans-serif;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s;
}

.modal-input:focus {
  border-color: rgba(255, 255, 255, .3);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.modal-btn-cancel,
.modal-btn-submit {
  padding: 12px 24px;
  border-radius: 48px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'PP Neue Montreal', sans-serif;
  cursor: pointer;
  transition: all .15s;
  line-height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-btn-cancel {
  background: transparent;
  color: #F4BE7E;
  border: 1px solid #F4BE7E;
}

.modal-btn-cancel:hover {
  background: rgba(244, 190, 126, .1);
}

.modal-btn-submit {
  background: #F4BE7E;
  color: #141415;
  border: none;
  font-weight: 500;
}

.modal-btn-submit-toggle {
 background: #6F5F4C;
}


/* ===== HAMBURGER MENU ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 0.8px solid rgba(255,255,255,.25);
  background: transparent;
  cursor: pointer;
  gap: 0.4rem;
  padding: 0;
  order: 10;
  position: relative;
}
.nav-hamburger span {
  display: block;
  width: 15px;
  height: 1px;
  background: #fff;
  border-radius: 0;
  transition: transform .25s ease, opacity .25s ease;
}

/* ===== RESPONSIVE: 991px (tablet — matches original Finary) ===== */
@media (max-width: 991.98px) {
  .nav-hamburger { display: flex; }

  .nav-left .nav-dropdown,
  .nav-assurance-vie,
  .nav-left > a.nav-link,
  .nav-left > :not(.nav-logo):not(.nav-dropdown):not(.nav-assurance-vie) {
    display: none;
  }
  .nav-left { gap: 0; }
  .nav-left > .nav-logo + * { margin-left: 0; }

  .locale-dropdown,
  .btn-connexion { display: none !important; }

  .nav-right { gap: 12px; }

  .nav.menu-open { border-bottom: none !important; }

  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    width: 100%;
    height: calc(100vh - var(--nav-h));
    background: rgb(20, 20, 21);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    overflow-y: auto;
  }
  .mobile-menu-overlay.open {
    transform: translateX(0);
  }
  .mobile-menu-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .mobile-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
  }
  .mobile-menu-lang-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    font-family: 'PP Neue Montreal', 'Inter', sans-serif;
  }
  .mobile-menu-lang-selector svg {
    stroke: #fff;
  }
  .mobile-menu-social-icons {
    display: flex;
    gap: 16px;
  }
  .mobile-menu-social-icons a {
    opacity: 1;
  }
  .mobile-menu-social-icons img {
    filter: brightness(0) saturate(100%) invert(77%) sepia(27%) saturate(634%) hue-rotate(343deg) brightness(98%) contrast(93%);
  }
  .mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: transparent;
    border: 0.8px solid rgba(255,255,255,.25);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    z-index: 10;
  }
  .mobile-menu-body {
    flex: 1;
    padding: 0 2rem;
    overflow-y: auto;
    position: relative;
  }
  .mobile-menu-section {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-menu-assurance {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    color: #F4BE7E;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
    font-family: 'PP Neue Montreal', 'Inter', sans-serif;
  }
  .mobile-menu-item span {
    color: #F4BE7E;
  }
  .mobile-menu-assurance .mobile-menu-item span,
  a.mobile-menu-item span {
    color: rgba(255,255,255,0.7);
  }
  .mobile-menu-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 6px 8px;
    margin-left: auto;
  }
  .mobile-menu-item svg {
    stroke: #F4BE7E;
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
    flex-shrink: 0;
  }
  .mobile-menu-item.active svg {
    transform: rotate(180deg);
  }
  .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
  }
  .mobile-submenu.open {
    max-height: 500px;
  }
  .mobile-submenu-item {
    display: block;
    padding: 1rem 0;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s;
  }
  .mobile-submenu-item:hover {
    color: rgba(255,255,255,0.9);
  }
  .mobile-menu-footer {
    display: none;
  }

  /* Hero */
  .hero { padding: 6.5rem 3rem 0; min-height: auto; }
  .hero-inner { text-align: center; }
  .hero-left {
    width: 100%;
    align-items: center;
  }
  .hero-title { font-size: 3rem; line-height: 3.75rem; }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .social-proof-cards { justify-content: center; }

  .mockup-desktop-home {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: 100%;
    height: 40rem;
    margin-top: 1.4rem;
    overflow: hidden;
  }
  .mockup-desktop-home-img {
    width: 100%;
    max-width: none;
  }

  /* Press logos */
  .section-logo-slide { padding-top: 40px !important; }

  /* Track / Tabs section */
  .section-track-home { padding: 4rem 3rem; }
  .section-wrapper { min-width: 100%; max-width: 100%; }
  .track-home-layout { flex-direction: column; gap: 2.5rem; }
  .track-home-left {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    align-items: center;
  }
  .track-home-right {
    width: 100%;
    min-height: 300px;
  }
  .heading-track {
    font-size: 3rem !important;
    line-height: 3.75rem !important;
    text-align: center;
  }
  .subtitle-track { text-align: center; }

  /* Feature Cards */
  .section-pv-home { padding: 4rem 3rem; }
  .grid-pv-cards {
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0;
    gap: 2.5rem;
  }
  .pv-card {
    width: calc(50% - 20px);
    max-width: none;
    flex-shrink: 1;
  }

  /* Security */
  .section-security { overflow: hidden; padding: 4rem 3rem !important; }
  .security-top-heading {
    font-size: 3rem !important;
    line-height: 3.75rem !important;
  }
  .section-security [style*="display:flex"][style*="align-items:stretch"] {
    flex-direction: column !important;
    margin-left: 0 !important;
    gap: 0 !important;
  }
  .section-security [style*="flex:0 0 55%"] {
    flex: none !important;
    width: 100% !important;
    min-height: 350px !important;
  }
  .section-security [style*="flex:1"] {
    padding: 40px 0 !important;
  }
  .security-heading { font-size: 2rem; line-height: 2.5rem; }

  /* Testimonials */
  .section-testimonials-home { padding: 4rem 3rem 6rem; }
  .testimonials-heading { font-size: 3rem; }
  .testimonial-inner {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }
  .testimonial-img-wrap {
    width: 16.5rem;
    min-width: 16.5rem;
    height: 16.5rem;
  }

  /* Footer */
  .footer { padding-left: 3rem; padding-right: 3rem; }
  .footer-top { grid-template-columns: repeat(3, 1fr); }
  .footer-logo { left: 0; }

  /* Legal */
  .section-legal { padding-left: 3rem; padding-right: 3rem; }
}

/* ===== RESPONSIVE: 767px (small tablet — matches original Finary) ===== */
@media (max-width: 767.98px) {
  /* Hero */
  .hero { padding: 7rem 1rem 0; }
  .hero-title { font-size: 2rem; line-height: 2.5rem; }
  .hero-v2-badge { font-size: 18px; padding: 4px 10px; }
  .hero-subtitle { font-size: 14px; line-height: 22px; }

  .social-proof-cards {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 10px;
  }
  .sp-card { height: auto; padding: 12px 8px; }
  .sp-text { font-size: 10px; }

  .btn-hero-gold { padding: 20px 36px; display: flex; width: 100%; border-radius: 60px; }

  .mockup-desktop-home { height: 24rem; }

  /* Press logos */
  .section-logo-slide { padding-top: 32px !important; }
  .logo-barre-slide { height: 48px; }
  .overlay-left-logos-slider,
  .overlay-right-logos-slider { width: 80px; }

  /* Track / Tabs */
  .section-track-home { padding: 4rem 1rem; }
  .heading-track {
    font-size: 2rem !important;
    line-height: 2.25rem !important;
  }
  .track-home-left { text-align: center; }
  .tab-track { 
    position: relative;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out;
  }
  .tab-track.active { 
    height: auto;
  }
  .track-home-right { display: none; }
  
  .tab-track::before {
    content: '';
    display: none;
    width: 100%;
    height: 200px;
    margin: 0 0 1.5rem 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .tab-track.active::before {
    display: block;
  }
  
  .tab-track-title {
    max-height: 100px;
    opacity: 1;
    font-size: 18px;
    padding: 12px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tab-track:nth-child(3) .tab-track-title {
    padding: 6px 0 18px 0;
  }
  
  .tab-track.active .tab-track-title {
    font-size: 18px;
    padding: 0;
    text-align: left !important;
    display: block !important;
    justify-content: flex-start !important;
  }
  
  .tab-track-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out, opacity 0.6s ease-in-out;
  }
  
  .tab-track.active .tab-track-desc {
    max-height: 500px;
    opacity: 1;
    text-align: left !important;
  }
  
  .tab-track:nth-child(1)::before { background-image: url('images/codeproduit.png'); }
  .tab-track:nth-child(2)::before { background-image: url('images/metamask.png'); }
  .tab-track:nth-child(3)::before { background-image: url('images/uicpt.png'); }

  /* Feature Cards */
  .section-pv-home { padding: 4rem 1rem; }
  .grid-pv-cards { gap: 2rem; }
  .pv-card { width: calc(50% - 16px); }
  .pv-card-title { font-size: 22px; }
  .pv-card-img { width: 100px; height: 100px; margin-bottom: 24px; }

  /* Security */
  .section-security { padding: 4rem 1rem !important; }
  .security-top-heading {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
    margin-bottom: 2rem !important;
  }
  .section-security [style*="flex:1"] {
    padding: 24px 0 !important;
  }
  .security-heading { font-size: 1.625rem; line-height: 2rem; }
  .security-desc { font-size: 14px; }
  .security-check-item { font-size: 14px; }

  /* Testimonials */
  .section-testimonials-home { padding: 4rem 1rem; }
  .testimonials-heading { font-size: 2rem; line-height: 2.25rem; }
  .testimonial-quote { font-size: 18px; line-height: 30px; }
  .testimonial-dot { width: 64px; }
  .testimonials-label { font-size: 13px; }

  /* Footer */
  .footer { padding-left: 1rem; padding-right: 1rem; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-logo { left: 0; top: 0; }
  .footer-col { position: static !important; }

  /* Legal */
  .section-legal { padding: 24px 1rem; }
  .legal-text { font-size: 9px; }

  /* Modal */
  .modal-box { padding: 28px 24px 24px; }
  .modal-title { font-size: 22px; }
}

/* ===== RESPONSIVE: 479px (mobile — matches original Finary) ===== */
@media (max-width: 479.98px) {
  /* Nav */
  .nav { border-bottom: none; }
  .nav-inner { padding-left: 1rem; margin-right: 1rem; height: 73px; }
  .logo-img { height: 24px; }

  /* Hero */
  .hero { padding: 8rem 1.5rem 0; }
  .hero-inner { padding: 0; }
  .hero-title { font-size: 2.5rem; line-height: 115%; margin-bottom: 1rem; }
  .hero-v2-badge { font-size: 16px; padding: 3px 8px; top: -2px; }
  .hero-subtitle { font-size: 14px; line-height: 24px; max-width: 100%; color: rgba(255,255,255,.65); margin-bottom: 2rem; }
  .hero-left { gap: 0; }

  .social-proof-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    margin-top: 3rem;
  }
  .sp-card {
    padding: 14px 8px;
    border-radius: 12px;
    height: auto;
    min-height: 110px;
  }
  .sp-text { font-size: 9.5px; line-height: 1.35; }

  .btn-hero-gold { padding: 18px 32px; font-size: 14px; display: flex; width: auto; max-width: 300px; margin: 0 auto; border-radius: 60px; }

  .mockup-desktop-home { height: auto; max-height: 14rem; }

  /* Press logos */
  .section-logo-slide { padding-top: 24px !important; }
  .logo-barre-slide { height: 40px; }
  .overlay-left-logos-slider,
  .overlay-right-logos-slider { width: 40px; }

  /* Track / Tabs */
  .section-track-home { padding: 3rem 1rem; }
  .heading-track {
    font-size: 2.25rem !important;
    line-height: 120% !important;
  }
  .subtitle-track { font-size: 14px !important; }
  .tab-track { padding: 16px 20px 14px; }
  .tab-track-desc { font-size: 12px; line-height: 18px; }
  .tab-track { 
    position: relative;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out;
  }
  .tab-track.active { 
    height: auto;
  }
  .track-home-right { display: none; }
  
  .tab-track::before {
    content: '';
    display: none;
    width: 100%;
    height: 180px;
    margin: 0 0 1.25rem 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .tab-track.active::before {
    display: block;
  }
  
  .tab-track-title {
    max-height: 100px;
    opacity: 1;
    font-size: 16px;
    padding: 10px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tab-track:nth-child(3) .tab-track-title {
    padding: 4px 0 16px 0;
  }
  
  .tab-track.active .tab-track-title {
    font-size: 15px;
    padding: 0;
    text-align: left !important;
    display: block !important;
    justify-content: flex-start !important;
  }
  
  .tab-track-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out, opacity 0.6s ease-in-out;
  }
  
  .tab-track.active .tab-track-desc {
    max-height: 500px;
    opacity: 1;
    text-align: left !important;
  }
  
  .tab-track:nth-child(1)::before { background-image: url('images/codeproduit.png'); }
  .tab-track:nth-child(2)::before { background-image: url('images/metamask.png'); }
  .tab-track:nth-child(3)::before { background-image: url('images/uicpt.png'); }

  /* Feature Cards */
  .section-pv-home { padding: 3rem 1rem; }
  .grid-pv-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-left: 0;
  }
  .pv-card { width: 100%; max-width: none; }
  .pv-card-img { width: 80px; height: 80px; margin-bottom: 16px; }
  .pv-card-title { font-size: 22px; line-height: 28px; }
  .pv-card-desc { display: none; }

  /* Security */
  .section-security { padding: 3rem 1rem !important; }
  .security-top-heading {
    font-size: 2.25rem !important;
    line-height: 120% !important;
    margin-bottom: 2rem !important;
  }
  .security-heading { font-size: 1.5rem; line-height: 2rem; }
  .security-desc { font-size: 13px; line-height: 20px; }
  .security-check-item { font-size: 13px; line-height: 20px; }

  /* Testimonials */
  .section-testimonials-home { padding: 3rem 0; }
  .section-testimonials-home .section-wrapper {
    max-width: 100%;
    padding: 0;
  }
  .testimonials-heading { 
    font-size: 2.25rem; 
    line-height: 120%; 
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 1.5rem;
  }
  .testimonials-label { 
    font-size: 11px; 
    margin-bottom: 16px;
    text-align: center;
    padding: 0 1.5rem;
  }
  .testimonials-slider {
    overflow: hidden !important;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
  .testimonials-slides {
    display: flex !important;
    transition: transform 0.5s ease-out;
    width: 300vw;
  }
  .section-testimonials-home .testimonial-slide {
    display: block !important;
    width: 100vw !important;
    min-width: 100vw !important;
    flex-shrink: 0;
  }
  .testimonial-inner {
    display: flex !important;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .testimonial-img-wrap {
    display: none !important;
  }
  .testimonial-content {
    display: block !important;
    width: 100%;
    max-width: 100%;
    padding: 0 1.5rem;
  }
  .testimonial-quote { 
    display: block !important;
    font-size: 18px !important; 
    line-height: 28px !important; 
    margin-bottom: 24px;
    text-align: center !important;
    color: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
    word-wrap: break-word;
  }
  .testimonial-author {
    display: flex !important;
    justify-content: center;
  }
  .testimonial-name { 
    font-size: 14px;
    color: rgba(255,255,255,0.7) !important;
  }
  .testimonials-nav { 
    display: flex !important;
    gap: 12px;
    margin-top: 2rem;
  }
  .testimonial-arrow {
    display: none !important;
  }
  .testimonial-dots {
    display: flex !important;
    gap: 12px;
  }
  .testimonial-dot {
    width: 56px !important;
  }

  /* Footer */
  .footer { padding: 2rem 1rem 1rem; }
  .footer-inner {
    padding-left: 0.5rem;
  }
  .footer-logo {
    left: 0 !important;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 2rem;
  }
  .footer-col {
    text-align: left;
  }
  .footer-col h5 { font-size: 11px; margin-bottom: 16px; text-transform: uppercase; }
  .footer-col a { font-size: 14px; margin-bottom: 12px; }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px dotted rgba(255, 255, 255, 0.15);
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
  }
  .footer-bottom-left {
    order: 1;
  }
  .footer-lang {
    color: #F4BE7E;
    font-size: 14px;
    font-weight: 500;
  }
  .footer-lang svg {
    stroke: #F4BE7E;
  }
  .footer-social {
    order: 2;
    display: flex;
    gap: 20px;
  }
  .footer-social a {
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  .footer-social a:hover {
    opacity: 1;
  }
  .footer-legal-row {
    order: 3;
    width: 100%;
  }
  .footer-bottom-right { 
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 0;
    display: flex;
  }
  .footer-bottom-right a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 16px;
  }

  /* Legal */
  .section-legal { padding: 16px 1rem; }

  /* Modal */
  .modal-box { padding: 24px 16px 20px; width: 95%; }
  .modal-title { font-size: 20px; }
  .modal-desc { font-size: 13px; }
  .modal-actions { flex-direction: column; gap: 8px; }
  .modal-btn-cancel, .modal-btn-submit { width: 100%; }

}
