/* ============================================================
   Recash — Site Vitrine
   Charte graphique : Bleu marine #1F618D + Jaune ambré #F5A623
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #F9F9F8;
  color: #2C2C2A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── COLORS & GRADIENTS ── */
:root {
  --primary: #1F618D;
  --primary-dark: #1A527A;
  --primary-darker: #154E7A;
  --secondary: #F5A623;
  --secondary-dark: #D8921F;
  --tertiary: #1E7F5E;
  --danger: #D34F4F;
  --success: #1E7F5E;
  --warning: #F5A623;
  --bg: #F9F9F8;
  --bg-card: #FFFFFF;
  --text: #2C2C2A;
  --text-secondary: #6B6B68;
  --border: #E2E8F0;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --gradient-primary: linear-gradient(135deg, #1F618D 0%, #154E7A 100%);
  --gradient-warm: linear-gradient(135deg, #F5A623 0%, #D34F4F 100%);
  --gradient-cool: linear-gradient(135deg, #1F618D 0%, #1E7F5E 100%);
  --gradient-amber: linear-gradient(135deg, #F5A623 0%, #D8921F 100%);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: none;
  letter-spacing: 0.01em;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--gradient-primary);
  color: #fff;
  border-color: var(--primary);
}

.btn--primary:hover {
  box-shadow: 0 4px 15px rgba(31, 97, 141, 0.3);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
}

.btn--ghost:hover {
  background: rgba(31, 97, 141, 0.08);
}

.btn--sm {
  padding: 8px 18px;
  font-size: 13px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.logo__text {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.nav__link:hover {
  color: var(--primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--active {
  color: var(--primary);
}

.nav__link--active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-card__stores {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.pricing-card__stores .btn--store {
  flex: 1;
  text-align: center;
  font-size: 13px;
  padding: 10px 8px;
}

.lang-switcher {
  appearance: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s;
}
.lang-switcher:hover { border-color: var(--primary); }
.lang-switcher:focus { outline: none; border-color: var(--primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO ── */
.hero {
  padding: 140px 0 80px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 127, 94, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  color: #fff;
}

.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__title .text-highlight {
  color: var(--secondary);
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__cta .btn--primary {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #1a1a1a;
}

.hero__cta .btn--primary:hover {
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.hero__cta .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero__cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero__stats {
  display: flex;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  display: block;
}

.hero__visual {
  position: relative;
}

.hero__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}

.hero__floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-hover);
  animation: float 3s ease-in-out infinite;
}

.hero__floating-card--1 {
  top: -20px;
  left: -20px;
  animation-delay: 0s;
}

.hero__floating-card--2 {
  bottom: 40px;
  right: -20px;
  animation-delay: 1s;
}

.hero__floating-card--3 {
  bottom: -20px;
  left: 30%;
  animation-delay: 2s;
}

.hero__card-icon {
  font-size: 24px;
}

.hero__floating-card strong {
  display: block;
  font-size: 13px;
  color: var(--text);
}

.hero__floating-card small {
  font-size: 11px;
  color: var(--text-secondary);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── SECTION GENERIC ── */
.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section__title .text-highlight {
  color: var(--primary);
}

.section__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ── FEATURES ── */
.features {
  background: var(--bg);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--bg-card);
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
  flex: 1;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step__icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.step__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step__arrow {
  flex-shrink: 0;
  color: var(--primary);
}

/* ── PRICING ── */
.pricing {
  background: var(--bg);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pricing-card--featured {
  border-color: var(--secondary);
  box-shadow: 0 4px 24px rgba(245, 166, 35, 0.15);
  transform: scale(1.05);
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-amber);
  color: #fff;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.pricing-card__amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.pricing-card__currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-card__period {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.pricing-card__features {
  flex: 1;
  margin-bottom: 32px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__feature--muted {
  color: var(--text-secondary) !important;
  opacity: 0.6;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--bg-card);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card__stars {
  color: var(--secondary);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}

.testimonial-card__author small {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ── CASHBACK PARTNERS ── */
.cashback-partners {
  background: var(--bg);
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.partner-logo {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.partner-logo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.partner-logo__img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px;
  margin-bottom: 8px;
}

.partner-logo__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.partner-logo__region {
  font-size: 11px;
  color: var(--text-secondary);
  background: var(--bg);
  padding: 2px 10px;
  border-radius: 50px;
}

/* ── CTA ── */
.cta {
  background: var(--gradient-primary);
  text-align: center;
  padding: 80px 0;
}

.cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta__title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.cta__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn--primary {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #1a1a1a;
}

.cta .btn--primary:hover {
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.cta .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.cta .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ── CONTACT ── */
.contact {
  background: var(--bg-card);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s ease;
}

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 97, 141, 0.1);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--text-secondary);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact__item strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}

.contact__item span {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ── FOOTER ── */
.footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
}

.footer__social a:hover {
  background: var(--secondary);
  color: #1a1a1a;
}

.footer__links h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__links ul li {
  margin-bottom: 10px;
}

.footer__links ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer__links ul li a:hover {
  color: var(--secondary);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 140px 0 60px;
  background: var(--gradient-primary);
  text-align: center;
  position: relative;
}

.page-header__title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-header__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* ── FEATURES DETAIL PAGE ── */
.feature-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.feature-detail:last-child {
  border-bottom: none;
}

.feature-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-detail--reverse .feature-detail__inner {
  direction: rtl;
}

.feature-detail--reverse .feature-detail__inner > * {
  direction: ltr;
}

.feature-detail__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-detail__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.feature-detail__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.feature-detail__list {
  list-style: none;
}

.feature-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
}

.feature-detail__list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-detail__visual {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-detail__visual-placeholder {
  font-size: 80px;
  opacity: 0.3;
}

/* ── ABOUT PAGE ── */
.about-mission {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.about-mission__text {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.about-stat {
  text-align: center;
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.about-stat__number {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat__label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ── SUPPORT / FAQ ── */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: inherit;
}

.faq__question:hover {
  background: var(--bg);
}

.faq__question svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq__item.active .faq__question svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq__answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── LEGAL PAGE ── */
.legal__content {
  max-width: 800px;
  margin: 0 auto;
}

.legal__content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 16px;
}

.legal__content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 12px;
}

.legal__content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal__content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal__content ul li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__title { font-size: 38px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    box-shadow: var(--shadow-hover);
  }
  .nav.open .nav__list {
    flex-direction: column;
    gap: 16px;
  }
  .header__actions { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__title { font-size: 32px; }
  .hero__subtitle { font-size: 16px; }
  .hero__stats { gap: 24px; }
  .stat__number { font-size: 24px; }
  .hero__floating-card { display: none; }
  .hero__cta .btn--lg { padding: 14px 24px; font-size: 14px; }

  .section { padding: 60px 0; }
  .section__title { font-size: 28px; }
  .section__subtitle { font-size: 16px; }
  .features__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step__arrow { transform: rotate(90deg); }
  .partners__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .feature-detail__inner { grid-template-columns: 1fr; gap: 32px; }
  .feature-detail--reverse .feature-detail__inner { direction: ltr; }
  .about-stats { grid-template-columns: 1fr; }
  .page-header__title { font-size: 32px; }
  .page-header { padding: 120px 0 40px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 26px; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .cta__buttons { flex-direction: column; }
  .cta__buttons .btn { width: 100%; justify-content: center; }
  .pricing-card { padding: 28px 20px; }
  .feature-card { padding: 24px; }
}
