/* ============================================
   Einbürgerungstest 460 Fragen — Landing Page Styles
   ============================================ */

/* --- Self-hosted Inter Font (SIL Open Font License 1.1) --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/inter-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/inter-greek.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/inter-vietnamese.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* --- Custom Properties --- */
:root {
  --color-primary: #1a2a3a;
  --color-primary-light: #2a4a6a;
  --color-accent: #e8a838;
  --color-accent-light: #f0c060;
  --color-success: #2ecc71;
  --color-interactive: #3b7dd8;

  --color-bg: #f9fafb;
  --color-card: #ffffff;
  --color-text: #1f2937;
  --color-text-secondary: #6b7280;
  --color-border: #e5e7eb;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.16);

  --nav-height: 64px;
}

/* --- Dark Mode --- */
@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #111827;
    --color-card: #1f2937;
    --color-text: #f9fafb;
    --color-text-secondary: #9ca3af;
    --color-border: #374151;
  }
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .container { padding: 0 24px; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-primary);
}

.btn--accent:hover {
  background: var(--color-accent-light);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--sm {
  padding: 8px 18px;
  font-size: 14px;
  border-radius: var(--radius-md);
}

/* --- Section Titles --- */
.section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 17px;
}

@media (min-width: 768px) {
  .section-title { font-size: 34px; }
}

/* --- Badge --- */
.badge {
  display: inline-block;
  background: rgba(232, 168, 56, 0.15);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.nav--scrolled {
  background: rgba(249, 250, 251, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--color-border);
}

@media (prefers-color-scheme: dark) {
  .nav--scrolled {
    background: rgba(17, 24, 39, 0.85);
  }
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  z-index: 101;
}

.nav__logo img {
  border-radius: var(--radius-md);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}

.nav__links a:not(.btn) {
  color: var(--color-text-secondary);
  transition: color 0.15s ease;
}

.nav__links a:not(.btn):hover {
  color: var(--color-text);
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

/* Mobile Nav */
@media (max-width: 767px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    font-size: 20px;
    background: var(--color-bg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 100;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__links .btn {
    font-size: 18px;
    padding: 14px 32px;
  }
}

/* Hamburger animation */
.nav__hamburger svg line {
  transition: transform 0.25s ease, opacity 0.15s ease;
  transform-origin: center;
}

.nav__hamburger.active .hamburger__top {
  transform: translateY(6px) rotate(45deg);
}

.nav__hamburger.active .hamburger__mid {
  opacity: 0;
}

.nav__hamburger.active .hamburger__bot {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 64px;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__inner {
    flex-direction: row;
    gap: 64px;
  }

  .hero__content {
    flex: 1;
  }

  .hero__screenshots {
    flex: 1;
  }
}

.hero__content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero__content {
    text-align: left;
  }
}

.hero__kicker {
  font-size: 19px;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin: 12px 0 0;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 8px 0 16px;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .hero h1 { font-size: 40px; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 46px; }
}

.hero__desc {
  font-size: 17px;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin: 0 auto 28px;
}

@media (min-width: 1024px) {
  .hero__desc { margin: 0 0 28px; }
}

.hero__stores {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .hero__stores { justify-content: flex-start; }
}

.store-badge {
  transition: transform 0.15s ease;
}

.store-badge:hover {
  transform: scale(1.04);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  font-size: 13px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

@media (min-width: 1024px) {
  .hero__trust { justify-content: flex-start; }
}

.trust-dot {
  color: var(--color-accent);
}

/* App Screenshots */
.hero__screenshot {
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.hero__screenshot:hover {
  transform: scale(1.03);
}

/* Inline (neben Headline): 2 Screenshots */
.hero__screenshots-inline {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.hero__screenshots-inline .hero__screenshot {
  width: 180px;
}

/* Below (unter Headline): 4 Screenshots, gleiche Größe */
.hero__screenshots-below {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 40px var(--container-padding) 0;
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero__screenshots-below .hero__screenshot {
  width: 180px;
}

@media (min-width: 640px) {
  .hero__screenshots-inline .hero__screenshot,
  .hero__screenshots-below .hero__screenshot {
    width: 220px;
  }

  .hero__screenshots-inline,
  .hero__screenshots-below {
    gap: 20px;
  }

  .hero__screenshots-below {
    padding-top: 48px;
  }
}

@media (min-width: 1024px) {
  .hero__screenshots-inline .hero__screenshot,
  .hero__screenshots-below .hero__screenshot {
    width: 250px;
  }

  .hero__screenshots-inline,
  .hero__screenshots-below {
    gap: 24px;
  }

  .hero__screenshots-below {
    padding-top: 56px;
  }

  .hero__screenshots-below .hero__screenshot:nth-child(even) {
    transform: translateY(20px);
  }

  .hero__screenshots-below .hero__screenshot:nth-child(even):hover {
    transform: translateY(20px) scale(1.03);
  }
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 80px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Last two cards center on their row */
  .features__grid .feature-card:nth-child(4) {
    grid-column: 1 / 2;
  }

  .features__grid .feature-card:nth-child(5) {
    grid-column: 2 / 3;
  }
}

.feature-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 168, 56, 0.12);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  color: var(--color-accent);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

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

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 80px 0;
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    gap: 0;
    text-align: center;
  }
}

.step {
  flex: 1;
  position: relative;
  padding-left: 68px;
}

@media (min-width: 768px) {
  .step {
    padding-left: 0;
    padding-top: 72px;
  }
}

.step__number {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

@media (min-width: 768px) {
  .step__number {
    left: 50%;
    transform: translateX(-50%);
  }
}

.step__connector {
  display: none;
}

@media (min-width: 768px) {
  .step__connector {
    display: block;
    position: absolute;
    top: 24px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: var(--color-border);
  }

  .step:last-child .step__connector {
    display: none;
  }
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.step p {
  font-size: 15px;
  color: var(--color-text-secondary);
}

/* ============================================
   TRUST / KOSTENLOS
   ============================================ */
.trust {
  padding: 80px 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 40px;
}

@media (min-width: 640px) {
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
    gap: 12px 32px;
  }
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.trust__item svg {
  flex-shrink: 0;
}

.trust__pro {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 28px 24px;
  background: var(--color-card);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-xl);
  box-shadow: 0 0 0 1px rgba(232, 168, 56, 0.1), 0 4px 24px rgba(232, 168, 56, 0.08);
}

.trust__pro-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.trust__pro-features {
  list-style: none;
  margin-bottom: 16px;
}

.trust__pro-features li {
  position: relative;
  padding: 5px 0 5px 24px;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.5;
}

.trust__pro-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.trust__pro-price {
  font-size: 13px;
  color: var(--color-text-secondary);
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 80px 0;
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease;
}

.faq__item[open] summary::after {
  transform: rotate(180deg);
}

.faq__answer {
  padding-bottom: 20px;
  overflow: hidden;
}

.faq__answer p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 80px 0;
  background: var(--color-primary);
  color: #ffffff;
}

.cta__inner {
  text-align: center;
}

.cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .cta h2 { font-size: 38px; }
}

.cta p {
  font-size: 17px;
  opacity: 0.8;
  margin-bottom: 32px;
}

.cta__stores {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
}

.footer__brand img {
  border-radius: var(--radius-sm);
}

.footer__links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.footer__links a:hover {
  color: var(--color-text);
}

.footer__contact a {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.footer__contact a:hover {
  color: var(--color-accent);
}

.footer__copy {
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Disable animations for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
  position: relative;
}

.lang-switcher__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.lang-switcher__trigger:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}

.lang-switcher__chevron {
  transition: transform 0.2s ease;
}

.lang-switcher__dropdown.open + .lang-switcher__chevron,
.lang-switcher__trigger[aria-expanded="true"] .lang-switcher__chevron {
  transform: rotate(180deg);
}

.lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 200px;
  max-height: 360px;
  overflow-y: auto;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  padding: 4px 0;
}

.lang-switcher__dropdown.open {
  display: block;
}

.lang-switcher__link {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: background 0.1s ease, color 0.1s ease;
  text-decoration: none;
}

.lang-switcher__link:hover {
  background: var(--gray-100);
  color: var(--color-text);
}

@media (prefers-color-scheme: dark) {
  .lang-switcher__link:hover {
    background: var(--gray-700);
  }
}

.lang-switcher__link--active {
  color: var(--color-accent);
  font-weight: 600;
}

/* Mobile: show lang-switcher inside nav overlay */
@media (max-width: 767px) {
  .lang-switcher__dropdown {
    position: fixed;
    top: auto;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: 240px;
  }
}

/* ============================================
   LANGUAGE DETECTION BANNER
   ============================================ */
.lang-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--color-primary);
  color: #ffffff;
  padding: 12px 0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

.lang-banner__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
}

.lang-banner .btn--accent {
  padding: 6px 16px;
  font-size: 13px;
}

.lang-banner__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s ease;
}

.lang-banner__close:hover {
  color: #ffffff;
}

/* ============================================
   RTL SUPPORT
   ============================================ */
[dir="rtl"] .hero__content {
  text-align: right;
}

@media (min-width: 1024px) {
  [dir="rtl"] .hero__inner {
    flex-direction: row-reverse;
  }

  [dir="rtl"] .hero__stores {
    justify-content: flex-end;
  }

  [dir="rtl"] .hero__trust {
    justify-content: flex-end;
  }
}

[dir="rtl"] .step {
  padding-left: 0;
  padding-right: 68px;
}

[dir="rtl"] .step__number {
  left: auto;
  right: 0;
}

@media (min-width: 768px) {
  [dir="rtl"] .step {
    padding-right: 0;
  }

  [dir="rtl"] .step__number {
    right: 50%;
    left: auto;
    transform: translateX(50%);
  }
}

[dir="rtl"] .trust__pro-features li {
  padding-left: 0;
  padding-right: 24px;
}

[dir="rtl"] .trust__pro-features li::before {
  left: auto;
  right: 0;
}

[dir="rtl"] .faq__item summary::after {
  margin-left: 0;
  margin-right: 16px;
}

[dir="rtl"] .lang-switcher__dropdown {
  right: auto;
  left: 0;
}
