/*! WorldCup Landing Page (Arabic / RTL) — Opofinance */

/* ===========================================================================
   Fonts — Noto Kufi Arabic (self-hosted, Arabic subset)
   ========================================================================== */
@font-face {
  font-family: 'Noto Kufi Arabic';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('fonts/noto-kufi-arabic-200.woff2') format('woff2');
}

@font-face {
  font-family: 'Noto Kufi Arabic';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/noto-kufi-arabic-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Noto Kufi Arabic';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/noto-kufi-arabic-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Noto Kufi Arabic';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/noto-kufi-arabic-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Noto Kufi Arabic';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/noto-kufi-arabic-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Noto Kufi Arabic';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/noto-kufi-arabic-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Noto Kufi Arabic';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/noto-kufi-arabic-800.woff2') format('woff2');
}

@font-face {
  font-family: 'Noto Kufi Arabic';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/noto-kufi-arabic-900.woff2') format('woff2');
}

/* ===========================================================================
   Design tokens
   ========================================================================== */
:root {
  --color-bg: #0a0a0f;
  --color-primary: #1d79fd;
  --color-dark: #141414; /* Dark/08  */
  --color-surface: #1a1a1a; /* Dark/10  */
  --color-surface-06: #0f0f0f; /* Black/06 */
  --color-border: #262626; /* Dark/15  */
  --color-text: #ffffff;
  --grey-60: #98989a;
  --grey-50: #7e7e81;
  --grey: #999999;
  --grey-disc: #a6a6a6;
  --yellow: #ffcc00;

  --font: 'Noto Kufi Arabic', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --gutter: clamp(24px, 5.2vw, 100px);
  --container: 1920px;
  --radius-pill: 999px;
  --section-pad: clamp(40px, 5vw, 80px);

  /* Figma "Card Gradient-1": blue glow over a dark base */
  --grad-card: linear-gradient(143.38deg, #004dfa -59.66%, rgba(0, 77, 250, 0.4) -17.11%, rgba(0, 77, 250, 0) 68.1%);
  /* TradingView banner gradient */
  --grad-banner: linear-gradient(90deg, #c10bf9 0%, #335dff 50%, #0aa4ed 100%);
}

/* ===========================================================================
   Base / reset
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg {
  vertical-align: middle;
}

img {
  max-width: 100%;
}

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

::selection {
  background: var(--color-primary);
  color: #fff;
}

/* Shared section container */
.navbar__inner, .hero__inner, .regs__inner, .why__inner, .how__inner,
.benefits__inner, .offer__inner, .expo__inner, .reviews__inner, .faq__inner,
.final-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* Centered section heading used by Why / Benefits */
.section-title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 40px);
  line-height: 1.4;
  text-align: center;
  color: var(--color-text);
}

/* ===========================================================================
   Shared CTA pill (Navbar)
   ========================================================================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.7vw, 11px);
  background: var(--color-primary);
  color: #fff;
  border-radius: clamp(9px, 0.95vw, 14px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.btn-cta:hover {
  filter: brightness(1.08);
}

.btn-cta:active {
  transform: translateY(1px);
}

/* Hero / Final gradient pill button */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(8px, 1.1vw, 16px) clamp(20px, 2.2vw, 31px);
  border: clamp(2px, 0.31vw, 4.5px) solid #fff;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #fff 0%, #d3d3d3 100%);
  color: var(--color-dark);
  font-weight: 700;
  font-size: clamp(16px, 2.34vw, 34px);
  letter-spacing: -0.03em;
  white-space: nowrap;
  box-shadow: 0 -6.7px 14px rgba(255, 255, 255, 0.15), 0 18px 10.5px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-hero:hover {
  filter: brightness(1.04);
}

.btn-hero:active {
  transform: translateY(1px);
}

/* ===========================================================================
   Navbar
   ========================================================================== */
.navbar {
  border-bottom: 3px solid var(--color-border);
}

.navbar__inner {
  padding-block: clamp(20px, 3.7vw, 71px) clamp(20px, 2.45vw, 47px);
  display: flex;
  direction: ltr; /* match Figma canvas order: button left, logo right */
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar__cta {
  height: clamp(35px, 3.26vw, 62.6px);
  padding-inline: 11px;
  font-size: clamp(14px, 1.3vw, 25px);
}

.navbar__cta .btn-cta__icon {
  width: clamp(18px, 1.68vw, 32px);
  height: clamp(18px, 1.68vw, 32px);
}

.navbar__logo img {
  display: block;
  height: clamp(35px, 3.26vw, 62.5px);
  width: auto;
}

/* ===========================================================================
   Hero
   ========================================================================== */
.hero {
  padding-block: clamp(40px, 4.6vw, 82px) clamp(48px, 6.7vw, 130px);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 32px);
}

.hero__content {
  text-align: right;
  display: contents;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 34px);
  order: 1;
}

.hero__media {
  order: 2;
}

.hero__cta {
  order: 3;
  align-self: center;
}

.hero__note {
  order: 4;
}

.hero__badge {
  width: clamp(183px, 21.4vw, 411px);
  height: auto;
  align-self: center;
}

.hero__title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 49px);
  line-height: 1.5;
}

.hero__lead {
  margin: 0;
  font-weight: 400;
  font-size: clamp(15px, 1.85vw, 27px);
  line-height: 1.7;
  color: var(--grey-60);
}

.hero__media img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__note {
  margin: 0;
  font-weight: 400;
  font-size: clamp(13px, 1.85vw, 27px);
  color: var(--color-text);
  text-align: center;
}

/* ===========================================================================
   Regulations
   ========================================================================== */
.regs {
  border: 1.65px solid var(--color-border);
  padding-block: clamp(22px, 2.4vw, 35px);
}

.regs__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.regs__heading {
  margin: 0;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 40px);
  text-align: center;
  color: var(--grey-60);
}

.regs-slider {
  width: 100%;
  min-width: 0;
  direction: ltr;
}

.regs-slider .splide__track {
  height: auto;
}

.regs-slider .splide__list {
  height: auto;
}

.reg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.reg__text {
  font-weight: 400;
  font-size: clamp(13px, 1.1vw, 19.7px);
  color: var(--color-text);
  white-space: nowrap;
  unicode-bidi: plaintext
}

.reg__logo {
  height: clamp(40px, 3.4vw, 66px);
  width: auto;
  object-fit: contain;
}

/* ===========================================================================
   Card grid (Why Register, Benefits)
   ========================================================================== */
.cards {
  display: grid;
  gap: clamp(16px, 1.5vw, 20px);
  margin-top: clamp(28px, 3vw, 41px);
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--color-surface);
  border: 1.95px solid var(--color-border);
  border-radius: clamp(12px, 1.2vw, 15.6px);
  padding: clamp(20px, 2.7vw, 39px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(10px, 1vw, 14px);
  text-align: right;
}

.card__icon {
  align-self: flex-start;
  width: auto;
  height: clamp(40px, 4vw, 58px);
  object-fit: contain;
}

.card__title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(18px, 1.9vw, 27px);
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.card__text {
  margin: 0;
  font-weight: 300;
  font-size: clamp(13px, 1.35vw, 19.5px);
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--grey-60);
}

.why {
  padding-block: var(--section-pad);
}

.why__inner {
  display: flex;
  flex-direction: column;
}

/* TradingView gradient banner */
.why-banner {
  margin: clamp(28px, 3vw, 41px) auto 0;
  max-width: 881px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(16px, 1.8vw, 28px) clamp(20px, 2.4vw, 39px);
  border: 1.95px solid var(--color-border);
  border-radius: clamp(12px, 1.2vw, 15.6px);
  background: var(--grad-banner);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.why-banner:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.why-banner:active {
  transform: translateY(0);
}

.why-banner__text {
  font-weight: 600;
  font-size: clamp(18px, 2.3vw, 33px);
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #fff;
}

.benefits {
  padding-block: var(--section-pad);
}

.benefits__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.6vw, 40px);
}

.benefits__title {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.benefits__subtitle {
  margin: 0;
  font-weight: 400;
  font-size: clamp(15px, 1.55vw, 28px);
  text-align: center;
  color: var(--color-text);
}

.benefits__list {
  margin-top: 0;
}

.benefit {
  gap: clamp(16px, 2vw, 31px);
}

.benefit .card__icon {
  height: clamp(34px, 3.3vw, 47px);
}

/* ===========================================================================
   How it Works
   ========================================================================== */
.how {
  border: 3px solid var(--color-border);
  padding-block: clamp(28px, 3.2vw, 32px);
}

.how__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2.2vw, 22px);
}

.how__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.how__title .section-title {
  font-weight: 700;
}

.how__subtitle {
  margin: 0;
  font-weight: 400;
  font-size: clamp(15px, 1.55vw, 28px);
  text-align: center;
  color: var(--color-text);
}

.steps {
  width: 100%;
  background: var(--color-dark);
  border: 1.4px solid var(--color-border);
  border-radius: 25px;
  padding: clamp(12px, 1.2vw, 15px);
  display: grid;
  gap: clamp(14px, 1.7vw, 26px);
  grid-template-columns: 1fr;
}

.step {
  background: var(--grad-card), var(--color-surface);
  border: 1.4px solid var(--color-border);
  border-radius: 13.9px;
  padding: clamp(20px, 2.3vw, 33px);
  text-align: right;
}

.step__head {
  display: flex;
  direction: ltr;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}

.step__title {
  flex: 1 1 0;
  margin: 0;
  font-weight: 600;
  font-size: clamp(18px, 1.9vw, 27px);
  line-height: 1.5;
  letter-spacing: -0.03em;
  text-align: right;
  color: var(--color-text);
  unicode-bidi: plaintext;
}

.step__num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(42px, 3.9vw, 55.7px);
  height: clamp(42px, 3.9vw, 55.7px);
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: clamp(18px, 1.65vw, 23.7px);
}

.step__text {
  margin: 0;
  font-weight: 300;
  font-size: clamp(13px, 1.35vw, 19.5px);
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: var(--grey-60);
  unicode-bidi: plaintext;
}

.how__footnote {
  margin: 0;
  max-width: 718px;
  text-align: center;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--color-text);
}

.how__footnote-accent {
  display: block;
  font-weight: 700;
  color: var(--color-primary);
}

/* ===========================================================================
   Offer
   ========================================================================== */
.offer {
  padding-block: var(--section-pad);
  background: linear-gradient(167deg, rgba(0, 77, 250, 0.35) 0%, rgba(0, 77, 250, 0.12) 35%, rgba(0, 77, 250, 0) 70%),
  var(--color-surface);
}

.offer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 60px);
}

.offer__coupon {
  flex: 0 0 auto;
}

.offer__coupon img {
  display: block;
  width: clamp(220px, 24vw, 292px);
  height: auto;
}

.offer__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: right;
  max-width: 931px;
  width: 100%;
}

.offer__head {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.offer__eyebrow {
  margin: 0;
  font-weight: 200;
  font-size: clamp(18px, 1.6vw, 30px);
  color: #fff;
}

.offer__lead {
  margin: 0;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 40px);
  line-height: 1.7;
  color: #fff;
}

.offer__highlight {
  font-weight: 900;
  color: var(--yellow);
}

.offer__items {
  display: grid;
  direction: ltr;
  gap: 10px;
  grid-template-columns: 1fr;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-dark);
  border: 1.3px solid var(--color-border);
  border-radius: 10.3px;
  padding: clamp(12px, 1.3vw, 18px) clamp(16px, 1.9vw, 26px);
}

.offer-item__text {
  flex: 1 1 auto;
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.5;
  color: #fff;
  text-align: right;
}

.offer-item__icon {
  flex: 0 0 auto;
  width: clamp(20px, 1.6vw, 26px);
  height: clamp(20px, 1.6vw, 26px);
}

.offer__disclaimer {
  margin: 0;
  font-weight: 300;
  font-size: clamp(12px, 1.1vw, 20px);
  line-height: 1.6;
  color: var(--grey-disc);
}

/* ===========================================================================
   Expo / Awards
   ========================================================================== */
.expo {
  border: 1.72px solid var(--color-border);
  padding-block: clamp(28px, 3vw, 36px);
}

.expo__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 21px);
}

.expo__heading {
  margin: 0;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 40px);
  text-align: center;
  color: var(--grey-60);
}

.awards-slider { width: 100%; min-width: 0; direction: ltr; }
.awards-slider .splide__track { height: auto; }
.awards-slider .splide__list { height: auto; }

.award {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.award__label {
  font-weight: 400;
  font-size: clamp(13px, 1.2vw, 20.7px);
  color: var(--color-text);
}

.award__year {
  font-weight: 700;
  font-size: clamp(20px, 1.85vw, 31px);
  color: var(--color-primary);
}

/* ===========================================================================
   Reviews
   ========================================================================== */
.reviews {
  padding-block: var(--section-pad);
}

.reviews__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(22px, 2.2vw, 30px);
}

.reviews__title {
  display: flex;
  flex-direction: column;
  gap: 11px;
  text-align: center;
}

.reviews__heading {
  margin: 0;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 40px);
  letter-spacing: -0.02em;
  color: var(--grey-60);
}

.reviews__subtitle {
  margin: 0;
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 30px);
  color: var(--grey-60);
}

.reviews__trust {
  width: 100%;
  max-width: 1410px;
  background: var(--color-surface-06);
  border: 1.79px solid var(--color-border);
  border-radius: 25px;
  padding: clamp(16px, 2vw, 26px) clamp(16px, 2vw, 30px);
  display: flex;
  direction: ltr;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
}

.trust__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-dark);
  border: 1.79px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
}

.star {
  color: var(--yellow);
  font-size: 1.1em;
  line-height: 1;
}

.trust__score {
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 25px);
  color: var(--grey);
}

.trust__check {
  width: 22px;
  height: 22px;
  color: #2ecc71;
}

.trust__text {
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 30px);
  color: #fff;
  text-align: right;
}

.trust__logo {
  width: clamp(56px, 6vw, 91px);
  height: auto;
}

.reviews__body {
  width: 100%;
  max-width: 1410px;
  display: flex;
  direction: ltr;
  flex-direction: column;
  gap: 30px;
}

.review-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
  min-width: 0;
}

/* min-width:0 lets these flex children shrink below Splide's intrinsic content width
   (slides are flex-shrink:0), otherwise the slider blows the column out to full track width */
.review-slider {
  width: 100%;
  min-width: 0;
}

.review-slider .splide__track {
  height: auto;
}

.review-slider .splide__list {
  height: auto;
}

/* Safety: if Splide hasn't initialized yet (or JS fails), stay visible and show the first slide only */
.review-slider:not(.is-initialized) {
  visibility: visible;
}

.review-slider:not(.is-initialized) .splide__list {
  display: block;
}

.review-slider:not(.is-initialized) .splide__slide ~ .splide__slide {
  display: none;
}

.review-card {
  width: 100%;
  background: var(--color-surface-06);
  border: 1.79px solid var(--color-border);
  border-radius: 25px;
  padding: clamp(22px, 2.7vw, 43px);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 1.8vw, 28px);
  text-align: right;
}

.review-card__top {
  display: flex;
  direction: ltr;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(20px, 4vw, 73px);
}

.review-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--color-dark);
  border: 1.79px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
}

.stars {
  color: var(--yellow);
  letter-spacing: 2px;
  font-size: clamp(14px, 1.4vw, 18px);
}

.review-card__score {
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 25px);
  color: var(--grey);
}

.review-card__person {
  display: flex;
  flex-direction: column;
}

.review-card__name {
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 25px);
  color: #fff;
}

.review-card__date {
  font-weight: 400;
  font-size: clamp(13px, 1.15vw, 18px);
  color: var(--grey);
}

.review-card__text {
  margin: 0;
  font-weight: 400;
  font-size: clamp(13px, 1.15vw, 18px);
  line-height: 1.5;
  color: var(--grey);
}

.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.2vw, 18px);
}

.rev-arrow {
  width: clamp(44px, 4.5vw, 79px);
  height: clamp(44px, 4.5vw, 79px);
  border-radius: 50%;
  border: 1.79px solid var(--color-border);
  background: var(--color-dark);
  color: #fff;
  cursor: pointer;
  padding: clamp(12px, 1.4vw, 22px);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.rev-arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.rev-indicators {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: clamp(120px, 12vw, 173px);
}

.dot {
  height: 7px;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius-pill);
  background: #333;
  flex: 1 1 0;
  transition: background 0.2s ease, flex 0.2s ease;
}

.dot--active {
  background: var(--color-primary);
  flex: 1.4 1 0;
}

.review-video {
  width: 100%;
  min-width: 0;
  background: var(--color-surface-06);
  border: 1.79px solid var(--color-border);
  border-radius: 25px;
  padding: clamp(20px, 2.2vw, 36px);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 32px);
}

.review-video__frame {
  display: block;
  position: relative;
  border: 1.79px solid var(--color-border);
  border-radius: 21px;
  overflow: hidden;
  aspect-ratio: 597 / 322;
  cursor: pointer;
}

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

.review-video__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.review-video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(64px, 7vw, 91px);
  height: clamp(64px, 7vw, 91px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  z-index: 1;
  transition: background 0.15s ease, transform 0.15s ease;
}

.review-video__play:hover {
  background: rgba(255, 0, 0, 0.75);
  transform: scale(1.05);
}

.review-video__caption {
  margin: 0;
  font-weight: 400;
  font-size: clamp(14px, 1.35vw, 21.4px);
  line-height: 1.6;
  color: var(--grey);
  text-align: right;
}

/* ===========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding-block: clamp(40px, 4.6vw, 49px);
}

.faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 2.6vw, 34px);
}

.faq__heading {
  margin: 0;
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 36px);
  text-align: center;
  color: var(--grey-60);
}

.faq__list {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8vw, 30px);
}

.faq-item {
  background: var(--color-surface);
  border: 1.99px solid var(--color-border);
  border-radius: 25px;
  overflow: hidden;
}

.faq-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 40px);
  padding: clamp(18px, 2.6vw, 47px);
  background: none;
  border: 0;
  cursor: pointer;
  text-align: right;
  color: var(--color-text);
}

/* +/- icon */
.faq-item__icon {
  position: relative;
  flex: 0 0 auto;
  width: clamp(22px, 2.2vw, 40px);
  height: clamp(22px, 2.2vw, 40px);
}

.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-primary);
  border-radius: 2px;
}

.faq-item__icon::before {
  width: 100%;
  height: 3px;
}

.faq-item__icon::after {
  width: 3px;
  height: 100%;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq-item--open .faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__q {
  font-weight: 500;
  font-size: clamp(16px, 1.9vw, 31.8px);
  line-height: 1.4;
}

.faq-item__body {
  display: none;
  padding: 0 clamp(18px, 2.6vw, 47px) clamp(18px, 2.6vw, 47px);
}

.faq-item--open .faq-item__body {
  display: block;
}

.faq-item__body p {
  margin: 0;
  padding-top: clamp(16px, 1.8vw, 32px);
  margin-inline-start: clamp(38px, 5.2vw, 80px);
  border-top: 1.99px solid var(--color-border);
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 23.9px);
  line-height: 1.6;
  color: var(--grey-50);
}

/* ===========================================================================
   Final CTA (Last Container)
   ========================================================================== */
.final-cta {
  position: relative;
  border-top: 3px solid var(--color-border);
  padding-block: clamp(48px, 5vw, 62px);
  overflow: hidden;
  isolation: isolate;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../img/final-bg.webp') center / cover no-repeat;
  opacity: 0.2;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.95) 0%, rgba(20, 20, 20, 0.6) 45%, rgba(29, 121, 253, 0.45) 100%);
}

.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.final-cta__title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.4;
}

.final-cta__subtitle {
  margin: 0;
  font-weight: 500;
  font-size: clamp(14px, 1.6vw, 30px);
  line-height: 1.6;
  max-width: 900px;
}

.final-cta__pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 4px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(180px, 18vw, 315px);
  height: clamp(52px, 4.4vw, 68px);
  padding-inline: 24px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: clamp(18px, 1.9vw, 35px);
  white-space: nowrap;
}

.final-cta__btn {
  margin-top: 8px;
}

.final-cta__disclaimer {
  margin: 0;
  font-weight: 400;
  font-size: clamp(13px, 1.3vw, 25px);
  line-height: 1.7;
  max-width: 1100px;
}

/* ===========================================================================
   Desktop (>= 768px)
   ========================================================================== */
@media (min-width: 768px) {
  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(40px, 3.6vw, 69px);
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 0;
    max-width: 775px;
    gap: 32px;
  }

  .hero__text {
    align-items: flex-start;
  }

  .hero__badge {
    align-self: flex-start;
  }

  .hero__cta, .hero__note {
    align-self: flex-start;
    text-align: right;
  }

  .hero__media {
    flex: 1 1 0;
    max-width: 861px;
  }

  .cards--4 {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(18px, 1.9vw, 20px);
  }

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

  .offer__inner {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: clamp(40px, 7vw, 110px);
  }

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

  .reviews__trust {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .reviews__body {
    flex-direction: row;
    align-items: stretch;
  }

  .review-col {
    flex: 1 1 0;
    justify-content: space-between;
  }

  .review-video {
    flex: 1 1 0;
  }
}

@media print {
  *, *::before, *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }
}
