/* ===== TOKENS – LIGHT MODE ===== */
:root {
  --navy: #0b4f70;
  --blue: #1277a0;
  --sky: #3aafce;
  --light: #b8e8f5;
  --white: #ffffff;
  --gray-50: #f4f9fc;
  --gray-100: #e8f3f9;
  --gray-400: #8aafc0;
  --gray-700: #2d4f60;
  --text: #0d2d3d;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(18, 119, 160, 0.13);

  /* Semantic tokens */
  --bg: #ffffff;
  --bg-alt: #f4f9fc;
  --bg-card: #ffffff;
  --border: #e8f3f9;
  --body-text: #0d2d3d;
  --muted: #2d4f60;
  --header-bg: rgba(255, 255, 255, 0.88);
  --footer-bg: #0d2d3d;
  --toggle-bg: #e8f3f9;
  --toggle-icon: #2d4f60;
}

/* ===== DARK MODE TOKENS ===== */
[data-theme="dark"] {
  --white: #1a2b35;
  --gray-50: #1e303d;
  --gray-100: #253d4d;
  --gray-400: #6b9db5;
  --gray-700: #a8cdd9;
  --text: #e0f2f9;
  --navy: #7dd3f0;
  --blue: #4ab8e8;
  --sky: #6dd4ef;
  --light: #1e4a5e;

  --bg: #111e26;
  --bg-alt: #16242f;
  --bg-card: #1a2e3a;
  --border: #253d4d;
  --body-text: #d1eaf5;
  --muted: #8ab8cc;
  --header-bg: rgba(17, 30, 38, 0.92);
  --footer-bg: #0a1820;
  --toggle-bg: #253d4d;
  --toggle-icon: #6dd4ef;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--body-text);
  background: var(--bg);
  line-height: 1.65;
  transition: background 0.35s ease, color 0.35s ease;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.2s;
  border-radius: inherit;
}
.btn:hover::after {
  background: rgba(255, 255, 255, 0.12);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(18, 119, 160, 0.3);
}
.btn:active {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
[data-theme="dark"] .btn-outline {
  color: var(--sky);
  border-color: var(--sky);
}
.btn-white {
  background: var(--bg-card);
  color: var(--navy);
}
.btn-sky {
  background: var(--sky);
  color: #fff;
}

.section-label {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  background: var(--gray-100);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  transition: background 0.35s, color 0.35s;
}
.section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
  color: var(--navy);
  transition: color 0.35s;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-top: 12px;
  transition: color 0.35s;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-selector {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 30px;
  border: 1px solid var(--border);
  transition: background 0.35s, border-color 0.35s;
  flex-shrink: 0;
}

.lang-selector select {
  background: transparent;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  outline: none;
  cursor: pointer;
  max-width: 90px;
  padding: 2px 0;
}

.lang-selector select option {
  background: var(--bg-card);
  color: var(--body-text);
}

[data-theme="dark"] .lang-selector select {
  color: var(--sky);
}

/* ===== DARK MODE TOGGLE ===== */
.theme-toggle {
  width: 44px;
  height: 24px;
  background: var(--toggle-bg);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.35s;
  flex-shrink: 0;
}
.theme-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.35s;
}
[data-theme="dark"] .theme-toggle::before {
  transform: translateX(20px);
  background: var(--sky);
}
.theme-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  flex-shrink: 0;
}
.theme-toggle-wrap i {
  font-size: 14px;
  color: var(--toggle-icon);
  transition: color 0.35s, transform 0.35s;
}
[data-theme="dark"] .theme-toggle-wrap .icon-sun {
  color: var(--sky);
}
[data-theme="dark"] .theme-toggle-wrap .icon-moon {
  opacity: 0.4;
}
[data-theme="light"] .theme-toggle-wrap .icon-moon {
  color: var(--blue);
}
[data-theme="light"] .theme-toggle-wrap .icon-sun {
  opacity: 0.4;
}

/* ===== NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.35s;
}
.header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  transition: color 0.35s;
  flex-shrink: 0;
  gap: 4px;
}
.nav-logo img {
  width: 40px;
  height: 40px;
}
.nav-logo:hover {
  opacity: 0.85;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  padding: 24px;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 20px;
  z-index: 99;
  box-shadow: var(--shadow);
  transition: background 0.35s;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, border-color 0.35s;
}

/* ===== HERO ===== */
.hero {
  padding-top: 120px;
  padding-bottom: 90px;
  background: linear-gradient(160deg, var(--bg-alt) 0%, #d7eef8 60%, var(--light) 100%);
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
[data-theme="dark"] .hero {
  background: linear-gradient(160deg, #111e26 0%, #16303d 60%, #1a3d50 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 175, 206, 0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-drift 8s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 119, 160, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-drift 10s ease-in-out infinite alternate-reverse;
}
@keyframes glow-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(30px, 20px) scale(1.08);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text>* {
  opacity: 0;
  animation: slide-up 0.7s ease forwards;
}
.hero-text>*:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-text>*:nth-child(2) {
  animation-delay: 0.22s;
}
.hero-text>*:nth-child(3) {
  animation-delay: 0.34s;
}
.hero-text>*:nth-child(4) {
  animation-delay: 0.46s;
}
.hero-text>*:nth-child(5) {
  animation-delay: 0.58s;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: slide-in-right 0.8s 0.3s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--light);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(58, 175, 206, 0.15);
  transition: background 0.35s, border-color 0.35s, color 0.35s;
}
.hero-badge span.an-dot {
  width: 8px;
  height: 8px;
  background: var(--sky);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
  transition: color 0.35s;
}
.hero h1 em {
  font-style: normal;
  color: var(--sky);
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
  transition: color 0.35s;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.app-badges {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 10px 18px;
  font-family: "Poppins", sans-serif;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s,
    background 0.35s;
}
.app-badge:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(11, 79, 112, 0.35);
}
.app-badge i {
  font-size: 22px;
}
.app-badge div {
  line-height: 1.2;
}
.app-badge span {
  font-size: 10px;
  opacity: 0.7;
  display: block;
}
.app-badge strong {
  font-size: 15px;
  font-weight: 700;
}

/* Phone mockup */
.phone-mockup {
  width: 240px;
  height: 480px;
  background: var(--navy);
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(11, 79, 112, 0.35), 0 0 0 8px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  gap: 14px;
  animation: phone-float 4s ease-in-out infinite;
  transition: background 0.35s;
}
[data-theme="dark"] .phone-mockup {
  background: transparent;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(255, 255, 255, 0.07);
}
@keyframes phone-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}
.phone-notch {
  width: 80px;
  height: 20px;
  background: #08374f;
  border-radius: 10px;
  margin-bottom: 8px;
}
.phone-title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.phone-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 20px;
  width: 100%;
}
.phone-icon-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 11px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.phone-icon-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05);
}
.phone-icon-card i {
  font-size: 24px;
  color: var(--sky);
}
.phone-welcome {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-top: 8px;
}
.phone-nearby {
  background: rgba(58, 175, 206, 0.2);
  width: calc(100% - 32px);
  border-radius: 12px;
  padding: 14px;
  margin-top: 8px;
}
.phone-nearby-label {
  font-size: 11px;
  color: #3aafce;
  font-weight: 700;
  margin-bottom: 6px;
}
.phone-helper {
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.phone-helper:last-child {
  margin-bottom: 0;
}
.phone-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(58, 175, 206, 0.3), transparent);
}
.hero-float {
  position: absolute;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.35s, box-shadow 0.35s, color 0.35s, transform 0.25s;
  backdrop-filter: blur(8px);
}
.hero-float:hover {
  transform: scale(1.05) translateY(-2px);
}
.hero-float.f1 {
  top: 30px;
  right: -30px;
  animation: float-a 5s ease-in-out infinite;
}
.hero-float.f2 {
  bottom: 80px;
  left: -50px;
  animation: float-b 6s ease-in-out infinite;
}
.hero-float i {
  color: var(--sky);
  font-size: 20px;
}
@keyframes float-a {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes float-b {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* ===== STATS ===== */
.stats-bar {
  background: var(--navy);
  padding: 48px 0;
  transition: background 0.35s;
}
[data-theme="dark"] .stats-bar {
  background: #0d1f2d;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.stat-number {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--sky);
  display: block;
  transition: transform 0.3s;
}
.stat-item:hover .stat-number {
  transform: scale(1.08);
}
.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
  background: var(--bg);
  transition: background 0.35s;
}
.features-header {
  text-align: center;
  margin-bottom: 60px;
}
.features-header .section-sub {
  margin: 12px auto 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out,
    background 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58, 175, 206, 0) 0%, rgba(58, 175, 206, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(18, 119, 160, 0.18);
  border-color: var(--light);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #fff;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.feature-card:hover .feature-icon {
  transform: rotate(-6deg) scale(1.12);
  box-shadow: 0 8px 24px rgba(58, 175, 206, 0.4);
}
.feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color 0.35s;
}
.feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  transition: color 0.35s;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 0;
  background: var(--bg-alt);
  transition: background 0.35s;
}
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 36px;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.step:hover .step-num {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 20px rgba(58, 175, 206, 0.4);
}
.step h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 4px;
  transition: color 0.35s;
}
.step p {
  font-size: 15px;
  color: var(--muted);
  transition: color 0.35s;
}

.how-visual {
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 24px;
  padding: 48px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
  box-shadow: 0 20px 60px rgba(18, 119, 160, 0.25);
}
[data-theme="dark"] .how-visual {
  background: linear-gradient(160deg, #0d2030 0%, #1a4d6e 100%);
}
.how-visual::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(58, 175, 206, 0.2);
  border-radius: 50%;
  animation: glow-drift 7s ease-in-out infinite alternate;
}
.how-visual h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 28px;
}
.role-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.role-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.28);
}
.role-card i {
  font-size: 26px;
  color: var(--sky);
  flex-shrink: 0;
  margin-top: 2px;
}
.role-card h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}
.role-card p {
  font-size: 13px;
  opacity: 0.8;
}
.how-verify-note {
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  background: var(--bg);
  transition: background 0.35s;
}
.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}
.toggle-wrap {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 44px;
}
.toggle-btn {
  padding: 10px 28px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid var(--blue);
  background: var(--bg-card);
  color: var(--blue);
  transition: background 0.2s, color 0.2s, border-color 0.35s;
  white-space: nowrap;
}
[data-theme="dark"] .toggle-btn {
  border-color: var(--sky);
  color: var(--sky);
}
.toggle-btn:first-child {
  border-radius: 50px 0 0 50px;
}
.toggle-btn:last-child {
  border-radius: 0 50px 50px 0;
}
.toggle-btn.active {
  background: var(--blue);
  color: #fff;
}
[data-theme="dark"] .toggle-btn.active {
  background: var(--sky);
  border-color: var(--sky);
}
.save-badge {
  font-size: 11px;
  background: #dff4fb;
  color: #1277a0;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 4px;
}
[data-theme="dark"] .save-badge {
  background: #1a4d6e;
  color: #6dd4ef;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.plan-card {
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s,
    border-color 0.3s, background 0.35s;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(18, 119, 160, 0.18);
}
.plan-card.popular {
  border-color: var(--blue);
  background: linear-gradient(160deg, var(--bg-card) 70%, rgba(58, 175, 206, 0.06) 100%);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  padding: 4px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
}
.plan-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
  transition: color 0.35s;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 16px 0 20px;
}
.amount {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--navy);
  transition: color 0.35s;
}
.amount.annually {
  display: none;
}
.period {
  font-size: 15px;
  color: var(--gray-400);
  transition: color 0.35s;
}
.plan-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
  transition: color 0.35s, border-color 0.35s;
}
.plan-features {
  flex: 1;
}
.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  transition: color 0.35s;
}
.plan-features li i {
  color: var(--sky);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}
.plan-cta {
  margin-top: 28px;
  width: 100%;
  text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--bg-alt);
  transition: background 0.35s;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s,
    border-color 0.3s, background 0.35s;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  color: var(--border);
  font-family: Georgia, serif;
  line-height: 1;
  transition: color 0.35s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(18, 119, 160, 0.15);
  border-color: var(--light);
}
.stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 14px;
}
.testimonial-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  transition: color 0.35s;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.testimonial-card:hover .reviewer-avatar {
  transform: scale(1.08) rotate(5deg);
}
.reviewer-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  transition: color 0.35s;
}
.reviewer-role {
  font-size: 12px;
  color: var(--gray-400);
  transition: color 0.35s;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--bg);
  transition: background 0.35s;
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.35s;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  text-align: left;
  transition: color 0.2s, padding 0.2s;
  gap: 16px;
}
.faq-question:hover {
  color: var(--blue);
}
.faq-question i {
  color: var(--sky);
  font-size: 18px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer p {
  font-size: 15px;
  color: var(--muted);
  padding-bottom: 18px;
  line-height: 1.7;
  transition: color 0.35s;
}
.faq-item.open .faq-question i {
  transform: rotate(45deg);
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-item.open {
  border-color: var(--sky);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--sky) 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
[data-theme="dark"] .cta-banner {
  background: linear-gradient(135deg, #0a1820 0%, #1a4060 60%, #2a7a95 100%);
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: glow-drift 9s ease-in-out infinite alternate;
}
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  animation: glow-drift 11s ease-in-out infinite alternate-reverse;
}
.cta-banner h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 46px);
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-banner .btn-white {
  background: #fff;
  color: var(--navy);
}
.cta-banner .btn-white:hover {
  background: var(--gray-50);
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--bg-alt);
  transition: background 0.35s;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s,
    border-color 0.3s, background 0.35s;
  text-decoration: none;
  color: inherit;
}
.contact-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(18, 119, 160, 0.16);
  border-color: var(--sky);
}
.contact-detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.contact-detail:hover .contact-detail-icon {
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 6px 18px rgba(58, 175, 206, 0.4);
}
.contact-detail-text span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
  transition: color 0.35s;
}
.contact-detail-text strong {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.35s;
}

/* Contact form */
.contact-form {
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 40px 36px;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.contact-form:hover {
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.form-group label {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.35s;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: var(--body-text);
  outline: none;
  resize: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.35s,
    color 0.35s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(58, 175, 206, 0.15);
  background: var(--bg-card);
}
.form-group textarea {
  min-height: 120px;
}
.form-submit {
  width: 100%;
  margin-top: 4px;
  justify-content: center;
  font-size: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg);
  padding: 70px 0 30px;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.35s;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 16px;
  gap: 4px;
}
.footer-logo img {
  width: 40px;
  height: 40px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s,
    transform 0.25s;
}
.social-links a:hover {
  background: var(--sky);
  color: #fff;
  transform: translateY(-3px) scale(1.1);
}
.footer-col h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-col a:hover {
  color: var(--sky);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== SCROLL REVEAL BASE ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.stagger-children>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0.05s;
  opacity: 1;
  transform: none;
}
.stagger-children.visible>*:nth-child(2) {
  transition-delay: 0.15s;
  opacity: 1;
  transform: none;
}
.stagger-children.visible>*:nth-child(3) {
  transition-delay: 0.25s;
  opacity: 1;
  transform: none;
}
.stagger-children.visible>*:nth-child(4) {
  transition-delay: 0.35s;
  opacity: 1;
  transform: none;
}
.stagger-children.visible>*:nth-child(5) {
  transition-delay: 0.45s;
  opacity: 1;
  transform: none;
}
.stagger-children.visible>*:nth-child(6) {
  transition-delay: 0.55s;
  opacity: 1;
  transform: none;
}

/* ===== CURSOR GLOW (desktop only) ===== */
.cursor-glow {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 175, 206, 0.08) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  display: none;
}
@media (hover: hover) {
  .cursor-glow {
    display: block;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: color 0.35s, background 0.35s, border-color 0.35s !important;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner,
  .how-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    order: -1;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-float.f1 {
    display: none;
  }
  .hero-float.f2 {
    bottom: 20px;
    left: 10px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 28px 20px;
  }
  .phone-mockup {
    width: 200px;
    height: 400px;
    padding-top: 24px;
  }
  .phone-icon-grid {
    gap: 8px;
  }
  .phone-icon-card {
    padding: 10px 8px;
    font-size: 10px;
  }
  .phone-icon-card i {
    font-size: 18px;
  }
  .phone-nearby {
    padding: 10px;
  }
  .phone-helper {
    font-size: 11px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .stat-number {
    font-size: 30px;
  }
  .stat-label {
    font-size: 12px;
  }
  .hero-float.f2 {
    display: none;
  }
}

/* ===== RTL & ARABIC FONT ===== */
html[dir="rtl"] {
  --font-family: "Cairo", "DM Sans", sans-serif;
  --heading-font: "Cairo", "Poppins", sans-serif;
}

html[dir="rtl"] body {
  font-family: var(--font-family);
}

html[dir="rtl"] .nav-logo,
html[dir="rtl"] .section-title,
html[dir="rtl"] .plan-name,
html[dir="rtl"] .faq-question,
html[dir="rtl"] .step h4,
html[dir="rtl"] .feature-card h3,
html[dir="rtl"] .hero h1,
html[dir="rtl"] .btn,
html[dir="rtl"] .plan-price .amount,
html[dir="rtl"] .stat-number,
html[dir="rtl"] .footer-logo,
html[dir="rtl"] .footer-col h4,
html[dir="rtl"] .contact-detail-text strong,
html[dir="rtl"] .form-group label,
html[dir="rtl"] .contact-form h3,
html[dir="rtl"] .reviewer-name,
html[dir="rtl"] .hero-badge,
html[dir="rtl"] .section-label,
html[dir="rtl"] .popular-badge,
html[dir="rtl"] .toggle-btn,
html[dir="rtl"] .app-badge,
html[dir="rtl"] .cta-banner h2,
html[dir="rtl"] .how-visual h3,
html[dir="rtl"] .role-card h5,
html[dir="rtl"] .step-num {
  font-family: var(--heading-font);
}

html[dir="rtl"] p,
html[dir="rtl"] li,
html[dir="rtl"] .plan-desc,
html[dir="rtl"] .plan-features li,
html[dir="rtl"] .testimonial-card p,
html[dir="rtl"] .faq-answer p,
html[dir="rtl"] .step p,
html[dir="rtl"] .role-card p,
html[dir="rtl"] .hero p,
html[dir="rtl"] .feature-card p,
html[dir="rtl"] .contact-detail-text span,
html[dir="rtl"] .footer-brand p,
html[dir="rtl"] .footer-col a,
html[dir="rtl"] .footer-bottom span,
html[dir="rtl"] .hero-float div span,
html[dir="rtl"] .reviewer-role {
  font-family: var(--font-family);
}

/* RTL specific overrides */
html[dir="rtl"] .nav-links {
  gap: 24px;
}

html[dir="rtl"] .nav-links a::after {
  left: auto;
  right: 0;
}

html[dir="rtl"] .step-num {
  flex-shrink: 0;
}

html[dir="rtl"] .feature-card {
  text-align: right;
}

html[dir="rtl"] .feature-icon {
  margin-left: auto;
  margin-right: 0;
}

html[dir="rtl"] .plan-features li i {
  margin-left: 8px;
  margin-right: 0;
}

html[dir="rtl"] .testimonial-card {
  text-align: right;
}

html[dir="rtl"] .testimonial-card::before {
  right: auto;
  left: 24px;
}

html[dir="rtl"] .faq-question i {
  margin-left: 0;
  margin-right: 8px;
}

html[dir="rtl"] .contact-detail-icon {
  margin-left: 18px;
  margin-right: 0;
}

html[dir="rtl"] .form-group {
  text-align: right;
}

html[dir="rtl"] .form-row {
  direction: rtl;
}

html[dir="rtl"] .footer-grid {
  text-align: right;
}

html[dir="rtl"] .footer-logo img {
  margin-right: 0;
  margin-left: 6px;
}

html[dir="rtl"] .hero-float.f1 {
  right: auto;
  left: -30px;
}

html[dir="rtl"] .hero-float.f2 {
  left: auto;
  right: -50px;
}

html[dir="rtl"] .phone-icon-card {
  direction: ltr;
}

html[dir="rtl"] .phone-mockup {
  direction: ltr;
}

html[dir="rtl"] .phone-mockup .phone-welcome,
html[dir="rtl"] .phone-mockup .phone-nearby-label,
html[dir="rtl"] .phone-mockup .phone-helper {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .phone-mockup .phone-helper {
  justify-content: flex-end;
}

/* Stats bar RTL */
html[dir="rtl"] .stat-item:not(:last-child)::after {
  right: auto;
  left: 0;
}

/* Toggle buttons RTL */
html[dir="rtl"] .toggle-btn:first-child {
  border-radius: 0 50px 50px 0;
}
html[dir="rtl"] .toggle-btn:last-child {
  border-radius: 50px 0 0 50px;
}

html[dir="rtl"] .lang-selector select {
  direction: rtl;
}

/* Mobile menu RTL */
html[dir="rtl"] .mobile-menu a {
  text-align: right;
}

/* Step text RTL fix */
html[dir="rtl"] .step div {
  text-align: right;
}

html[dir="rtl"] .role-card i {
  margin-left: 16px;
  margin-right: 0;
}

/* How visual RTL */
html[dir="rtl"] .how-visual {
  text-align: right;
}

html[dir="rtl"] .how-visual::after {
  right: auto;
  left: -60px;
}

html[dir="rtl"] .how-verify-note {
  text-align: right;
}

/* Contact info RTL */
html[dir="rtl"] .contact-detail-text {
  text-align: right;
}

@media (max-width: 640px) {
  html[dir="rtl"] .hero-actions {
    flex-direction: column-reverse;
  }
  html[dir="rtl"] .app-badges {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  html[dir="rtl"] .cta-buttons {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media (max-width: 640px) {
  html[dir="rtl"] .cta-buttons {
    flex-direction: column-reverse;
  }
}

/* Fix for icons in RTL that should stay LTR */
html[dir="rtl"] .fa-phone,
html[dir="rtl"] .fa-envelope,
html[dir="rtl"] .fa-location-dot,
html[dir="rtl"] .fa-clock,
html[dir="rtl"] .fa-star,
html[dir="rtl"] .fa-shield-check,
html[dir="rtl"] .fa-play,
html[dir="rtl"] .fa-paper-plane,
html[dir="rtl"] .fa-apple,
html[dir="rtl"] .fa-google-play,
html[dir="rtl"] .fa-facebook-f,
html[dir="rtl"] .fa-instagram,
html[dir="rtl"] .fa-globe,
html[dir="rtl"] .fa-sun,
html[dir="rtl"] .fa-moon,
html[dir="rtl"] .fa-plus,
html[dir="rtl"] .fa-check,
html[dir="rtl"] .fa-volume-high,
html[dir="rtl"] .fa-file-audio,
html[dir="rtl"] .fa-person-walking-with-cane,
html[dir="rtl"] .fa-map-location-dot,
html[dir="rtl"] .fa-credit-card,
html[dir="rtl"] .fa-ear-listen,
html[dir="rtl"] .fa-file-lines,
html[dir="rtl"] .fa-person-walking,
html[dir="rtl"] .fa-location-dot,
html[dir="rtl"] .fa-user-injured,
html[dir="rtl"] .fa-hands-helping,
html[dir="rtl"] .fa-shield-halved,
html[dir="rtl"] .fa-envelope-open-text,
html[dir="rtl"] .fa-circle {
  transform: none;
}