﻿:root,
html[data-theme="light"] {
  --bg: #f7faff;
  --surface: #ffffff;
  --card-alt: #eef5ff;
  --card-alt-strong: #e4efff;
  --border: rgba(15, 23, 42, 0.10);
  --border-strong: rgba(20, 99, 255, 0.22);
  --text: #07111f;
  --muted: #526176;
  --muted-strong: #334155;
  --primary: #1463ff;
  --primary-dark: #0b4fd8;
  --primary-soft: rgba(20, 99, 255, 0.10);
  --success: #16a34a;
  --warning: #d97706;
  --danger: #dc2626;
  --tag-bg: rgba(20, 99, 255, 0.08);
  --shadow: rgba(15, 23, 42, 0.10);
  --shadow-strong: rgba(15, 23, 42, 0.18);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1160px;

  --body-bg:
    radial-gradient(circle at 12% 4%, rgba(20, 99, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 84% 16%, rgba(0, 163, 255, 0.10), transparent 24rem),
    radial-gradient(circle at 56% 72%, rgba(22, 163, 74, 0.07), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 45%, #eef5ff 100%);
  --header-bg: rgba(255, 255, 255, 0.88);
  --card-bg: rgba(255, 255, 255, 0.92);
  --card-hover-bg: rgba(247, 250, 255, 0.98);
  --soft-section-bg:
    radial-gradient(circle at 84% 0%, rgba(20, 99, 255, 0.10), transparent 24rem),
    linear-gradient(180deg, rgba(239, 246, 255, 0.86), rgba(255, 255, 255, 0.92));
  --footer-bg: rgba(255, 255, 255, 0.92);
  --phone-shell-bg: linear-gradient(145deg, #ffffff, #eaf2ff);
  --phone-shell-shadow: 0 38px 92px rgba(15, 23, 42, 0.16);
  --floating-bg: rgba(255, 255, 255, 0.90);
  --link: #0b63ce;
  --accent-text: #1463ff;
  --button-text: #ffffff;
}

html[data-theme="dark"] {
  --bg: #07111f;
  --surface: #0e1726;
  --card-alt: #14213d;
  --card-alt-strong: #17294d;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f8fafc;
  --muted: #98a2b3;
  --muted-strong: #cbd5e1;
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-soft: rgba(59, 130, 246, 0.14);
  --success: #12b76a;
  --warning: #f59e0b;
  --danger: #dc2626;
  --tag-bg: rgba(255, 255, 255, 0.07);
  --shadow: rgba(0, 0, 0, 0.24);
  --shadow-strong: rgba(0, 0, 0, 0.42);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1160px;

  --body-bg:
    radial-gradient(circle at 14% 6%, rgba(59, 130, 246, 0.22), transparent 27rem),
    radial-gradient(circle at 82% 18%, rgba(18, 183, 106, 0.13), transparent 24rem),
    radial-gradient(circle at 56% 74%, rgba(245, 158, 11, 0.08), transparent 26rem),
    linear-gradient(180deg, #07111f 0%, #0a1324 42%, #07111f 100%);
  --header-bg: rgba(7, 17, 31, 0.82);
  --card-bg: rgba(14, 23, 38, 0.92);
  --card-hover-bg: rgba(20, 33, 61, 0.94);
  --soft-section-bg:
    radial-gradient(circle at 84% 0%, rgba(59, 130, 246, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(20, 33, 61, 0.34), rgba(7, 17, 31, 0.74));
  --footer-bg: rgba(7, 17, 31, 0.88);
  --phone-shell-bg: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
  --phone-shell-shadow: 0 38px 100px rgba(0, 0, 0, 0.46);
  --floating-bg: rgba(14, 23, 38, 0.88);
  --link: #93c5fd;
  --accent-text: #60a5fa;
  --button-text: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--text);
  background: var(--body-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--success));
  box-shadow: 0 0 26px rgba(59, 130, 246, 0.75);
}

.background-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.78;
  animation: orbFloat 14s ease-in-out infinite alternate;
}

.orb-one {
  width: 260px;
  height: 260px;
  top: 90px;
  right: -90px;
  background: rgba(59, 130, 246, 0.18);
}

.orb-two {
  width: 280px;
  height: 280px;
  top: 540px;
  left: -130px;
  background: rgba(18, 183, 106, 0.13);
  animation-delay: -4s;
}

.orb-three {
  width: 210px;
  height: 210px;
  top: 980px;
  right: 12%;
  background: rgba(245, 158, 11, 0.1);
  animation-delay: -8s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  flex-shrink: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow:
    0 12px 26px rgba(59, 130, 246, 0.24),
    0 0 0 1px var(--border);
}

.brand-text {
  color: var(--text);
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  color: var(--muted);
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  font-weight: 800;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--primary);
  transition: width 220ms ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.nav-cta {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  box-shadow: 0 16px 38px rgba(59, 130, 246, 0.26);
  white-space: nowrap;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  padding: 92px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #60a5fa;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 790px;
  color: var(--text);
  font-size: clamp(2.6rem, 7vw, 5.65rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.15rem;
  letter-spacing: -0.015em;
}

.hero-subtitle {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  box-shadow: 0 18px 44px rgba(59, 130, 246, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: rgba(96, 165, 250, 0.42);
  box-shadow: 0 14px 34px var(--shadow);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text);
  background: var(--tag-bg);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
}

.phone-shell {
  position: relative;
  width: min(100%, 420px);
  padding: 14px;
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98)),
    #020617;
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 45px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.82), rgba(18, 183, 106, 0.36), transparent);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  padding: 10px 18px 14px;
  font-size: 0.78rem;
  font-weight: 900;
}

.status-dots {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
}

.app-screen {
  min-height: 620px;
  padding: 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 0%, rgba(59, 130, 246, 0.12), transparent 18rem),
    var(--bg);
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.app-hero-card,
.app-account-card,
.app-grid div,
.app-service-card,
.metric-card,
.feature-card,
.step,
.content-card,
.faq-list details,
.experience-card,
.cta-card,
.legal-card {
  border: 1px solid var(--border);
  background: rgba(14, 23, 38, 0.92);
  box-shadow: 0 18px 52px var(--shadow);
}

.app-hero-card {
  padding: 18px;
  border-radius: 24px;
  display: grid;
  gap: 14px;
}

.app-hero-top {
  display: flex;
  flex-direction: row-reverse;
  gap: 12px;
  align-items: flex-start;
}

.app-icon-button,
.app-row-icon,
.experience-icon,
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--card-alt);
  display: grid;
  place-items: center;
  color: #93c5fd;
  font-weight: 900;
  flex-shrink: 0;
}

.app-overline {
  margin: 0 0 5px;
  color: #60a5fa;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.app-hero-card h2 {
  margin-bottom: 6px;
  font-size: 1.55rem;
  color: var(--text);
}

.app-hero-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.app-tags span {
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--tag-bg);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.app-primary-button {
  min-height: 50px;
  border: 0;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  font-weight: 900;
  font-size: 0.95rem;
  box-shadow: 0 14px 34px rgba(59, 130, 246, 0.24);
}

.app-account-card {
  padding: 14px;
  border-radius: 22px;
}

.app-row,
.service-top,
.experience-card {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 12px;
}

.app-row div:not(.app-row-icon),
.service-top div:not(.app-row-icon),
.experience-card div:not(.experience-icon) {
  flex: 1;
}

.app-row strong,
.app-row span,
.service-top strong,
.service-top span,
.experience-card strong,
.experience-card span {
  display: block;
}

.app-row strong,
.service-top strong,
.experience-card strong {
  color: var(--text);
  font-weight: 900;
}

.app-row span,
.service-top span,
.experience-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.app-row em {
  min-width: 26px;
  height: 26px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #ffffff;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 900;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.app-grid div {
  min-height: 130px;
  padding: 14px;
  border-radius: 22px;
  display: grid;
  align-content: start;
  gap: 6px;
}

.app-grid span {
  font-size: 1.4rem;
}

.app-grid strong,
.app-grid small {
  display: block;
}

.app-grid strong {
  color: var(--text);
  font-weight: 900;
}

.app-grid small {
  color: var(--muted);
  font-weight: 700;
}

.app-service-card {
  padding: 16px;
  border-radius: 24px;
  display: grid;
  gap: 14px;
}

.mini-price-card {
  padding: 14px;
  border-radius: 18px;
  background: var(--card-alt-strong);
  display: grid;
  gap: 10px;
}

.mini-price-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.mini-price-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.mini-price-card strong {
  color: var(--text);
  font-weight: 900;
}

.mini-price-card hr {
  width: 100%;
  border: 0;
  height: 1px;
  background: var(--border);
}

.floating-phone {
  animation: phoneFloat 5s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(14, 23, 38, 0.88);
  border: 1px solid var(--border-strong);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: var(--text);
  font-weight: 900;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.card-live {
  top: 100px;
  right: -6px;
  animation: miniFloat 4.8s ease-in-out infinite;
}

.card-rating {
  bottom: 118px;
  left: -4px;
  animation: miniFloat 4.8s ease-in-out infinite reverse;
}

.metrics-section {
  padding: 20px 0 28px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.metric-card {
  min-height: 122px;
  padding: 22px;
  border-radius: var(--radius-lg);
  display: grid;
  align-content: center;
  gap: 6px;
}

.metric-card strong {
  color: #60a5fa;
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 950;
}

.metric-card span {
  color: var(--muted);
  font-weight: 800;
}

.seo-strip {
  padding: 24px 0;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.seo-grid div {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(14, 23, 38, 0.88);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}

.seo-grid strong,
.seo-grid span {
  display: block;
}

.seo-grid strong {
  color: var(--text);
  font-weight: 900;
}

.seo-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: 86px 0;
}

.section-header {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
}

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

.feature-card {
  min-height: 248px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.feature-card:hover {
  border-color: rgba(96, 165, 250, 0.42);
  background: rgba(20, 33, 61, 0.92);
  box-shadow:
    0 24px 68px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(96, 165, 250, 0.08);
}

.feature-card p {
  color: var(--muted);
  font-weight: 600;
}

.icon-box {
  margin-bottom: 18px;
  background: var(--primary-soft);
}

.soft-section {
  background:
    radial-gradient(circle at 84% 0%, rgba(59, 130, 246, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(20, 33, 61, 0.34), rgba(7, 17, 31, 0.74));
  border-block: 1px solid var(--border);
}

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

.step {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.step span {
  display: inline-flex;
  margin-bottom: 30px;
  color: #60a5fa;
  font-weight: 950;
  font-size: 1.15rem;
}

.step p {
  color: var(--muted);
  font-weight: 600;
}

.app-experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 34px;
  align-items: center;
}

.app-experience-grid p {
  color: var(--muted);
  font-weight: 600;
}

.experience-stack {
  display: grid;
  gap: 14px;
}

.experience-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.experience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.42);
  background: rgba(20, 33, 61, 0.94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.content-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.content-card p {
  color: var(--muted);
  font-weight: 600;
}

.faq-section {
  padding-top: 40px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
  border-radius: var(--radius-lg);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--text);
  list-style-position: inside;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.cta-section {
  padding-top: 34px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.16), transparent 18rem),
    radial-gradient(circle at bottom right, rgba(18, 183, 106, 0.1), transparent 18rem),
    rgba(14, 23, 38, 0.94);
}

.cta-card p {
  max-width: 740px;
  color: var(--muted);
  font-weight: 600;
}

.legal-section {
  padding: 26px 0 70px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-links a,
.footer-grid a,
.footer-bottom span {
  color: var(--muted);
}

.legal-links a {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(14, 23, 38, 0.92);
  font-weight: 800;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.legal-links a:hover,
.footer-grid a:hover {
  color: #93c5fd;
  border-color: rgba(96, 165, 250, 0.42);
}

.legal-links a:hover {
  transform: translateY(-2px);
  background: rgba(20, 33, 61, 0.94);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--footer-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 28px;
  padding: 42px 0;
}

.footer-grid p {
  max-width: 420px;
  color: var(--muted);
  font-weight: 600;
}

.footer-grid strong,
.footer-grid a {
  display: block;
}

.footer-grid strong {
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 900;
}

.footer-grid a {
  margin-bottom: 8px;
  font-weight: 700;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 28px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.legal-card {
  max-width: 980px;
  margin: 40px auto;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.legal-card h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.legal-card h3 {
  margin-top: 24px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-weight: 600;
}

.legal-card a {
  color: #93c5fd;
  font-weight: 900;
}

.updated {
  color: var(--muted);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #93c5fd;
  background: var(--primary-soft);
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay {
  transition-delay: 120ms;
}

[dir="rtl"] .hero-content,
[dir="rtl"] .section-header,
[dir="rtl"] .content-card,
[dir="rtl"] .feature-card,
[dir="rtl"] .step,
[dir="rtl"] .app-screen,
[dir="rtl"] .cta-card,
[dir="rtl"] .footer-grid,
[dir="rtl"] .legal-card,
[dir="rtl"] .faq-list {
  text-align: right;
}

[dir="rtl"] .hero-actions,
[dir="rtl"] .trust-row,
[dir="rtl"] .legal-links {
  justify-content: flex-start;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

@keyframes miniFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes orbFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(28px, -22px, 0) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .card-live {
    right: 12px;
  }

  .card-rating {
    left: 12px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-experience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .seo-grid,
  .content-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {

  .content-grid,
  .seo-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav {
    min-height: 68px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 1.08rem;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 13px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2.35rem, 16vw, 3.55rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.65rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .phone-shell {
    border-radius: 34px;
    padding: 10px;
  }

  .app-screen {
    min-height: 560px;
    border-radius: 28px;
    padding: 14px;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }

  .content-card {
    padding: 22px;
  }

  .faq-list details {
    padding: 18px;
  }
}

.app-screen {
  max-height: 620px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}

.app-screen::-webkit-scrollbar {
  display: none;
}

.mobile-hero-card,
.mobile-account-card,
.mobile-promo-card,
.mobile-action-card,
.mobile-service-card,
.mobile-empty-booking {
  border: 1px solid var(--border);
  background: rgba(14, 23, 38, 0.96);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
}

.mobile-hero-card {
  padding: 16px;
  border-radius: 22px;
  display: grid;
  gap: 14px;
}

.mobile-card-top {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 12px;
}

.mobile-card-top.compact {
  align-items: center;
}

.mobile-icon-button,
.mobile-icon-wrap,
.mobile-big-icon,
.mobile-row-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #93c5fd;
  background: #14213d;
}

.mobile-icon-button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 16px;
  font-size: 18px;
}

.mobile-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 14px;
}

.mobile-big-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  font-size: 22px;
}

.mobile-row-icon {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  font-size: 14px;
}

.mobile-text-wrap {
  flex: 1;
  min-width: 0;
}

.mobile-overline {
  margin: 0 0 5px;
  color: #60a5fa;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-text-wrap h2 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.mobile-text-wrap p,
.mobile-text-wrap span {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.58;
  font-weight: 600;
}

.mobile-text-wrap strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 900;
}

.mobile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-tags span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
  font-weight: 800;
}

.mobile-primary-button {
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(59, 130, 246, 0.26);
}

.mobile-account-card,
.mobile-promo-card,
.mobile-empty-booking {
  padding: 14px;
  border-radius: 20px;
  display: grid;
  gap: 10px;
}

.mobile-list {
  display: grid;
  gap: 9px;
}

.mobile-list-row {
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #14213d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-weight: 900;
}

.mobile-list-row>div {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.mobile-list-row strong {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 900;
}

.mobile-row-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-row-meta em {
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  padding: 0 7px;
  border-radius: 999px;
  color: #ffffff;
  background: #3b82f6;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 900;
}

.mobile-section-header {
  display: grid;
  gap: 4px;
  margin-top: 4px;
}

.mobile-section-header strong {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 900;
}

.mobile-section-header span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
  font-weight: 600;
}

.mobile-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.mobile-action-card {
  min-height: 124px;
  padding: 13px;
  border-radius: 20px;
  display: grid;
  align-content: start;
  gap: 6px;
}

.mobile-action-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #14213d;
}

.mobile-action-card strong {
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.35;
  font-weight: 900;
}

.mobile-action-card small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
  font-weight: 600;
}

.mobile-service-card {
  padding: 14px;
  border-radius: 22px;
  display: grid;
  gap: 13px;
}

.mobile-service-top {
  display: flex;
  flex-direction: row-reverse;
  gap: 11px;
  align-items: flex-start;
}

.mobile-service-top>div:last-child {
  flex: 1;
}

.mobile-service-top strong,
.mobile-service-top span {
  display: block;
}

.mobile-service-top strong {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 900;
}

.mobile-service-top span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.58;
  font-weight: 600;
}

.mobile-price-box {
  padding: 13px;
  border-radius: 16px;
  background: #17294d;
  display: grid;
  gap: 9px;
}

.mobile-price-box div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-price-box span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.mobile-price-box strong {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
}

.mobile-price-box hr {
  width: 100%;
  height: 1px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-meta-row span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
  font-weight: 800;
}

.mobile-meta-row strong {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.mobile-empty-booking strong,
.mobile-empty-booking span {
  display: block;
}

.mobile-empty-booking strong {
  color: var(--text);
  font-weight: 900;
}

.mobile-empty-booking span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 640px) {
  .mobile-actions-grid {
    grid-template-columns: 1fr;
  }

  .mobile-service-top,
  .mobile-card-top,
  .mobile-list-row>div {
    gap: 9px;
  }
}

/* ================================
   CENTRAL HEADER / MOBILE MENU FIX
   ================================ */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-link.is-active,
.mobile-nav-link.is-active {
  color: #93c5fd;
}

.nav-link.is-active::after {
  width: 100%;
}

.menu-toggle {
  display: none !important;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(14, 23, 38, 0.92);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none !important;
  border-top: 1px solid var(--border);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-menu-inner {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  padding-bottom: 16px;
}

.mobile-nav-link {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(14, 23, 38, 0.86);
  font-weight: 900;
}

.mobile-nav-link:hover {
  color: var(--text);
  border-color: rgba(96, 165, 250, 0.42);
  background: rgba(20, 33, 61, 0.94);
}

body.is-menu-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  .nav-links {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex !important;
  }

  .mobile-menu.is-open {
    display: block !important;
  }
}

@media (min-width: 961px) {
  .nav-links {
    display: flex !important;
  }

  .menu-toggle {
    display: none !important;
  }

  .mobile-menu,
  .mobile-menu.is-open {
    display: none !important;
  }
}

/* ================================
   TESTOR COMPLIANCE / LEGAL UI
   ================================ */

.footer-disclaimer {
  margin-top: 12px;
  max-width: 560px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  line-height: 1.75;
  font-weight: 700;
}

.legal-card strong {
  color: var(--text);
}

.legal-card ul,
.legal-card ol {
  padding-inline-start: 24px;
}

[dir="rtl"] .legal-card ul,
[dir="rtl"] .legal-card ol {
  padding-inline-start: 0;
  padding-inline-end: 24px;
}

.legal-card li {
  margin-bottom: 8px;
}

.legal-card .footer-links {
  margin-top: 22px;
}

.legal-card .footer-links a {
  border: 1px solid rgba(96, 165, 250, 0.22);
}

.legal-card .footer-links a:hover {
  color: #ffffff;
  border-color: rgba(96, 165, 250, 0.48);
  background: rgba(59, 130, 246, 0.22);
}

.legal-card h2+ul,
.legal-card h2+ol {
  margin-top: 10px;
}

.legal-card a {
  word-break: break-word;
}

.legal-card blockquote,
.legal-note,
.legal-warning,
.compliance-box,
.notice-box {
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.11), transparent 16rem),
    rgba(14, 23, 38, 0.92);
  color: var(--muted-strong);
  font-weight: 700;
}

.legal-card blockquote strong,
.legal-note strong,
.legal-warning strong,
.compliance-box strong,
.notice-box strong {
  color: var(--text);
}

.legal-warning,
.notice-box.warning {
  border-color: rgba(245, 158, 11, 0.32);
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 16rem),
    rgba(14, 23, 38, 0.92);
}

.compliance-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.compliance-links-grid a {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: #93c5fd;
  background: rgba(14, 23, 38, 0.92);
  font-weight: 900;
}

.compliance-links-grid a:hover {
  color: #ffffff;
  border-color: rgba(96, 165, 250, 0.48);
  background: rgba(20, 33, 61, 0.94);
}

/* ================================
   DOWNLOAD PAGE UI
   ================================ */

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.download-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 18rem),
    rgba(14, 23, 38, 0.94);
  box-shadow: 0 18px 52px var(--shadow);
}

.download-card h3 {
  margin-bottom: 8px;
}

.download-card p {
  color: var(--muted);
  font-weight: 600;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.store-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 950;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.48);
  background: rgba(20, 33, 61, 0.94);
  box-shadow: 0 18px 44px var(--shadow);
}

.store-button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  box-shadow: 0 18px 44px rgba(59, 130, 246, 0.28);
}

.store-button.primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.store-button small,
.store-button strong {
  display: block;
  line-height: 1.2;
}

.store-button small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
}

.store-button strong {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 950;
}

/* ================================
   SMALL GLOBAL FIXES
   ================================ */

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(96, 165, 250, 0.55);
  outline-offset: 3px;
}

@media (max-width: 760px) {

  .compliance-links-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .footer-disclaimer {
    font-size: 0.84rem;
  }

  .legal-card {
    padding: 24px;
  }

  .store-buttons {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }
}

/* ================================
   TESTOR LIGHT-FIRST THEME SYSTEM
   ================================ */

html[data-theme="light"],
html[data-theme="dark"] {
  background: var(--bg);
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

body {
  background: var(--body-bg);
}

.site-header {
  background: var(--header-bg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  color: var(--text);
  background: var(--surface);
  box-shadow: 0 12px 28px var(--shadow);
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 99, 255, 0.34);
}

.theme-toggle__icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}

.nav-link.is-active,
.mobile-nav-link.is-active,
.eyebrow,
.app-overline,
.mobile-overline,
.metric-card strong,
.step span,
.legal-card a,
.footer-links a,
.compliance-links-grid a {
  color: var(--accent-text);
}

.nav-cta,
.btn-primary,
.app-primary-button,
.mobile-primary-button,
.store-button.primary {
  color: var(--button-text);
  background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 64%, #60a5fa));
  box-shadow: 0 18px 44px color-mix(in srgb, var(--primary) 24%, transparent);
}

.btn-secondary,
.store-button:not(.primary) {
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  border-color: var(--border-strong);
}

.phone-shell {
  background: var(--phone-shell-bg);
  box-shadow: var(--phone-shell-shadow), 0 0 0 1px var(--border), inset 0 0 0 1px rgba(255,255,255,0.04);
}

.phone-status,
.status-dots {
  color: var(--text);
}

.app-hero-card,
.app-account-card,
.app-grid div,
.app-service-card,
.metric-card,
.feature-card,
.step,
.content-card,
.faq-list details,
.experience-card,
.cta-card,
.legal-card,
.seo-grid div,
.download-card,
.mobile-hero-card,
.mobile-account-card,
.mobile-promo-card,
.mobile-action-card,
.mobile-service-card,
.mobile-empty-booking {
  background: var(--card-bg);
  border-color: var(--border);
  box-shadow: 0 18px 52px var(--shadow);
}

.feature-card:hover,
.experience-card:hover,
.legal-links a:hover,
.mobile-nav-link:hover,
.store-button:hover,
.compliance-links-grid a:hover {
  background: var(--card-hover-bg);
}

.app-icon-button,
.app-row-icon,
.experience-icon,
.icon-box,
.mobile-icon-button,
.mobile-icon-wrap,
.mobile-big-icon,
.mobile-row-icon,
.mobile-action-card span {
  color: var(--accent-text);
  background: var(--card-alt);
}

.mini-price-card,
.mobile-price-box,
.mobile-list-row {
  background: var(--card-alt-strong);
}

.soft-section {
  background: var(--soft-section-bg);
}

.floating-card,
.legal-links a,
.menu-toggle,
.mobile-nav-link,
.legal-card blockquote,
.legal-note,
.legal-warning,
.compliance-box,
.notice-box {
  background: var(--floating-bg);
}

.site-footer,
.mobile-menu {
  background: var(--footer-bg);
}

.legal-warning,
.notice-box.warning {
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 16rem),
    var(--floating-bg);
}

.legal-card a,
.footer-grid a:hover,
.compliance-links-grid a,
.store-button strong,
.store-button small {
  color: var(--link);
}

.store-button.primary strong,
.store-button.primary small,
.nav-cta,
.btn-primary {
  color: var(--button-text);
}

.store-button.primary small {
  opacity: 0.82;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.service-area-chip {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  background: var(--card-bg);
  font-weight: 900;
  box-shadow: 0 12px 28px var(--shadow);
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.keyword-cloud span,
.service-keyword {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--text);
  border: 1px solid var(--border);
  font-weight: 850;
  font-size: 0.9rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 70;
  display: none;
  padding: 10px;
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px var(--shadow-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-sticky-cta .btn {
  width: 100%;
}

.analytics-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 960px) {
  .theme-toggle__text {
    display: none;
  }
}

@media (max-width: 760px) {
  .service-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mobile-sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 86px;
  }

  .nav-actions {
    gap: 8px;
  }

  .theme-toggle {
    width: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 14px;
  }

  .service-area-grid {
    grid-template-columns: 1fr;
  }
}

.store-button.is-disabled {
  opacity: 0.78;
}

@media (max-width: 1180px) {
  .nav-links {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex !important;
  }

  .mobile-menu.is-open {
    display: block !important;
  }
}


/* TESTOR_PRODUCTION_BRAND_HOME_FINAL */

/* إلغاء كل أشكال الهيرو السابقة بدون حذف ملفات */
.testor-minimal-hero,
.testor-clean-hero,
.testor-simple-benefits,
.testor-benefits-section,
.metrics-section,
.seo-strip,
.pricing-preview-section,
.cta-section,
.real-store-badges,
.testor-store-buttons,
.store-badges,
.hero-store-badges,
.mobile-sticky-cta,
.theme-toggle,
#themeToggle,
[data-theme-toggle] {
  display: none !important;
}

/* Header إنتاجي */
.site-header {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04) !important;
}

.site-header a[href="/download"],
.site-header .btn-primary {
  border-radius: 14px !important;
}

/* Hero بهوية Testor */
.testor-brand-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(20, 99, 255, 0.14), transparent 34%),
    radial-gradient(circle at 84% 10%, rgba(0, 163, 255, 0.11), transparent 32%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  padding: clamp(70px, 8vw, 112px) 0 clamp(46px, 6vw, 76px);
}

.testor-brand-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.76fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.testor-brand-content {
  text-align: right;
}

.testor-brand-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(20, 99, 255, 0.09);
  color: #1463ff;
  border: 1px solid rgba(20, 99, 255, 0.13);
  font-weight: 950;
  font-size: 0.95rem;
}

.testor-brand-badge span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #1463ff;
  box-shadow: 0 0 0 6px rgba(20, 99, 255, 0.10);
}

.testor-brand-hero h1 {
  max-width: 760px;
  margin: 18px 0 20px;
  color: #07111f;
  font-size: clamp(3.3rem, 7.6vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: -0.078em;
  font-weight: 950;
}

.testor-brand-subtitle {
  max-width: 640px;
  margin: 0;
  color: #475569;
  font-size: clamp(1.12rem, 1.75vw, 1.34rem);
  line-height: 1.82;
  font-weight: 700;
}

.testor-brand-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.testor-download-pill {
  min-width: 178px;
  min-height: 58px;
  border-radius: 999px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #07111f;
  color: #ffffff;
  border: 1px solid rgba(7, 17, 31, 0.10);
  box-shadow: 0 16px 36px rgba(7, 17, 31, 0.15);
  direction: ltr;
  font-weight: 950;
  font-size: 1.1rem;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    opacity 170ms ease;
}

.testor-download-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(7, 17, 31, 0.22);
}

.testor-download-pill svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
}

.testor-brand-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.testor-brand-links a {
  color: #334155;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.testor-brand-links a:hover {
  color: #1463ff;
}

.testor-brand-note {
  max-width: 620px;
  margin: 20px 0 0;
  color: #64748b;
  font-size: 0.94rem;
  line-height: 1.65;
  font-weight: 700;
}

.testor-brand-visual {
  display: flex;
  justify-content: center;
}

.testor-app-card {
  width: min(100%, 430px);
  border-radius: 34px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(239,246,255,0.98));
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.13);
}

.testor-app-card-head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.testor-app-card-head img {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 24px rgba(20, 99, 255, 0.11);
}

.testor-app-card-head strong {
  display: block;
  color: #07111f;
  font-size: 1.28rem;
  line-height: 1;
}

.testor-app-card-head span {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-weight: 800;
}

.testor-app-flow {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}

.testor-app-flow div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  row-gap: 4px;
  align-items: center;
  border-radius: 18px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.testor-app-flow span {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(20, 99, 255, 0.10);
  color: #1463ff;
  font-weight: 950;
  font-size: 0.82rem;
}

.testor-app-flow strong {
  color: #07111f;
  font-size: 1rem;
  line-height: 1.15;
}

.testor-app-flow small {
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 700;
}

.testor-status-card {
  margin-top: 18px;
  border-radius: 22px;
  padding: 17px;
  background:
    radial-gradient(circle at top left, rgba(20, 99, 255, 0.26), transparent 46%),
    #07111f;
  color: #ffffff;
}

.testor-status-card span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 0.86rem;
  font-weight: 850;
}

.testor-status-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1.08rem;
}

/* Benefits */
.testor-brand-benefits {
  background: #ffffff;
  padding: 32px 0 72px;
}

.testor-brand-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.testor-brand-benefits article {
  min-height: 184px;
  border-radius: 28px;
  padding: 22px 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.065);
  text-align: center;
}

.testor-benefit-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 13px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #eef5ff;
  color: #1463ff;
  font-size: 1.35rem;
  font-weight: 950;
}

.testor-brand-benefits h3 {
  margin: 0 0 8px;
  color: #07111f;
  font-size: 1.08rem;
  line-height: 1.25;
}

.testor-brand-benefits p {
  margin: 0;
  color: #64748b;
  font-size: 0.94rem;
  line-height: 1.55;
}

/* Mobile */
@media (max-width: 900px) {
  .site-header a[href="/download"],
  .site-header .btn-primary {
    display: none !important;
  }

  .testor-brand-hero {
    padding: 48px 0 38px;
  }

  .testor-brand-hero-grid {
    display: block;
  }

  .testor-brand-content {
    text-align: center;
  }

  .testor-brand-badge {
    margin-inline: auto;
    font-size: 0.88rem;
    padding: 9px 13px;
  }

  .testor-brand-hero h1 {
    max-width: 370px;
    margin: 18px auto 16px;
    font-size: clamp(2.75rem, 12vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
  }

  .testor-brand-subtitle {
    max-width: 360px;
    margin-inline: auto;
    font-size: 1.03rem;
    line-height: 1.72;
  }

  .testor-brand-actions {
    width: min(100%, 350px);
    margin: 26px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .testor-download-pill {
    width: 100%;
    min-height: 56px;
    font-size: 1.08rem;
  }

  .testor-brand-links {
    justify-content: center;
    gap: 16px;
    margin-top: 17px;
  }

  .testor-brand-links a {
    font-size: 0.94rem;
  }

  .testor-brand-note {
    max-width: 350px;
    margin: 18px auto 0;
    font-size: 0.86rem;
  }

  .testor-brand-visual {
    display: none;
  }

  .testor-brand-benefits {
    padding: 28px 0 54px;
  }

  .testor-brand-benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .testor-brand-benefits article {
    min-height: 166px;
    border-radius: 24px;
    padding: 18px 12px;
  }

  .testor-benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 1.15rem;
  }

  .testor-brand-benefits h3 {
    font-size: 0.98rem;
  }

  .testor-brand-benefits p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .section {
    padding-top: 42px !important;
  }
}

@media (max-width: 380px) {
  .testor-brand-hero h1 {
    font-size: 2.65rem;
  }

  .testor-brand-subtitle {
    font-size: 0.98rem;
  }
}

/* TESTOR_PRIVACY_ACCESSIBILITY_CONTROLS */

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 100000;
  transform: translateY(-180%);
  padding: 12px 16px;
  border-radius: 14px;
  background: #07111f;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 4px solid rgba(20, 99, 255, 0.36) !important;
  outline-offset: 4px !important;
}

.testor-menu-theme-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.testor-menu-theme-toggle {
  min-height: 42px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 999px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: #07111f;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.testor-menu-theme-toggle span {
  display: grid;
  place-items: center;
}

.testor-cookie-banner {
  position: fixed;
  z-index: 99990;
  inset-inline: 18px;
  bottom: 18px;
  max-width: 760px;
  margin-inline: auto;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: #07111f;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(18px);
}

.testor-cookie-content {
  padding: 20px;
}

.testor-cookie-content strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.testor-cookie-content p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
  font-weight: 700;
}

.testor-cookie-actions,
.testor-cookie-panel-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.testor-cookie-btn,
.testor-cookie-link,
.footer-cookie-preferences {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  padding: 0 16px;
  background: #ffffff;
  color: #07111f;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.testor-cookie-btn.primary {
  background: #1463ff;
  color: #ffffff;
  border-color: #1463ff;
}

.testor-cookie-link,
.footer-cookie-preferences {
  color: #1463ff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.testor-cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 99995;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(7, 17, 31, 0.54);
}

.testor-cookie-panel-card {
  position: relative;
  width: min(100%, 620px);
  max-height: min(720px, 92dvh);
  overflow: auto;
  border-radius: 26px;
  padding: 24px;
  background: #ffffff;
  color: #07111f;
  box-shadow: 0 30px 90px rgba(0,0,0,0.25);
}

.testor-panel-close {
  position: absolute;
  inset-inline-start: 18px;
  top: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #eef5ff;
  color: #07111f;
  font-size: 1.6rem;
  cursor: pointer;
}

.testor-cookie-panel-card h2 {
  margin: 0 0 10px;
}

.testor-cookie-panel-card p {
  color: #475569;
  line-height: 1.65;
  font-weight: 700;
}

.testor-cookie-switch {
  margin-top: 12px;
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.testor-cookie-switch span {
  display: grid;
  gap: 4px;
}

.testor-cookie-switch small {
  color: #64748b;
  font-weight: 700;
  line-height: 1.45;
}

.testor-cookie-switch input {
  width: 22px;
  height: 22px;
  accent-color: #1463ff;
}

.testor-cookie-policy {
  display: inline-flex;
  margin-top: 16px;
  color: #1463ff;
  font-weight: 900;
}

.testor-a11y-toggle {
  position: fixed;
  z-index: 99980;
  inset-inline-start: 18px;
  bottom: 96px;
  min-height: 48px;
  border: 1px solid rgba(15,23,42,0.12);
  border-radius: 999px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #07111f;
  color: #ffffff;
  font: inherit;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(7,17,31,0.24);
  cursor: pointer;
}

.testor-a11y-panel {
  position: fixed;
  z-index: 99985;
  inset-inline-start: 18px;
  bottom: 154px;
  width: min(330px, calc(100vw - 36px));
}

.testor-a11y-card {
  border-radius: 24px;
  padding: 16px;
  background: #ffffff;
  color: #07111f;
  border: 1px solid rgba(15,23,42,0.12);
  box-shadow: 0 24px 70px rgba(15,23,42,0.18);
}

.testor-a11y-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.testor-a11y-head h2 {
  margin: 0;
  font-size: 1.15rem;
}

.testor-a11y-head button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #eef5ff;
  font-size: 1.4rem;
  cursor: pointer;
}

.testor-a11y-card > button,
.testor-a11y-card > a {
  width: 100%;
  min-height: 44px;
  margin-top: 8px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.10);
  background: #f8fbff;
  color: #07111f;
  display: flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.testor-a11y-card > button[aria-pressed="true"] {
  background: #1463ff;
  color: #ffffff;
  border-color: #1463ff;
}

.testor-a11y-card > button.reset {
  background: #fff7ed;
}

html.a11y-large-text {
  font-size: 112%;
}

html.a11y-readable-font body {
  font-family: Arial, Helvetica, sans-serif !important;
}

html.a11y-underline-links a {
  text-decoration: underline !important;
  text-underline-offset: 5px !important;
}

html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after {
  scroll-behavior: auto !important;
  animation: none !important;
  transition: none !important;
}

html.a11y-high-contrast body {
  background: #000000 !important;
  color: #ffffff !important;
}

html.a11y-high-contrast a {
  color: #ffff00 !important;
}

html.a11y-high-contrast .card,
html.a11y-high-contrast .content-card,
html.a11y-high-contrast .feature-card,
html.a11y-high-contrast .site-header,
html.a11y-high-contrast .site-footer,
html.a11y-high-contrast .testor-brand-hero,
html.a11y-high-contrast .testor-brand-benefits article {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none !important;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

html[data-theme="dark"] body {
  background: #07111f !important;
  color: #f8fafc !important;
}

html[data-theme="dark"] .site-header {
  background: rgba(7, 17, 31, 0.96) !important;
  border-bottom-color: rgba(255,255,255,0.10) !important;
}

html[data-theme="dark"] .site-header a,
html[data-theme="dark"] .site-header button,
html[data-theme="dark"] .brand,
html[data-theme="dark"] .site-brand {
  color: #f8fafc !important;
}

html[data-theme="dark"] .testor-brand-hero {
  background:
    radial-gradient(circle at 14% 18%, rgba(47, 107, 255, 0.20), transparent 34%),
    radial-gradient(circle at 84% 10%, rgba(35, 183, 242, 0.14), transparent 32%),
    linear-gradient(180deg, #07111f 0%, #0b1526 100%) !important;
}

html[data-theme="dark"] .testor-brand-hero h1,
html[data-theme="dark"] .section h2,
html[data-theme="dark"] .content-card h3,
html[data-theme="dark"] .feature-card h3,
html[data-theme="dark"] .legal-card h1,
html[data-theme="dark"] .legal-card h2 {
  color: #f8fafc !important;
}

html[data-theme="dark"] .testor-brand-subtitle,
html[data-theme="dark"] .section p,
html[data-theme="dark"] .content-card p,
html[data-theme="dark"] .feature-card p,
html[data-theme="dark"] .legal-card p,
html[data-theme="dark"] li {
  color: #cbd5e1 !important;
}

html[data-theme="dark"] .testor-brand-benefits,
html[data-theme="dark"] .section,
html[data-theme="dark"] .soft-section {
  background: #07111f !important;
}

html[data-theme="dark"] .card,
html[data-theme="dark"] .legal-card,
html[data-theme="dark"] .content-card,
html[data-theme="dark"] .feature-card,
html[data-theme="dark"] .testor-brand-benefits article,
html[data-theme="dark"] .testor-app-card {
  background: #101b2d !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: #f8fafc !important;
}

html[data-theme="dark"] .testor-menu-theme-toggle {
  background: #101b2d;
  color: #f8fafc;
  border-color: rgba(255,255,255,0.12);
}

html[data-theme="dark"] .testor-cookie-banner,
html[data-theme="dark"] .testor-cookie-panel-card,
html[data-theme="dark"] .testor-a11y-card {
  background: #101b2d;
  color: #f8fafc;
  border-color: rgba(255,255,255,0.12);
}

html[data-theme="dark"] .testor-cookie-content p,
html[data-theme="dark"] .testor-cookie-panel-card p,
html[data-theme="dark"] .testor-cookie-switch small {
  color: #cbd5e1;
}

@media (max-width: 640px) {
  .testor-cookie-banner {
    inset-inline: 12px;
    bottom: 12px;
    border-radius: 20px;
  }

  .testor-cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .testor-cookie-btn,
  .testor-cookie-link {
    width: 100%;
  }

  .testor-a11y-toggle {
    inset-inline-start: 12px;
    bottom: 82px;
    min-height: 44px;
    padding-inline: 13px;
  }

  .testor-a11y-panel {
    inset-inline-start: 12px;
    bottom: 136px;
    width: calc(100vw - 24px);
  }
}

/* TESTOR_A11Y_DARK_POLISH_FINAL */

/* زر النגישות: أخف، أنظف، لا يغطي المحتوى */
.testor-a11y-toggle {
  width: auto !important;
  min-width: 0 !important;
  min-height: 46px !important;
  max-height: 46px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  background: #07111f !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: 0 14px 34px rgba(7,17,31,0.20) !important;
  font-size: 0.96rem !important;
  line-height: 1 !important;
}

.testor-a11y-toggle span {
  width: 22px !important;
  height: 22px !important;
  display: grid !important;
  place-items: center !important;
}

.testor-a11y-toggle strong {
  font-size: 0.96rem !important;
  font-weight: 950 !important;
}

/* لوحة النגישות */
.testor-a11y-panel {
  z-index: 99985 !important;
}

.testor-a11y-card {
  border-radius: 22px !important;
  padding: 14px !important;
}

.testor-a11y-card > button,
.testor-a11y-card > a {
  min-height: 42px !important;
  border-radius: 13px !important;
}

/* Dark mode مقروء ومريح */
html[data-theme="dark"] body {
  background: #07111f !important;
  color: #f8fafc !important;
}

html[data-theme="dark"] .site-header {
  background: rgba(7, 17, 31, 0.96) !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
}

html[data-theme="dark"] .brand,
html[data-theme="dark"] .site-brand,
html[data-theme="dark"] .site-logo-text,
html[data-theme="dark"] .brand-name,
html[data-theme="dark"] .nav-brand,
html[data-theme="dark"] header a,
html[data-theme="dark"] header span,
html[data-theme="dark"] header strong {
  color: #ffffff !important;
}

html[data-theme="dark"] .testor-brand-hero {
  background:
    radial-gradient(circle at 18% 8%, rgba(47, 107, 255, 0.22), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(35, 183, 242, 0.16), transparent 30%),
    linear-gradient(180deg, #07111f 0%, #0b1526 100%) !important;
}

html[data-theme="dark"] .testor-brand-badge {
  background: rgba(47, 107, 255, 0.16) !important;
  color: #8fc7ff !important;
  border-color: rgba(143,199,255,0.22) !important;
}

html[data-theme="dark"] .testor-brand-badge span {
  background: #2f6bff !important;
}

html[data-theme="dark"] .testor-brand-hero h1,
html[data-theme="dark"] .testor-brand-content h1 {
  color: #ffffff !important;
  text-shadow: 0 10px 34px rgba(0,0,0,0.28) !important;
}

html[data-theme="dark"] .testor-brand-subtitle,
html[data-theme="dark"] .testor-brand-note {
  color: #cbd5e1 !important;
}

html[data-theme="dark"] .testor-brand-links a {
  color: #dbeafe !important;
}

html[data-theme="dark"] .testor-download-pill {
  background: #ffffff !important;
  color: #07111f !important;
  box-shadow: 0 18px 42px rgba(0,0,0,0.30) !important;
}

html[data-theme="dark"] .testor-brand-benefits {
  background: #07111f !important;
}

html[data-theme="dark"] .testor-brand-benefits article,
html[data-theme="dark"] .content-card,
html[data-theme="dark"] .feature-card,
html[data-theme="dark"] .card,
html[data-theme="dark"] .legal-card {
  background: #101b2d !important;
  color: #f8fafc !important;
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,0.24) !important;
}

html[data-theme="dark"] .testor-brand-benefits h3,
html[data-theme="dark"] .content-card h3,
html[data-theme="dark"] .feature-card h3,
html[data-theme="dark"] .legal-card h1,
html[data-theme="dark"] .legal-card h2,
html[data-theme="dark"] .section h2 {
  color: #ffffff !important;
}

html[data-theme="dark"] .testor-brand-benefits p,
html[data-theme="dark"] .content-card p,
html[data-theme="dark"] .feature-card p,
html[data-theme="dark"] .legal-card p,
html[data-theme="dark"] .legal-card li,
html[data-theme="dark"] .section p {
  color: #cbd5e1 !important;
}

html[data-theme="dark"] .testor-benefit-icon {
  background: rgba(47, 107, 255, 0.18) !important;
  color: #8fc7ff !important;
}

/* High Contrast: يكون واضح فعلًا وليس أسود فوق أسود */
html.a11y-high-contrast body {
  background: #000000 !important;
  color: #ffffff !important;
}

html.a11y-high-contrast .site-header,
html.a11y-high-contrast .testor-brand-hero,
html.a11y-high-contrast .testor-brand-benefits,
html.a11y-high-contrast .section,
html.a11y-high-contrast .soft-section {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

html.a11y-high-contrast .testor-brand-hero h1,
html.a11y-high-contrast .testor-brand-content h1,
html.a11y-high-contrast h1,
html.a11y-high-contrast h2,
html.a11y-high-contrast h3,
html.a11y-high-contrast p,
html.a11y-high-contrast li,
html.a11y-high-contrast span,
html.a11y-high-contrast strong {
  color: #ffffff !important;
  text-shadow: none !important;
}

html.a11y-high-contrast a,
html.a11y-high-contrast .testor-brand-links a {
  color: #ffff00 !important;
  text-decoration: underline !important;
  text-underline-offset: 6px !important;
}

html.a11y-high-contrast .testor-download-pill {
  background: #ffff00 !important;
  color: #000000 !important;
  border: 2px solid #ffff00 !important;
  box-shadow: none !important;
}

html.a11y-high-contrast .testor-brand-badge,
html.a11y-high-contrast .testor-brand-benefits article,
html.a11y-high-contrast .content-card,
html.a11y-high-contrast .feature-card,
html.a11y-high-contrast .card,
html.a11y-high-contrast .legal-card {
  background: #000000 !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  box-shadow: none !important;
}

html.a11y-high-contrast .testor-benefit-icon {
  background: #ffffff !important;
  color: #000000 !important;
}

/* موبايل: زر נגישות لا يغطي الكروت */
@media (max-width: 640px) {
  .testor-a11y-toggle {
    inset-inline-start: 12px !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 14px) !important;
    width: 50px !important;
    height: 50px !important;
    min-height: 50px !important;
    max-height: 50px !important;
    padding: 0 !important;
    border-radius: 18px !important;
    justify-content: center !important;
  }

  .testor-a11y-toggle strong {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .testor-a11y-toggle span {
    font-size: 1.35rem !important;
  }

  .testor-a11y-panel {
    inset-inline-start: 12px !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 74px) !important;
    width: min(330px, calc(100vw - 24px)) !important;
  }

  .testor-cookie-banner {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px) !important;
    inset-inline: 12px !important;
  }

  .testor-cookie-banner ~ .testor-a11y-toggle {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 150px) !important;
  }
}

/* حماية من بهتان النصوص في كل الحالات */
.testor-brand-hero h1,
.testor-brand-content h1 {
  opacity: 1 !important;
}

.testor-brand-subtitle,
.testor-brand-note,
.testor-brand-benefits p {
  opacity: 1 !important;
}

/* TESTOR_PROFESSIONAL_SVG_ICONS_FINAL */

.testor-benefit-icon,
.benefit-icon,
.icon-box,
.experience-icon,
.mobile-row-icon,
.mobile-icon-wrap,
.mobile-big-icon,
.testor-action-svg,
.testor-ui-icon {
  position: relative;
  display: inline-grid !important;
  place-items: center !important;
  color: #1463ff;
}

.testor-benefit-icon::before,
.benefit-icon::before,
.icon-box::before,
.experience-icon::before,
.mobile-row-icon::before,
.mobile-icon-wrap::before,
.mobile-big-icon::before,
.testor-action-svg::before,
.testor-ui-icon::before {
  content: "";
  width: 1.35em;
  height: 1.35em;
  display: block;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.testor-benefit-icon::before,
.benefit-icon::before,
.icon-box::before,
.experience-icon::before {
  width: 28px;
  height: 28px;
}

.mobile-row-icon::before,
.testor-action-svg::before {
  width: 24px;
  height: 24px;
}

.mobile-icon-wrap::before,
.mobile-big-icon::before {
  width: 30px;
  height: 30px;
}

.testor-ui-icon::before {
  width: 22px;
  height: 22px;
}

.testor-icon-car::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5.2 11 6.5 7.4A3.7 3.7 0 0 1 10 5h4a3.7 3.7 0 0 1 3.5 2.4L18.8 11H20a1 1 0 0 1 1 1v5.4a1.6 1.6 0 0 1-1.6 1.6H18a2 2 0 0 1-4 0h-4a2 2 0 0 1-4 0H4.6A1.6 1.6 0 0 1 3 17.4V12a1 1 0 0 1 1-1h1.2Zm2.4 0h8.8l-.8-2.4A1.7 1.7 0 0 0 14 7h-4a1.7 1.7 0 0 0-1.6 1.1L7.6 11ZM7 16.4a1.2 1.2 0 1 0 0-2.4 1.2 1.2 0 0 0 0 2.4Zm10 0a1.2 1.2 0 1 0 0-2.4 1.2 1.2 0 0 0 0 2.4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5.2 11 6.5 7.4A3.7 3.7 0 0 1 10 5h4a3.7 3.7 0 0 1 3.5 2.4L18.8 11H20a1 1 0 0 1 1 1v5.4a1.6 1.6 0 0 1-1.6 1.6H18a2 2 0 0 1-4 0h-4a2 2 0 0 1-4 0H4.6A1.6 1.6 0 0 1 3 17.4V12a1 1 0 0 1 1-1h1.2Zm2.4 0h8.8l-.8-2.4A1.7 1.7 0 0 0 14 7h-4a1.7 1.7 0 0 0-1.6 1.1L7.6 11ZM7 16.4a1.2 1.2 0 1 0 0-2.4 1.2 1.2 0 0 0 0 2.4Zm10 0a1.2 1.2 0 1 0 0-2.4 1.2 1.2 0 0 0 0 2.4Z'/%3E%3C/svg%3E");
}

.testor-icon-phone::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 2h8a2.5 2.5 0 0 1 2.5 2.5v15A2.5 2.5 0 0 1 16 22H8a2.5 2.5 0 0 1-2.5-2.5v-15A2.5 2.5 0 0 1 8 2Zm0 2a.5.5 0 0 0-.5.5v15a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5v-15A.5.5 0 0 0 16 4H8Zm3 14h2a1 1 0 1 1 0 2h-2a1 1 0 1 1 0-2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 2h8a2.5 2.5 0 0 1 2.5 2.5v15A2.5 2.5 0 0 1 16 22H8a2.5 2.5 0 0 1-2.5-2.5v-15A2.5 2.5 0 0 1 8 2Zm0 2a.5.5 0 0 0-.5.5v15a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5v-15A.5.5 0 0 0 16 4H8Zm3 14h2a1 1 0 1 1 0 2h-2a1 1 0 1 1 0-2Z'/%3E%3C/svg%3E");
}

.testor-icon-shekel::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 4a1 1 0 0 1 1 1v7h3V8a4 4 0 0 1 8 0v10a1 1 0 1 1-2 0V8a2 2 0 0 0-4 0v5a1 1 0 0 1-1 1H8v4a1 1 0 1 1-2 0V5a1 1 0 0 1 1-1Zm9 0a1 1 0 0 1 1 1v13a1 1 0 1 1-2 0V5a1 1 0 0 1 1-1ZM5 5a1 1 0 0 1 1 1v10a2 2 0 0 0 2 2h2a1 1 0 1 1 0 2H8a4 4 0 0 1-4-4V6a1 1 0 0 1 1-1Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 4a1 1 0 0 1 1 1v7h3V8a4 4 0 0 1 8 0v10a1 1 0 1 1-2 0V8a2 2 0 0 0-4 0v5a1 1 0 0 1-1 1H8v4a1 1 0 1 1-2 0V5a1 1 0 0 1 1-1Zm9 0a1 1 0 0 1 1 1v13a1 1 0 1 1-2 0V5a1 1 0 0 1 1-1ZM5 5a1 1 0 0 1 1 1v10a2 2 0 0 0 2 2h2a1 1 0 1 1 0 2H8a4 4 0 0 1-4-4V6a1 1 0 0 1 1-1Z'/%3E%3C/svg%3E");
}

.testor-icon-check::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.3 6.3a1 1 0 0 1 0 1.4l-9.5 9.5a1 1 0 0 1-1.4 0l-5.7-5.7a1 1 0 1 1 1.4-1.4l5 5 8.8-8.8a1 1 0 0 1 1.4 0Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.3 6.3a1 1 0 0 1 0 1.4l-9.5 9.5a1 1 0 0 1-1.4 0l-5.7-5.7a1 1 0 1 1 1.4-1.4l5 5 8.8-8.8a1 1 0 0 1 1.4 0Z'/%3E%3C/svg%3E");
}

.testor-icon-location::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 1 7 7c0 5.25-7 13-7 13S5 14.25 5 9a7 7 0 0 1 7-7Zm0 9.6A2.6 2.6 0 1 0 12 6.4a2.6 2.6 0 0 0 0 5.2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 1 7 7c0 5.25-7 13-7 13S5 14.25 5 9a7 7 0 0 1 7-7Zm0 9.6A2.6 2.6 0 1 0 12 6.4a2.6 2.6 0 0 0 0 5.2Z'/%3E%3C/svg%3E");
}

.testor-icon-bell::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22a2.8 2.8 0 0 0 2.7-2h-5.4A2.8 2.8 0 0 0 12 22Zm7-6.5-1.8-2.2V9a5.2 5.2 0 0 0-4.2-5.1V3a1 1 0 1 0-2 0v.9A5.2 5.2 0 0 0 6.8 9v4.3L5 15.5A1.5 1.5 0 0 0 6.2 18h11.6a1.5 1.5 0 0 0 1.2-2.5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22a2.8 2.8 0 0 0 2.7-2h-5.4A2.8 2.8 0 0 0 12 22Zm7-6.5-1.8-2.2V9a5.2 5.2 0 0 0-4.2-5.1V3a1 1 0 1 0-2 0v.9A5.2 5.2 0 0 0 6.8 9v4.3L5 15.5A1.5 1.5 0 0 0 6.2 18h11.6a1.5 1.5 0 0 0 1.2-2.5Z'/%3E%3C/svg%3E");
}

.testor-icon-shield::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 5 5v6c0 4.7 3 8.9 7 11 4-2.1 7-6.3 7-11V5l-7-3Zm3.8 7.9-4.3 4.3a1 1 0 0 1-1.4 0l-1.9-1.9a1 1 0 0 1 1.4-1.4l1.2 1.2 3.6-3.6a1 1 0 0 1 1.4 1.4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 5 5v6c0 4.7 3 8.9 7 11 4-2.1 7-6.3 7-11V5l-7-3Zm3.8 7.9-4.3 4.3a1 1 0 0 1-1.4 0l-1.9-1.9a1 1 0 0 1 1.4-1.4l1.2 1.2 3.6-3.6a1 1 0 0 1 1.4 1.4Z'/%3E%3C/svg%3E");
}

.testor-icon-user::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0 2c-4.3 0-8 2.2-8 5v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-1c0-2.8-3.7-5-8-5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0 2c-4.3 0-8 2.2-8 5v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-1c0-2.8-3.7-5-8-5Z'/%3E%3C/svg%3E");
}

.testor-icon-settings::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.4 13.5a7.7 7.7 0 0 0 0-3l2-1.5-2-3.4-2.4 1a7.4 7.4 0 0 0-2.6-1.5L14 2.5h-4l-.4 2.6A7.4 7.4 0 0 0 7 6.6l-2.4-1-2 3.4 2 1.5a7.7 7.7 0 0 0 0 3l-2 1.5 2 3.4 2.4-1a7.4 7.4 0 0 0 2.6 1.5L10 21.5h4l.4-2.6a7.4 7.4 0 0 0 2.6-1.5l2.4 1 2-3.4-2-1.5ZM12 15.4a3.4 3.4 0 1 1 0-6.8 3.4 3.4 0 0 1 0 6.8Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.4 13.5a7.7 7.7 0 0 0 0-3l2-1.5-2-3.4-2.4 1a7.4 7.4 0 0 0-2.6-1.5L14 2.5h-4l-.4 2.6A7.4 7.4 0 0 0 7 6.6l-2.4-1-2 3.4 2 1.5a7.7 7.7 0 0 0 0 3l-2 1.5 2 3.4 2.4-1a7.4 7.4 0 0 0 2.6 1.5L10 21.5h4l.4-2.6a7.4 7.4 0 0 0 2.6-1.5l2.4 1 2-3.4-2-1.5ZM12 15.4a3.4 3.4 0 1 1 0-6.8 3.4 3.4 0 0 1 0 6.8Z'/%3E%3C/svg%3E");
}

.testor-icon-calendar::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1.5A2.5 2.5 0 0 1 22 6.5v12A2.5 2.5 0 0 1 19.5 21h-15A2.5 2.5 0 0 1 2 18.5v-12A2.5 2.5 0 0 1 4.5 4H6V3a1 1 0 0 1 1-1Zm13 8H4v8.5a.5.5 0 0 0 .5.5h15a.5.5 0 0 0 .5-.5V10Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1.5A2.5 2.5 0 0 1 22 6.5v12A2.5 2.5 0 0 1 19.5 21h-15A2.5 2.5 0 0 1 2 18.5v-12A2.5 2.5 0 0 1 4.5 4H6V3a1 1 0 0 1 1-1Zm13 8H4v8.5a.5.5 0 0 0 .5.5h15a.5.5 0 0 0 .5-.5V10Z'/%3E%3C/svg%3E");
}

.testor-icon-document::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h7l5 5v13a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm6 1.8V8h4.2L13 3.8ZM8 12a1 1 0 0 0 0 2h8a1 1 0 1 0 0-2H8Zm0 4a1 1 0 1 0 0 2h5a1 1 0 1 0 0-2H8Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h7l5 5v13a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm6 1.8V8h4.2L13 3.8ZM8 12a1 1 0 0 0 0 2h8a1 1 0 1 0 0-2H8Zm0 4a1 1 0 1 0 0 2h5a1 1 0 1 0 0-2H8Z'/%3E%3C/svg%3E");
}

.testor-icon-status::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 13a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-6Zm10-9a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v15a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V4ZM9 7a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V7Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 13a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-6Zm10-9a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v15a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V4ZM9 7a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1V7Z'/%3E%3C/svg%3E");
}

.testor-icon-sun::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 18a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm0 4a1 1 0 0 0 1-1v-1a1 1 0 1 0-2 0v1a1 1 0 0 0 1 1Zm0-18a1 1 0 0 0 1-1V2a1 1 0 1 0-2 0v1a1 1 0 0 0 1 1Zm10 8a1 1 0 0 0-1-1h-1a1 1 0 1 0 0 2h1a1 1 0 0 0 1-1ZM4 12a1 1 0 0 0-1-1H2a1 1 0 1 0 0 2h1a1 1 0 0 0 1-1Zm14.4 7.4a1 1 0 0 0 0-1.4l-.7-.7a1 1 0 1 0-1.4 1.4l.7.7a1 1 0 0 0 1.4 0ZM7.7 6.7a1 1 0 0 0 0-1.4L7 4.6A1 1 0 1 0 5.6 6l.7.7a1 1 0 0 0 1.4 0Zm10 0 .7-.7A1 1 0 1 0 17 4.6l-.7.7a1 1 0 1 0 1.4 1.4ZM7 19.4l.7-.7a1 1 0 0 0-1.4-1.4l-.7.7A1 1 0 1 0 7 19.4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 18a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm0 4a1 1 0 0 0 1-1v-1a1 1 0 1 0-2 0v1a1 1 0 0 0 1 1Zm0-18a1 1 0 0 0 1-1V2a1 1 0 1 0-2 0v1a1 1 0 0 0 1 1Zm10 8a1 1 0 0 0-1-1h-1a1 1 0 1 0 0 2h1a1 1 0 0 0 1-1ZM4 12a1 1 0 0 0-1-1H2a1 1 0 1 0 0 2h1a1 1 0 0 0 1-1Zm14.4 7.4a1 1 0 0 0 0-1.4l-.7-.7a1 1 0 1 0-1.4 1.4l.7.7a1 1 0 0 0 1.4 0ZM7.7 6.7a1 1 0 0 0 0-1.4L7 4.6A1 1 0 1 0 5.6 6l.7.7a1 1 0 0 0 1.4 0Zm10 0 .7-.7A1 1 0 1 0 17 4.6l-.7.7a1 1 0 1 0 1.4 1.4ZM7 19.4l.7-.7a1 1 0 0 0-1.4-1.4l-.7.7A1 1 0 1 0 7 19.4Z'/%3E%3C/svg%3E");
}

.testor-icon-moon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.3 15.6A8.8 8.8 0 0 1 8.4 3.7a1 1 0 0 0-1.2-1.5A10.8 10.8 0 1 0 21.8 16.8a1 1 0 0 0-1.5-1.2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.3 15.6A8.8 8.8 0 0 1 8.4 3.7a1 1 0 0 0-1.2-1.5A10.8 10.8 0 1 0 21.8 16.8a1 1 0 0 0-1.5-1.2Z'/%3E%3C/svg%3E");
}

.testor-icon-accessibility::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM4 6a1 1 0 0 0 0 2h6v4.1l-2.7 8.6a1 1 0 1 0 1.9.6l2.2-7h1.2l2.2 7a1 1 0 1 0 1.9-.6L14 12.1V8h6a1 1 0 1 0 0-2H4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM4 6a1 1 0 0 0 0 2h6v4.1l-2.7 8.6a1 1 0 1 0 1.9.6l2.2-7h1.2l2.2 7a1 1 0 1 0 1.9-.6L14 12.1V8h6a1 1 0 1 0 0-2H4Z'/%3E%3C/svg%3E");
}

/* Keep Google Play and Apple buttons professional */
.testor-download-pill svg {
  display: block;
}

/* Dark / high contrast compatibility */
html[data-theme="dark"] .testor-benefit-icon,
html[data-theme="dark"] .benefit-icon,
html[data-theme="dark"] .icon-box,
html[data-theme="dark"] .experience-icon,
html[data-theme="dark"] .mobile-row-icon,
html[data-theme="dark"] .mobile-icon-wrap,
html[data-theme="dark"] .mobile-big-icon,
html[data-theme="dark"] .testor-action-svg,
html[data-theme="dark"] .testor-ui-icon {
  color: #8fc7ff !important;
}

html.a11y-high-contrast .testor-benefit-icon,
html.a11y-high-contrast .benefit-icon,
html.a11y-high-contrast .icon-box,
html.a11y-high-contrast .experience-icon,
html.a11y-high-contrast .mobile-row-icon,
html.a11y-high-contrast .mobile-icon-wrap,
html.a11y-high-contrast .mobile-big-icon,
html.a11y-high-contrast .testor-action-svg,
html.a11y-high-contrast .testor-ui-icon {
  color: #ffff00 !important;
}

/* Remove any leftover visual emoji text if old blocks still exist */
.mobile-action-card > span:not(.testor-action-svg),
.mobile-row-icon:not(.testor-icon-user):not(.testor-icon-bell):not(.testor-icon-settings) {
  font-family: inherit !important;
}


/* TESTOR_FINAL_UX_PLACEMENT_FIX */

/* لا نعرض رابط تنزيل التطبيق داخل nav إذا كان يوجد CTA/أزرار تحميل في الهيرو */
.site-header nav a[href="/download"]:not(.btn):not(.btn-primary):not(.button),
.site-header .nav-links a[href="/download"]:not(.btn):not(.btn-primary):not(.button),
.site-header .site-nav a[href="/download"]:not(.btn):not(.btn-primary):not(.button) {
  display: none !important;
}

/* زر נגישות احترافي ومضغوط */
.testor-a11y-toggle {
  min-width: 50px !important;
  width: 50px !important;
  height: 50px !important;
  min-height: 50px !important;
  max-height: 50px !important;
  padding: 0 !important;
  border-radius: 18px !important;
  display: inline-grid !important;
  place-items: center !important;
  background: #07111f !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: 0 14px 34px rgba(7,17,31,0.22) !important;
}

.testor-a11y-toggle strong {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.testor-a11y-toggle .testor-ui-icon,
.testor-a11y-toggle .testor-ui-icon::before {
  width: 25px !important;
  height: 25px !important;
  color: #ffffff !important;
}

@media (max-width: 640px) {
  .testor-a11y-toggle {
    inset-inline-start: 12px !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 14px) !important;
  }

  .testor-a11y-panel {
    inset-inline-start: 12px !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 76px) !important;
    width: min(330px, calc(100vw - 24px)) !important;
  }
}

/* إعدادات Cookies يجب أن تظهر بالفوتر فقط */
main .footer-cookie-preferences,
main [data-cookie-preferences-link],
.legal-card .footer-cookie-preferences,
.content-card .footer-cookie-preferences {
  display: none !important;
}

/* زر cookies داخل الفوتر فقط */
.site-footer .footer-cookie-preferences,
footer .footer-cookie-preferences {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
}

/* حماية من ظهور أي emoji قديم داخل النגישות */
.testor-a11y-toggle > span:not(.testor-ui-icon) {
  display: none !important;
}

/* TESTOR_FINAL_VISUAL_POLISH_20260513_17 */

/* إزالة الفراغات غير المرغوبة بين السيكشنات */
main > section,
main > article,
.container > section,
.container > article {
  margin-bottom: 0 !important;
}

.testor-brand-benefits,
.section,
.soft-section,
.legal-card,
.content-grid,
.content-card {
  margin-bottom: 0 !important;
}

.testor-brand-benefits {
  padding-bottom: 28px !important;
}

.testor-brand-benefits + .section,
.testor-brand-benefits + .soft-section,
.section + .section,
.section + .soft-section,
.soft-section + .section,
.soft-section + .soft-section {
  margin-top: 0 !important;
  padding-top: 42px !important;
}

@media (max-width: 640px) {
  .testor-brand-benefits {
    padding-bottom: 18px !important;
  }

  .testor-brand-benefits + .section,
  .testor-brand-benefits + .soft-section,
  .section + .section,
  .section + .soft-section,
  .soft-section + .section,
  .soft-section + .soft-section {
    padding-top: 28px !important;
  }
}

/* زر النגישות: بسيط واحترافي بدون خلفية ثقيلة */
.testor-a11y-toggle {
  width: 42px !important;
  min-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: inline-grid !important;
  place-items: center !important;
  color: #07111f !important;
}

.testor-a11y-toggle:hover,
.testor-a11y-toggle:focus-visible {
  background: transparent !important;
  box-shadow: none !important;
  opacity: 0.88;
}

.testor-a11y-toggle strong {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.testor-a11y-toggle .testor-ui-icon,
.testor-a11y-toggle .testor-ui-icon::before {
  width: 24px !important;
  height: 24px !important;
  color: #07111f !important;
}

html[data-theme="dark"] .testor-a11y-toggle {
  color: #ffffff !important;
}

html[data-theme="dark"] .testor-a11y-toggle .testor-ui-icon,
html[data-theme="dark"] .testor-a11y-toggle .testor-ui-icon::before {
  color: #ffffff !important;
}

@media (max-width: 640px) {
  .testor-a11y-toggle {
    inset-inline-start: 12px !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 10px) !important;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
  }

  .testor-a11y-panel {
    inset-inline-start: 12px !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 58px) !important;
    width: min(330px, calc(100vw - 24px)) !important;
  }
}

/* اللوجو: إزالة الحواف/الإطار/الخلفية المزعجة */
.site-brand img,
.brand img,
.site-logo img,
.logo img,
img[src*="testor-logo"],
img[src*="favicon"] {
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 14px !important;
  object-fit: contain !important;
}

.site-brand,
.brand,
.site-logo,
.logo {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* لو في wrapper حوالين اللوجو */
.site-brand a,
.brand a,
.site-logo a,
.logo a {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* أيقونة الشيكِل تظهر بوضوح */
.testor-icon-shekel,
.testor-icon-shekel::before {
  color: #1463ff !important;
}

html[data-theme="dark"] .testor-icon-shekel,
html[data-theme="dark"] .testor-icon-shekel::before {
  color: #8fc7ff !important;
}

/* تحسين اتساق الكروت */
.testor-brand-benefits article,
.content-card,
.feature-card {
  min-height: 100% !important;
}

/* منع أي عنصر فارغ عامل فراغ بصري */
.spacer,
.section-spacer,
.empty-space,
.testor-spacer {
  display: none !important;
}

/* TESTOR_REMOVE_MOCKUP_FIX_SHEKEL_LOGO_A11Y_18 */

/* إزالة كرت الموك أب القديم نهائيًا */
.testor-brand-visual,
.testor-app-card,
.testor-app-card-head,
.testor-app-flow,
.testor-status-card {
  display: none !important;
}

/* الهيرو بعد حذف الموك أب: وسط الصفحة وبعرض إنتاجي */
.testor-brand-hero-grid {
  display: block !important;
}

.testor-brand-content {
  max-width: 900px !important;
  margin-inline: auto !important;
  text-align: center !important;
}

.testor-brand-badge {
  margin-inline: auto !important;
}

.testor-brand-hero h1,
.testor-brand-subtitle,
.testor-brand-note {
  margin-inline: auto !important;
}

.testor-brand-actions,
.testor-brand-links {
  justify-content: center !important;
}

/* أيقونة الشيكل الصحيحة */
.testor-currency-icon {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
  font-size: 1.75rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  color: #1463ff !important;
}

.testor-currency-icon::before,
.testor-currency-icon::after {
  display: none !important;
  content: none !important;
}

html[data-theme="dark"] .testor-currency-icon {
  color: #8fc7ff !important;
}

html.a11y-high-contrast .testor-currency-icon {
  color: #ffff00 !important;
}

/* تنظيف اللوجو من الحواف والظل الزائد */
.site-header img,
.site-brand img,
.brand img,
.site-logo img,
.logo img,
img[src*="testor-logo"],
img[src*="favicon"] {
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  object-fit: cover !important;
  clip-path: inset(1px round 13px) !important;
}

.site-header .brand,
.site-header .site-brand,
.site-header .logo,
.site-header .site-logo,
.site-header a:has(img) {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* زر נגישות بسيط جدًا بدون خلفية */
.testor-a11y-toggle {
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #64748b !important;
  opacity: 0.72 !important;
  display: inline-grid !important;
  place-items: center !important;
}

.testor-a11y-toggle:hover,
.testor-a11y-toggle:focus-visible {
  opacity: 1 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.testor-a11y-toggle strong {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.testor-a11y-toggle .testor-ui-icon,
.testor-a11y-toggle .testor-ui-icon::before {
  width: 24px !important;
  height: 24px !important;
  color: currentColor !important;
}

html[data-theme="dark"] .testor-a11y-toggle {
  color: #cbd5e1 !important;
}

@media (max-width: 640px) {
  .testor-a11y-toggle {
    inset-inline-start: 12px !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 10px) !important;
  }

  .testor-a11y-panel {
    inset-inline-start: 12px !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 56px) !important;
  }
}

/* إزالة فراغات إضافية بعد الكروت */
.testor-brand-benefits {
  padding-bottom: 18px !important;
}

.testor-brand-benefits + .section {
  padding-top: 28px !important;
  margin-top: 0 !important;
}

/* TESTOR_FINAL_HOME_BALANCE_19 */

/* Header أوضح وأفخم */
.site-header {
  min-height: 72px !important;
}

.site-header .container,
.header-inner,
.nav-shell {
  min-height: 72px !important;
}

.site-header nav a,
.site-header .nav-links a,
.site-header .site-nav a {
  font-size: 0.92rem !important;
  font-weight: 900 !important;
}

/* Hero نهائي متوازن */
.testor-brand-hero {
  min-height: auto !important;
  padding: clamp(74px, 8vw, 118px) 0 clamp(54px, 6vw, 82px) !important;
  background:
    radial-gradient(circle at 18% 8%, rgba(20, 99, 255, 0.12), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(35, 183, 242, 0.13), transparent 32%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 92%) !important;
}

.testor-brand-hero-grid {
  display: block !important;
}

.testor-brand-content {
  max-width: 860px !important;
  margin-inline: auto !important;
  text-align: center !important;
}

.testor-brand-badge {
  margin-inline: auto !important;
  padding: 9px 14px !important;
  font-size: 0.92rem !important;
  box-shadow: 0 12px 30px rgba(20, 99, 255, 0.08) !important;
}

.testor-brand-hero h1 {
  max-width: 820px !important;
  margin: 20px auto 18px !important;
  font-size: clamp(3.6rem, 6.4vw, 6.35rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.065em !important;
  font-weight: 900 !important;
}

.testor-brand-subtitle {
  max-width: 720px !important;
  margin: 0 auto !important;
  font-size: clamp(1.14rem, 1.45vw, 1.42rem) !important;
  line-height: 1.72 !important;
  font-weight: 750 !important;
  color: #475569 !important;
}

.testor-brand-actions {
  margin-top: 30px !important;
  justify-content: center !important;
  gap: 14px !important;
}

.testor-download-pill {
  min-width: 188px !important;
  min-height: 58px !important;
  border-radius: 999px !important;
  font-size: 1.06rem !important;
}

.testor-download-pill svg {
  width: 24px !important;
  height: 24px !important;
}

.testor-brand-links {
  justify-content: center !important;
  margin-top: 18px !important;
  gap: 18px !important;
}

.testor-brand-note {
  max-width: 680px !important;
  margin: 18px auto 0 !important;
  color: #64748b !important;
  font-size: 0.95rem !important;
}

/* الكروت أقرب للهيرو وموزونة */
.testor-brand-benefits {
  padding: 34px 0 42px !important;
  background: #ffffff !important;
}

.testor-brand-benefits-grid {
  max-width: 1040px !important;
  margin-inline: auto !important;
  gap: 18px !important;
}

.testor-brand-benefits article {
  min-height: 178px !important;
  border-radius: 26px !important;
  padding: 24px 18px !important;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.055) !important;
}

.testor-benefit-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 18px !important;
}

.testor-currency-icon {
  font-size: 1.65rem !important;
}

/* بداية قسم الخدمات بدون فراغ غريب */
.testor-brand-benefits + .section,
.testor-brand-benefits + .soft-section {
  padding-top: 54px !important;
  margin-top: 0 !important;
}

/* إخفاء أي بقايا للموك أب القديم */
.testor-brand-visual,
.testor-app-card,
.testor-status-card,
.testor-app-flow,
.testor-app-card-head {
  display: none !important;
}

/* Mobile */
@media (max-width: 900px) {
  .testor-brand-hero {
    padding: 46px 0 36px !important;
  }

  .testor-brand-hero h1 {
    max-width: 370px !important;
    font-size: clamp(2.8rem, 12vw, 4.15rem) !important;
    line-height: 0.98 !important;
    margin-bottom: 16px !important;
  }

  .testor-brand-subtitle {
    max-width: 360px !important;
    font-size: 1.03rem !important;
    line-height: 1.72 !important;
  }

  .testor-brand-actions {
    width: min(100%, 350px) !important;
    margin: 26px auto 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .testor-download-pill {
    width: 100% !important;
    min-height: 56px !important;
  }

  .testor-brand-benefits {
    padding: 26px 0 34px !important;
  }

  .testor-brand-benefits-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .testor-brand-benefits article {
    min-height: 160px !important;
    padding: 18px 12px !important;
    border-radius: 24px !important;
  }

  .testor-brand-benefits + .section,
  .testor-brand-benefits + .soft-section {
    padding-top: 36px !important;
  }
}

@media (max-width: 380px) {
  .testor-brand-hero h1 {
    font-size: 2.65rem !important;
  }
}

/* TESTOR_RESTORE_HERO_SIDE_CARD_20 */

/* Desktop: نرجع الكرت الجانبي بهوية Testor */
@media (min-width: 901px) {
  .testor-brand-hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.72fr) !important;
    gap: clamp(42px, 5vw, 78px) !important;
    align-items: center !important;
  }

  .testor-brand-content {
    max-width: 760px !important;
    margin-inline: 0 !important;
    text-align: right !important;
  }

  .testor-brand-badge {
    margin-inline: 0 !important;
  }

  .testor-brand-hero h1,
  .testor-brand-subtitle,
  .testor-brand-note {
    margin-inline: 0 !important;
  }

  .testor-brand-actions,
  .testor-brand-links {
    justify-content: flex-start !important;
  }

  .testor-brand-visual.testor-clean-side-card {
    display: flex !important;
    justify-content: center !important;
  }

  .testor-brand-visual.testor-clean-side-card .testor-app-card {
    display: block !important;
    width: min(100%, 430px) !important;
    border-radius: 34px !important;
    padding: 24px !important;
    background:
      linear-gradient(145deg, rgba(255,255,255,0.98), rgba(239,246,255,0.98)) !important;
    border: 1px solid rgba(15, 23, 42, 0.09) !important;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.13) !important;
  }

  .testor-brand-visual.testor-clean-side-card .testor-app-card-head {
    display: flex !important;
    align-items: center !important;
    gap: 13px !important;
    padding-bottom: 18px !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
  }

  .testor-brand-visual.testor-clean-side-card .testor-app-card-head img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 18px !important;
    object-fit: contain !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    clip-path: none !important;
  }

  .testor-brand-visual.testor-clean-side-card .testor-app-card-head strong {
    display: block !important;
    color: #07111f !important;
    font-size: 1.28rem !important;
    line-height: 1 !important;
  }

  .testor-brand-visual.testor-clean-side-card .testor-app-card-head span {
    display: block !important;
    margin-top: 5px !important;
    color: #64748b !important;
    font-weight: 800 !important;
  }

  .testor-brand-visual.testor-clean-side-card .testor-app-flow {
    display: grid !important;
    gap: 11px !important;
    margin-top: 18px !important;
  }

  .testor-brand-visual.testor-clean-side-card .testor-app-flow div {
    display: grid !important;
    grid-template-columns: 42px 1fr !important;
    column-gap: 12px !important;
    row-gap: 4px !important;
    align-items: center !important;
    border-radius: 18px !important;
    padding: 14px !important;
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
  }

  .testor-brand-visual.testor-clean-side-card .testor-app-flow span {
    grid-row: 1 / span 2 !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    background: rgba(20, 99, 255, 0.10) !important;
    color: #1463ff !important;
    font-weight: 950 !important;
    font-size: 0.82rem !important;
  }

  .testor-brand-visual.testor-clean-side-card .testor-app-flow strong {
    color: #07111f !important;
    font-size: 1rem !important;
    line-height: 1.15 !important;
  }

  .testor-brand-visual.testor-clean-side-card .testor-app-flow small {
    color: #64748b !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
  }
}

/* Mobile: بدون كرت جانبي حتى تبقى الصفحة سريعة ونظيفة */
@media (max-width: 900px) {
  .testor-brand-visual.testor-clean-side-card {
    display: none !important;
  }

  .testor-brand-content {
    text-align: center !important;
    margin-inline: auto !important;
  }

  .testor-brand-badge,
  .testor-brand-hero h1,
  .testor-brand-subtitle,
  .testor-brand-note {
    margin-inline: auto !important;
  }

  .testor-brand-actions,
  .testor-brand-links {
    justify-content: center !important;
  }
}

/* Dark mode للكرت */
html[data-theme="dark"] .testor-brand-visual.testor-clean-side-card .testor-app-card {
  background: #101b2d !important;
  border-color: rgba(255,255,255,0.12) !important;
}

html[data-theme="dark"] .testor-brand-visual.testor-clean-side-card .testor-app-flow div {
  background: #0b1526 !important;
  border-color: rgba(255,255,255,0.10) !important;
}

html[data-theme="dark"] .testor-brand-visual.testor-clean-side-card strong {
  color: #ffffff !important;
}

html[data-theme="dark"] .testor-brand-visual.testor-clean-side-card span,
html[data-theme="dark"] .testor-brand-visual.testor-clean-side-card small {
  color: #cbd5e1 !important;
}

/* TESTOR_DOWNLOAD_COMING_SOON_FINAL */

.store-button-disabled,
.store-button[disabled] {
  cursor: not-allowed !important;
  opacity: 0.72 !important;
  transform: none !important;
  pointer-events: none !important;
  filter: grayscale(0.12) !important;
}

.store-button-disabled:hover,
.store-button[disabled]:hover {
  transform: none !important;
  box-shadow: inherit !important;
}

.download-launch-notice {
  margin-top: 22px !important;
}

/* TESTOR_HOME_COMING_SOON_STORE_LINKS */

.testor-download-pill.testor-download-soon {
  position: relative !important;
}

.testor-download-pill.testor-download-soon span {
  white-space: nowrap !important;
}

.testor-download-pill.testor-download-soon::after {
  content: "בקרוב";
  position: absolute;
  top: -10px;
  inset-inline-start: 18px;
  min-height: 20px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(20, 99, 255, 0.12);
  color: #1463ff;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.25;
  border: 1px solid rgba(20, 99, 255, 0.18);
}

html[data-theme="dark"] .testor-download-pill.testor-download-soon::after {
  background: rgba(242, 196, 93, 0.16);
  color: #f2c45d;
  border-color: rgba(242, 196, 93, 0.22);
}

/* TESTOR_STORE_BUTTONS_FINAL_CLEAN_24 */

.testor-brand-actions,
.store-buttons {
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
}

.testor-download-pill,
.store-button,
a[data-app-store-link],
a[data-google-play-link],
button[data-app-store-link],
button[data-google-play-link] {
  position: relative !important;
  min-height: 68px !important;
  padding: 16px 30px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #07111f !important;
  color: #ffffff !important;
  border: 1px solid rgba(7, 17, 31, 0.10) !important;
  box-shadow: 0 16px 36px rgba(7, 17, 31, 0.16) !important;
  text-decoration: none !important;
  overflow: hidden !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  opacity: 1 !important;
  filter: none !important;
}

.testor-download-pill::before,
.testor-download-pill::after,
.testor-download-pill.testor-download-soon::before,
.testor-download-pill.testor-download-soon::after,
.store-button::before,
.store-button::after,
.store-button-disabled::before,
.store-button-disabled::after,
.store-button-final-clean::before,
.store-button-final-clean::after,
a[data-app-store-link]::before,
a[data-app-store-link]::after,
a[data-google-play-link]::before,
a[data-google-play-link]::after,
button[data-app-store-link]::before,
button[data-app-store-link]::after,
button[data-google-play-link]::before,
button[data-google-play-link]::after,
.store-button-badge,
.store-badge,
.coming-soon-badge,
.badge {
  content: none !important;
  display: none !important;
}

.store-button__content {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  line-height: 1 !important;
}

.store-button__icon {
  width: 28px !important;
  height: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 28px !important;
  color: #ffffff !important;
}

.store-button__icon svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

.store-button__label {
  display: inline-block !important;
  color: #ffffff !important;
  font-size: clamp(1.24rem, 2.45vw, 1.72rem) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: -0.015em !important;
  white-space: nowrap !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  text-align: left !important;
}

html[dir="rtl"] .store-button__content,
html[dir="rtl"] .store-button__label {
  direction: ltr !important;
  unicode-bidi: isolate !important;
}

@media (max-width: 767px) {
  .testor-brand-actions,
  .store-buttons {
    width: 100% !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  .testor-download-pill,
  .store-button,
  a[data-app-store-link],
  a[data-google-play-link],
  button[data-app-store-link],
  button[data-google-play-link] {
    width: min(100%, 390px) !important;
    min-height: 72px !important;
    padding: 16px 22px !important;
    margin-inline: auto !important;
  }

  .store-button__content {
    gap: 13px !important;
  }

  .store-button__icon {
    width: 26px !important;
    height: 26px !important;
    flex-basis: 26px !important;
  }

  .store-button__label {
    font-size: 1.38rem !important;
  }
}

@media (max-width: 380px) {
  .store-button__label {
    font-size: 1.22rem !important;
  }

  .store-button__icon {
    width: 24px !important;
    height: 24px !important;
    flex-basis: 24px !important;
  }
}

/* TESTOR_DOWNLOAD_PAGE_STORE_BUTTONS_25 */

.download-grid {
  align-items: stretch !important;
}

.download-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 18px !important;
  text-align: center !important;
}

.download-card h3 {
  margin-bottom: 8px !important;
  font-size: clamp(1.45rem, 3.4vw, 2rem) !important;
  line-height: 1.15 !important;
}

.download-card p {
  max-width: 520px !important;
  margin-inline: auto !important;
  color: var(--muted) !important;
  font-size: clamp(1rem, 2.5vw, 1.14rem) !important;
  line-height: 1.75 !important;
  font-weight: 750 !important;
}

.download-card .store-buttons {
  width: 100% !important;
  margin-top: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.download-card .download-store-button,
.download-card button[data-app-store-link],
.download-card button[data-google-play-link],
.download-card .store-button-final-clean {
  width: min(100%, 280px) !important;
  min-height: 58px !important;
  height: 58px !important;
  padding: 0 22px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(20, 99, 255, 0.16) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #1463ff, #60a5fa) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 32px rgba(20, 99, 255, 0.22) !important;
  opacity: 1 !important;
  filter: none !important;
  cursor: default !important;
  pointer-events: none !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  overflow: hidden !important;
}

.download-card .download-store-button::before,
.download-card .download-store-button::after,
.download-card button[data-app-store-link]::before,
.download-card button[data-app-store-link]::after,
.download-card button[data-google-play-link]::before,
.download-card button[data-google-play-link]::after,
.download-card .store-button-final-clean::before,
.download-card .store-button-final-clean::after {
  content: none !important;
  display: none !important;
}

.download-card .download-store-button__content,
.download-card .store-button__content {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  line-height: 1 !important;
}

.download-card .download-store-button__icon,
.download-card .store-button__icon {
  width: 23px !important;
  height: 23px !important;
  flex: 0 0 23px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
}

.download-card .download-store-button__icon svg,
.download-card .store-button__icon svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

.download-card .download-store-button__label,
.download-card .store-button__label {
  color: #ffffff !important;
  font-size: clamp(1.02rem, 3.3vw, 1.24rem) !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: -0.01em !important;
  white-space: nowrap !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  text-align: left !important;
}

.download-launch-notice {
  grid-column: 1 / -1 !important;
  margin-top: 2px !important;
}

@media (max-width: 767px) {
  .download-grid {
    gap: 20px !important;
  }

  .download-card {
    padding: 26px 22px !important;
    border-radius: 28px !important;
  }

  .download-card .download-store-button,
  .download-card button[data-app-store-link],
  .download-card button[data-google-play-link],
  .download-card .store-button-final-clean {
    width: min(100%, 250px) !important;
    min-height: 54px !important;
    height: 54px !important;
    border-radius: 17px !important;
    padding: 0 18px !important;
  }

  .download-card .download-store-button__content,
  .download-card .store-button__content {
    gap: 9px !important;
  }

  .download-card .download-store-button__icon,
  .download-card .store-button__icon {
    width: 21px !important;
    height: 21px !important;
    flex-basis: 21px !important;
  }

  .download-card .download-store-button__label,
  .download-card .store-button__label {
    font-size: 1.06rem !important;
  }
}

@media (max-width: 380px) {
  .download-card .download-store-button,
  .download-card button[data-app-store-link],
  .download-card button[data-google-play-link],
  .download-card .store-button-final-clean {
    width: min(100%, 230px) !important;
  }

  .download-card .download-store-button__label,
  .download-card .store-button__label {
    font-size: 1rem !important;
  }
}

/* TESTOR_STORE_BUTTONS_PREMIUM_FINAL_27 */

.testor-brand-actions,
.store-buttons {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

.testor-store-pill,
a.testor-store-pill,
button.testor-store-pill {
  appearance: none !important;
  -webkit-appearance: none !important;
  position: relative !important;
  isolation: isolate !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 190px !important;
  max-width: 100% !important;
  min-height: 58px !important;
  padding: 10px 22px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  border: 1px solid transparent !important;
  overflow: hidden !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  cursor: pointer !important;
  transform: translateZ(0) !important;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease !important;
}

button.testor-store-pill[disabled],
button.testor-store-pill[aria-disabled="true"] {
  cursor: default !important;
}

.testor-store-pill::before,
.testor-store-pill::after,
.testor-store-pill.testor-download-soon::before,
.testor-store-pill.testor-download-soon::after,
.testor-download-pill::before,
.testor-download-pill::after,
.store-button::before,
.store-button::after,
.store-button-disabled::before,
.store-button-disabled::after,
.store-button-badge,
.store-badge,
.coming-soon-badge,
.badge {
  content: none !important;
  display: none !important;
}

.testor-store-pill__icon,
.testor-store-pill__text,
.testor-store-pill__text strong,
.testor-store-pill__text small {
  position: relative !important;
  z-index: 2 !important;
}

.testor-store-pill__icon {
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-inline-end: 12px !important;
}

.testor-store-pill__icon svg {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.testor-store-pill__text {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 3px !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  line-height: 1 !important;
  text-align: left !important;
}

.testor-store-pill__text strong {
  display: block !important;
  font-size: clamp(1.02rem, 2.1vw, 1.22rem) !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: -0.015em !important;
  white-space: nowrap !important;
}

.testor-store-pill__text small {
  display: block !important;
  font-size: 0.72rem !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  opacity: 0.72 !important;
  white-space: nowrap !important;
}

.testor-store-pill--dark {
  background:
    radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #081a35 100%) !important;
  color: #ffffff !important;
  box-shadow:
    0 18px 44px rgba(7, 17, 31, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.testor-store-pill--primary {
  background:
    radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #1463ff 0%, #5ea4ff 100%) !important;
  color: #ffffff !important;
  box-shadow:
    0 16px 36px rgba(20, 99, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

.testor-store-pill--outline {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(20, 99, 255, 0.26), rgba(96, 165, 250, 0.46)) border-box !important;
  color: #1463ff !important;
  border: 1px solid transparent !important;
  box-shadow:
    0 14px 30px rgba(7, 17, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.testor-store-pill--outline .testor-store-pill__text small {
  color: #5b6b80 !important;
}

.testor-store-pill--outline .testor-store-pill__icon {
  color: #1463ff !important;
}

@media (hover: hover) {
  a.testor-store-pill:hover,
  button.testor-store-pill:not([disabled]):hover {
    transform: translateY(-2px) !important;
  }
}

.download-card .testor-store-pill {
  min-width: 0 !important;
  width: min(100%, 245px) !important;
  min-height: 56px !important;
  padding: 9px 20px !important;
  border-radius: 18px !important;
}

.download-card .testor-store-pill__icon {
  width: 22px !important;
  height: 22px !important;
  flex-basis: 22px !important;
  margin-inline-end: 10px !important;
}

.download-card .testor-store-pill__text strong {
  font-size: 1.05rem !important;
}

.download-card .testor-store-pill__text small {
  font-size: 0.68rem !important;
}

html[data-theme="dark"] .testor-store-pill--outline {
  background:
    linear-gradient(#0f1b2d, #0f1b2d) padding-box,
    linear-gradient(135deg, rgba(242, 196, 93, 0.32), rgba(96, 165, 250, 0.32)) border-box !important;
  color: #f8fafc !important;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

html[data-theme="dark"] .testor-store-pill--outline .testor-store-pill__text small {
  color: #a8b3c7 !important;
}

@media (max-width: 767px) {
  .testor-brand-actions {
    width: 100% !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .testor-brand-actions .testor-store-pill {
    width: min(100%, 330px) !important;
    min-height: 60px !important;
  }

  .download-card .testor-store-pill {
    width: min(100%, 238px) !important;
    min-height: 54px !important;
    border-radius: 17px !important;
  }

  .testor-store-pill__icon {
    width: 23px !important;
    height: 23px !important;
    flex-basis: 23px !important;
    margin-inline-end: 11px !important;
  }

  .testor-store-pill__text strong {
    font-size: 1.08rem !important;
  }

  .testor-store-pill__text small {
    font-size: 0.7rem !important;
  }
}

@media (max-width: 380px) {
  .testor-brand-actions .testor-store-pill {
    width: min(100%, 300px) !important;
  }

  .download-card .testor-store-pill {
    width: min(100%, 220px) !important;
  }

  .testor-store-pill__text strong {
    font-size: 1rem !important;
  }

  .testor-store-pill__text small {
    font-size: 0.66rem !important;
  }
}
