/* ========================================
   ODYSSA — Design System
   ======================================== */

:root {
  /* Couleurs principales */
  --color-primary: #2563EB;
  --color-primary-light: #60A5FA;
  --color-primary-dark: #1D4ED8;
  --color-accent: #06B6D4;
  --color-accent-light: #67E8F9;

  /* Surfaces */
  --color-bg: #F8FAFC;
  --color-white: #FFFFFF;
  --color-surface: #F1F5F9;
  --color-surface-warm: #FFF7ED;

  /* Texte */
  --color-text: #0F172A;
  --color-text-secondary: #64748B;
  --color-text-muted: #94A3B8;

  /* Bordures */
  --color-border: #E2E8F0;
  --color-border-light: #F1F5F9;

  /* Typographie */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Tailles */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.25rem;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-full: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.1);
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 200ms;
  --duration-slow: 400ms;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--color-primary-dark);
}

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

/* ========================================
   FLOATING LOGO — Hero overlay
   ======================================== */

.hero-logo-floating {
  position: absolute;
  top: var(--sp-6);
  left: var(--sp-6);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: white;
  text-decoration: none;
  transition: background var(--duration-slow) var(--ease), transform var(--duration) var(--ease);
}

.hero-logo-floating:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.03);
}

.hero-logo-floating img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  padding: 5px;
}

.hero-logo-floating span {
  display: none;
}

@media (min-width: 768px) {
  .hero-logo-floating {
    top: var(--sp-8);
    left: var(--sp-10);
  }

  .hero-logo-floating img {
    width: 100px;
    height: 100px;
    padding: 8px;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(160deg, rgba(15, 23, 42, 0.55) 0%, rgba(30, 10, 60, 0.45) 50%, rgba(15, 23, 42, 0.6) 100%),
    url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem var(--sp-6) var(--sp-12);
}

@media (min-width: 768px) {
  .hero-section {
    padding: 9rem var(--sp-10) var(--sp-16);
  }
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  text-align: center;
  gap: var(--sp-10);
}

@media (min-width: 968px) {
  .hero-inner {
    grid-template-columns: 1fr auto;
    text-align: left;
    gap: var(--sp-16);
  }
}

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

@media (min-width: 968px) {
  .hero-text {
    align-items: flex-start;
  }
}

.hero-cta-center {
  display: flex;
  justify-content: center;
  width: 100%;
  grid-column: 1 / -1;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: var(--sp-6);
  letter-spacing: -0.04em;
  max-width: 700px;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: var(--text-5xl);
  }
}

.hero-subtitle {
  font-size: var(--text-lg);
  opacity: 0.85;
  margin-bottom: var(--sp-8);
  line-height: 1.7;
  max-width: 520px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 968px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

/* Store button — style Apple noir */
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.875rem 1.5rem;
  background: #000;
  border: none;
  border-radius: var(--radius-lg);
  color: #fff;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-store:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.btn-store svg {
  flex-shrink: 0;
}

.btn-store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.btn-store-label {
  font-size: 0.6rem;
  font-weight: 400;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-store-name {
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Phone frame */
.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  position: relative;
  width: 240px;
  border-radius: 36px;
  overflow: hidden;
  background: #000;
  border: 5px solid #1a1a1e;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

/* Dynamic Island / Notch */
.phone-frame::after {
  content: '';
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 31px;
}

@media (min-width: 968px) {
  .phone-frame {
    width: 290px;
    border-radius: 44px;
    border-width: 6px;
  }

  .phone-frame::after {
    top: 11px;
    width: 95px;
    height: 28px;
  }

  .phone-frame img {
    border-radius: 38px;
  }
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
  padding: var(--sp-20) var(--sp-6);
  background: var(--color-bg);
}

@media (min-width: 768px) {
  .features-section {
    padding: var(--sp-24) var(--sp-10);
  }
}

.features-container {
  max-width: 1120px;
  margin: 0 auto;
}

.features-section h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.04em;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .features-section h2 {
    font-size: var(--text-4xl);
  }
}

.features-subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  margin-bottom: var(--sp-16);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-5);
  }
}

.feature-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-slow) var(--ease), box-shadow var(--duration-slow) var(--ease);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: var(--radius-xl);
}

/* Couleurs individuelles par feature */
.feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, #DBEAFE, #BFDBFE); color: #2563EB; }
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, #FEE2E2, #FECACA); color: #DC2626; }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); color: #059669; }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, #E0E7FF, #C7D2FE); color: #4338CA; }
.feature-card:nth-child(5) .feature-icon { background: linear-gradient(135deg, #FEF3C7, #FDE68A); color: #D97706; }
.feature-card:nth-child(6) .feature-icon { background: linear-gradient(135deg, #CFFAFE, #A5F3FC); color: #0891B2; }

.feature-card:nth-child(1)::before { background: #2563EB; }
.feature-card:nth-child(2)::before { background: #DC2626; }
.feature-card:nth-child(3)::before { background: #059669; }
.feature-card:nth-child(4)::before { background: #4338CA; }
.feature-card:nth-child(5)::before { background: #D97706; }
.feature-card:nth-child(6)::before { background: #0891B2; }

.feature-content {
  flex: 1;
  min-width: 0;
}

.feature-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-1);
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.55;
}


/* ========================================
   ABOUT / CTA SECTION
   ======================================== */

.about-section {
  padding: var(--sp-20) var(--sp-6);
  text-align: center;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative gradient behind */
.about-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .about-section {
    padding: var(--sp-24) var(--sp-10);
  }
}

.about-container {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-section h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: var(--sp-4);
  color: var(--color-text);
  letter-spacing: -0.04em;
}

@media (min-width: 768px) {
  .about-section h2 {
    font-size: var(--text-4xl);
  }
}

.about-section p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp-10);
}

.about-cta {
  margin-top: var(--sp-2);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.875rem 2.25rem;
  background: var(--color-primary);
  color: white;
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}

/* ========================================
   LANDING FOOTER
   ======================================== */

.landing-footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: var(--sp-8) var(--sp-6);
}

@media (min-width: 768px) {
  .landing-footer {
    padding: var(--sp-10) var(--sp-10);
  }
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-logo {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  display: block;
  margin-bottom: var(--sp-1);
  letter-spacing: -0.03em;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-6);
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-links {
    justify-content: flex-end;
  }
}

.footer-links a {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  transition: color var(--duration) var(--ease);
}

.footer-links a:hover {
  color: var(--color-primary);
}

/* ========================================
   LEGAL PAGES — Modern Layout
   ======================================== */

/* Page wrapper */
.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Legal top bar */
.legal-topbar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: var(--sp-4) var(--sp-6);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(255, 255, 255, 0.85);
}

.legal-topbar-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  transition: gap var(--duration) var(--ease);
}

.legal-back:hover {
  gap: var(--sp-3);
  color: var(--color-primary-dark);
}

.legal-back svg {
  width: 18px;
  height: 18px;
}

.legal-topbar-brand {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: -0.02em;
}

/* Legal hero banner */
.legal-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1E40AF 100%);
  color: white;
  padding: var(--sp-16) var(--sp-6) var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.legal-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.legal-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: var(--sp-5);
}

.legal-hero-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-3);
}

@media (min-width: 768px) {
  .legal-hero h1 {
    font-size: var(--text-4xl);
  }
}

.legal-hero .legal-date {
  font-size: var(--text-sm);
  opacity: 0.7;
}

/* Legal body */
.legal-body {
  flex: 1;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
  padding: var(--sp-10) var(--sp-6) var(--sp-16);
}

@media (min-width: 768px) {
  .legal-body {
    padding: var(--sp-12) var(--sp-6) var(--sp-20);
  }
}

/* Section cards for legal content */
.legal-section {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-6);
  margin-bottom: var(--sp-4);
  transition: box-shadow var(--duration-slow) var(--ease);
}

.legal-section:hover {
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .legal-section {
    padding: var(--sp-8);
  }
}

.legal-section h2 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-4);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  letter-spacing: -0.02em;
}

.legal-section h2 .section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  flex-shrink: 0;
}

.legal-section p {
  margin-bottom: var(--sp-4);
  color: var(--color-text-secondary);
  line-height: 1.75;
  font-size: var(--text-base);
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  list-style: none;
  margin-bottom: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-section li {
  position: relative;
  padding-left: var(--sp-6);
  color: var(--color-text-secondary);
  line-height: 1.65;
  font-size: var(--text-base);
}

.legal-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--color-primary-light);
  border-radius: 50%;
}

.legal-section a {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color var(--duration) var(--ease);
}

.legal-section a:hover {
  text-decoration-color: var(--color-primary);
}

/* Legal page footer */
.legal-footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
}

.legal-footer-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-footer p {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  margin-bottom: var(--sp-3);
}

.legal-footer-links {
  display: flex;
  gap: var(--sp-6);
  justify-content: center;
  flex-wrap: wrap;
}

.legal-footer-links a {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color var(--duration) var(--ease);
}

.legal-footer-links a:hover {
  color: var(--color-primary);
}

/* ========================================
   SUPPORT PAGE — Modern
   ======================================== */

/* Support cards grid */
.support-grid {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

@media (min-width: 640px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.support-card-modern {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  transition: transform var(--duration-slow) var(--ease), box-shadow var(--duration-slow) var(--ease);
}

.support-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.support-card-icon-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-5);
  color: white;
}

.support-card-modern:first-child .support-card-icon-modern {
  background: linear-gradient(135deg, var(--color-primary), #1E40AF);
}

.support-card-modern:last-child .support-card-icon-modern {
  background: linear-gradient(135deg, #059669, var(--color-accent));
}

.support-card-modern h2 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--color-text);
}

.support-card-modern p {
  color: var(--color-text-secondary);
  margin-bottom: var(--sp-5);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.625rem 1.5rem;
  background: var(--color-primary);
  color: white;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.btn-modern:hover {
  background: var(--color-primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

/* FAQ — accordion style */
.faq-modern {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--sp-10);
}

.faq-modern-header {
  padding: var(--sp-6) var(--sp-6) var(--sp-2);
}

.faq-modern-header h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.faq-item-modern {
  padding: var(--sp-5) var(--sp-6);
  border-top: 1px solid var(--color-border-light);
  transition: background var(--duration) var(--ease);
}

.faq-item-modern:hover {
  background: var(--color-bg);
}

.faq-item-modern h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--sp-2);
  color: var(--color-text);
}

.faq-item-modern p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Support CTA bottom */
.support-bottom-cta {
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-6);
}

.support-bottom-cta p {
  color: var(--color-text-secondary);
  margin-bottom: var(--sp-5);
  font-size: var(--text-base);
}
