/* PCS XPRESS V3 — acheter-carte.css
   Styles dédiés à la page d'acquisition "Acheter ma carte / Ouvrir mon compte".
   Chargé uniquement sur acheter-carte.html.
*/

/* =========================================
   BLOC 1 — HERO 3 colonnes
   ========================================= */

.acheter-hero {
  padding-block: var(--sp-7, 40px) var(--sp-8, 56px);
  background: linear-gradient(180deg, #FAFAF7 0%, #ffffff 100%);
}

.acheter-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.1fr;
  gap: clamp(var(--sp-5, 24px), 3vw, var(--sp-7, 40px));
  align-items: stretch;
}

@media (max-width: 1099px) {
  .acheter-hero__grid {
    grid-template-columns: 1fr 1fr;
  }
  .acheter-hero__right {
    grid-column: 1 / -1;
    order: -1;
  }
}

@media (max-width: 720px) {
  .acheter-hero__grid {
    grid-template-columns: 1fr;
  }
  .acheter-hero__right { order: 0; }
}

/* Left column */
.acheter-hero__left {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4, 16px);
}

.acheter-hero__stores {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3, 12px);
  margin-top: var(--sp-3, 12px);
}

.acheter-hero__qr {
  display: flex;
  align-items: center;
  gap: var(--sp-4, 16px);
  margin-top: var(--sp-4, 16px);
  padding: var(--sp-3, 12px) var(--sp-4, 16px);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg, 16px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  max-width: 380px;
}

.acheter-qr {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  padding: 6px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.acheter-qr img {
  width: 100%;
  height: 100%;
  display: block;
}

.acheter-hero__qr-hint {
  font-size: 0.82rem;
  color: var(--color-text-muted, #666);
  line-height: 1.5;
  margin: 0;
}

.acheter-hero__qr-hint strong {
  color: var(--color-text, #1a1a1a);
}

/* Center column — SMS form */
.acheter-hero__center {
  display: flex;
  flex-direction: column;
  padding: var(--sp-5, 24px);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg, 18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  gap: var(--sp-4, 16px);
}

.sms-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3, 12px);
}

.sms-form__label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #B8860B;
  margin: 0;
}

.sms-form__title {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  color: #1a1a1a;
}

.sms-form__hint {
  font-size: 0.87rem;
  color: var(--color-text-muted, #666);
  line-height: 1.55;
  margin: 0;
}

.sms-form__input {
  display: flex;
  align-items: stretch;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.18s;
}

.sms-form__input:focus-within {
  border-color: #322B3A;
  box-shadow: 0 0 0 3px rgba(50, 43, 58, 0.08);
}

.sms-form__prefix {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px 0 16px;
  font-weight: 800;
  color: #322B3A;
  background: #f6f6f4;
  border-right: 1.5px solid rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.sms-form__flag {
  display: inline-block;
  width: 20px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(to right, #F77F00 0% 33.33%, #ffffff 33.33% 66.66%, #009E60 66.66% 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.sms-form input[type="tel"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  color: #1a1a1a;
  outline: none;
  min-width: 0;
}

.sms-form input[type="tel"]::placeholder {
  color: #aaa;
  font-weight: 500;
}

.sms-form button {
  width: 100%;
  justify-content: center;
}

.acheter-hero__separator {
  display: flex;
  align-items: center;
  gap: var(--sp-3, 12px);
  color: var(--color-text-muted, #888);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: var(--sp-2, 8px) 0;
}

.acheter-hero__separator::before,
.acheter-hero__separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.acheter-hero__alt {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3, 12px);
}

.acheter-hero__alt p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-text-muted, #666);
  line-height: 1.6;
}

.acheter-hero__alt .btn {
  align-self: flex-start;
}

/* Right column — visual */
.acheter-hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 440px;
}

.acheter-hero__visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acheter-hero__card {
  position: absolute;
  right: -2%;
  bottom: 8%;
  width: 62%;
  max-width: 300px;
  height: auto;
  transform: rotate(-8deg);
  filter: drop-shadow(0 22px 32px rgba(200, 160, 70, 0.35));
  z-index: 3;
}

@media (max-width: 720px) {
  .acheter-hero__card {
    right: 4%;
    bottom: 4%;
    width: 58%;
    max-width: 240px;
  }
}

/* =========================================
   PHONE FRAME (réutilisé bloc 1, 2, 3)
   ========================================= */

.phone-frame {
  position: relative;
  background: #161619;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 20px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-frame--hero {
  width: 240px;
  height: 480px;
}

.phone-frame--step {
  width: 172px;
  height: 344px;
  margin: 0 auto;
}

.phone-frame--eco {
  width: 220px;
  height: 440px;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-frame--step .phone-screen {
  border-radius: 20px;
}

/* Mock app UI — hero */
.mock-app {
  padding: 36px 14px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, #322B3A 0%, #2a1839 100%);
  color: #fff;
}

.mock-app__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  opacity: 0.7;
  font-weight: 700;
}

.mock-app__logo {
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #C9A14B;
  text-transform: uppercase;
}

.mock-app__hello {
  font-size: 0.7rem;
  opacity: 0.75;
  margin-top: 4px;
}

.mock-app__user {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0;
}

.mock-app__balance-card {
  margin-top: 8px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #C9A14B 0%, #8a6a28 100%);
  border-radius: 14px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.mock-app__balance-card::before {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.mock-app__balance-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  font-weight: 700;
}

.mock-app__balance-amount {
  font-size: 1.2rem;
  font-weight: 900;
  margin-top: 4px;
  letter-spacing: -0.01em;
}

.mock-app__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 8px;
}

.mock-app__action {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mock-app__action svg {
  width: 16px;
  height: 16px;
  display: block;
  margin: 0 auto 4px;
  stroke: #C9A14B;
}

.mock-app__tx {
  margin-top: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.mock-app__tx-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
}

.mock-app__tx-item span:last-child {
  color: #C9A14B;
  font-weight: 800;
}

/* =========================================
   BLOC 2 — 6 étapes phone-screens
   ========================================= */

.steps-phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6, 32px) var(--sp-5, 24px);
  margin-top: var(--sp-7, 40px);
}

@media (max-width: 960px) {
  .steps-phones {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .steps-phones {
    grid-template-columns: 1fr;
    gap: var(--sp-7, 40px);
    margin-top: var(--sp-6, 32px);
  }
  .step-phone {
    padding-top: 8px;
  }
}

.step-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-phone__frame {
  position: relative;
  margin-bottom: var(--sp-4, 16px);
}

.step-phone__num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A14B 0%, #8a6a28 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(200, 161, 75, 0.4);
}

.step-phone__title {
  font-size: 1.0625rem;
  font-weight: 800;
  margin: var(--sp-2, 8px) 0 6px;
  color: #1a1a1a;
  line-height: 1.35;
}

.step-phone__caption {
  font-size: 0.88rem;
  color: var(--color-text-muted, #666);
  line-height: 1.55;
  max-width: 280px;
  margin: 0 auto;
}

/* Phone screen contents per step */
.step-screen {
  padding: 36px 12px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #FAFAF7;
}

.step-screen__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.step-screen__brand {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #C9A14B;
  text-transform: uppercase;
}

.step-screen__cta {
  background: linear-gradient(135deg, #C9A14B 0%, #8a6a28 100%);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(200, 161, 75, 0.3);
}

.step-screen__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.step-screen__icon svg {
  width: 32px;
  height: 32px;
  stroke: #322B3A;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-screen__label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #322B3A;
  text-align: center;
  padding: 0 6px;
  line-height: 1.4;
}

.step-screen__input {
  width: 100%;
  padding: 7px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.7rem;
  color: #322B3A;
  font-weight: 700;
}

.step-screen__pin {
  display: flex;
  gap: 6px;
}

.step-screen__pin span {
  width: 22px;
  height: 26px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  color: #C9A14B;
}

.step-screen__rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.step-screen__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  border-radius: 6px;
  background: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  color: #322B3A;
}

.step-screen__row span:last-child {
  color: #999;
  font-weight: 600;
}

.step-screen__check {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: #01D39A;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 900;
}

.step-screen__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-screen__success-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #01D39A 0%, #00a778 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(1, 211, 154, 0.3);
}

.step-screen__success-badge svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
}

/* =========================================
   BLOC 3 — Écosystème 2 colonnes
   ========================================= */

.ecosystem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-5, 24px), 4vw, var(--sp-8, 56px));
  align-items: center;
}

@media (max-width: 900px) {
  .ecosystem {
    grid-template-columns: 1fr;
    gap: var(--sp-6, 32px);
  }
}

.ecosystem__text ul {
  list-style: none;
  padding: 0;
  margin: var(--sp-4, 16px) 0 var(--sp-5, 24px);
  display: grid;
  gap: var(--sp-3, 12px);
}

.ecosystem__text li {
  display: flex;
  align-items: center;
  gap: var(--sp-3, 12px);
  font-size: 1rem;
  font-weight: 700;
  color: #322B3A;
}

.ecosystem__text li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A14B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

.ecosystem__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.ecosystem__card {
  position: absolute;
  right: 0;
  bottom: 4%;
  width: 60%;
  max-width: 280px;
  height: auto;
  transform: rotate(-10deg);
  filter: drop-shadow(0 22px 28px rgba(200, 160, 70, 0.3));
  z-index: 3;
}

/* =========================================
   BLOC 4 — Témoignage mis en avant
   ========================================= */

.testimonial-featured {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--sp-7, 40px) var(--sp-5, 24px);
  text-align: center;
  background: #FAFAF7;
  border-radius: var(--radius-xl, 24px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.testimonial-featured__avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto var(--sp-4, 16px);
  background: linear-gradient(135deg, #322B3A 0%, #2a1839 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 28px rgba(50, 43, 58, 0.22);
}

.testimonial-featured__stars {
  color: #C9A14B;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-3, 12px);
}

.testimonial-featured__quote {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 var(--sp-4, 16px);
  color: #1a1a1a;
  font-weight: 500;
}

.testimonial-featured__quote::before {
  content: '« ';
  color: #C9A14B;
  font-weight: 700;
}

.testimonial-featured__quote::after {
  content: ' »';
  color: #C9A14B;
  font-weight: 700;
}

.testimonial-featured__name {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.testimonial-featured__role {
  font-size: 0.85rem;
  color: var(--color-text-muted, #666);
  margin: 0;
}

/* =========================================
   BLOC 5 — Réseau / PoS
   ========================================= */

.reseau-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border-radius: var(--radius-xl, 24px);
  overflow: hidden;
  min-height: 440px;
  background: linear-gradient(135deg, #322B3A 0%, #2a1839 100%);
  color: #fff;
}

@media (max-width: 860px) {
  .reseau-hero {
    grid-template-columns: 1fr;
  }
  .reseau-hero__visual {
    min-height: 280px;
  }
}

.reseau-hero__visual {
  position: relative;
  background:
    radial-gradient(circle at 30% 70%, rgba(201, 161, 75, 0.25), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(253, 63, 92, 0.18), transparent 55%),
    linear-gradient(135deg, #2a1839 0%, #4a2d60 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6, 32px);
}

.reseau-hero__card {
  width: 70%;
  max-width: 320px;
  transform: rotate(-6deg);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  position: relative;
  z-index: 2;
}

.reseau-hero__floating {
  position: absolute;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.96);
  color: #322B3A;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.reseau-hero__floating--tl { top: 14%; left: 6%; }
.reseau-hero__floating--br { bottom: 16%; right: 6%; }

.reseau-hero__floating svg {
  width: 16px;
  height: 16px;
  stroke: #C9A14B;
  fill: none;
  stroke-width: 2;
}

.reseau-hero__text {
  padding: var(--sp-7, 40px) var(--sp-6, 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-4, 16px);
}

.reseau-hero__text .badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  align-self: flex-start;
}

.reseau-hero__text h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  margin: 0;
}

.reseau-hero__text h2 em {
  color: #C9A14B;
  font-style: normal;
}

.reseau-hero__text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.reseau-hero__kpis {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--sp-5, 24px);
  margin-top: var(--sp-2, 8px);
  padding-top: var(--sp-4, 16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reseau-hero__kpi-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.reseau-hero__kpi-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-top: 4px;
}

.reseau-hero__cta {
  margin-top: var(--sp-3, 12px);
  align-self: flex-start;
}

/* =========================================
   BLOC 7 — CTA final
   ========================================= */

.final-cta {
  padding: var(--sp-8, 56px) var(--sp-5, 24px);
  background: linear-gradient(135deg, #FAFAF7 0%, #fff4db 100%);
  border-radius: var(--radius-xl, 24px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 161, 75, 0.18);
}

.final-cta__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5, 24px);
  margin-bottom: var(--sp-5, 24px);
  height: 240px;
}

.final-cta__phone-icon {
  width: 128px;
  height: 224px;
  background: #161619;
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
  transform: rotate(-6deg);
  flex-shrink: 0;
}

.final-cta__phone-screen {
  background: linear-gradient(180deg, #322B3A 0%, #2a1839 100%);
  height: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta__phone-screen span {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #C9A14B;
  text-transform: uppercase;
}

.final-cta__card {
  width: 220px;
  height: auto;
  transform: rotate(8deg) translateY(12px);
  filter: drop-shadow(0 18px 32px rgba(200, 160, 70, 0.32));
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .final-cta__visual {
    gap: var(--sp-3, 12px);
    height: 200px;
  }
  .final-cta__phone-icon {
    width: 104px;
    height: 184px;
  }
  .final-cta__card {
    width: 180px;
  }
}

.final-cta h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  margin: 0 0 var(--sp-3, 12px);
  color: #1a1a1a;
}

.final-cta h2 em {
  color: #C9A14B;
  font-style: normal;
}

.final-cta p {
  font-size: 1.0625rem;
  color: var(--color-text-muted, #555);
  max-width: 560px;
  margin: 0 auto var(--sp-5, 24px);
  line-height: 1.65;
}

.final-cta .app-badges {
  justify-content: center;
  margin-top: var(--sp-4, 16px);
}

.final-cta__socials {
  margin-top: var(--sp-5, 24px);
  display: flex;
  gap: var(--sp-3, 12px);
  justify-content: center;
}

.final-cta__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(50, 43, 58, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #322B3A;
  transition: background 0.18s, color 0.18s;
}

.final-cta__socials a:hover {
  background: #322B3A;
  color: #fff;
}

.final-cta__socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
