
:root {
  color-scheme: light dark;
  --light-yellow: #effaf1;   
  --primery: #d23a3a;       
  --dark-black: #08100a;
  --dark-greay: #9599ab;
  --greay: #afafaf;
  --text-greay: #848484;
  --black: #000000;
  --bg-white: #ffffff;
  --text-white: #fff;
  --light-greay: #dddfea;
  --bg-color: var(--bg-white);
  --text-color: var(--black);
  --surface: #ffffff;
  --surface-strong: #f9f9fb;
  --surface-muted: #f3f4f6;
  --border: rgba(0,0,0,.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Sora', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.dark-mode {
  --primery: #c12f32;
  --black: #f4f5f7;
  --bg-white: #071014;
  --text-white: #fdfdff;
  --text-greay: #c7c9d2;
  --light-greay: #2b3449;
  --greay: #7a8094;
  --dark-black: #f0f2f5;
  --dark-greay: #99a0b3;
  --light-yellow: #334652;
  --bg-color: #071014;
  --text-color: #f4f5f7;
  --surface: #0f1721;
  --surface-strong: #111a28;
  --surface-muted: #0a1220;
  --border: rgba(255,255,255,.12);
}

body.dark-mode .about_section,
body.dark-mode .download_app {
  --black: #000;
  --text-greay: #4a4a4a;
  --light-greay: #dddfea;
}

body.dark-mode footer {
  background-color: #08100a !important;
  color: #fff !important;
}

body.dark-mode .footer_bottom {
  background: rgba(255,255,255,.08) !important;
}

body.dark-mode .footer_bottom p,
body.dark-mode .footer_bottom .links li a,
body.dark-mode .footer_bottom .links li:not(:last-child)::after {
  color: var(--greay) !important;
}

body.dark-mode header {
  background: rgba(8, 12, 18, .95);
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}

body.dark-mode .navbar {
  background: transparent;
}

body.dark-mode .navbar-nav {
  background: #071014;
}

body.dark-mode .nav-link,
body.dark-mode .lang_btn,
body.dark-mode .theme-toggle,
body.dark-mode .nav-toggle span,
body.dark-mode .nav-toggle::before,
body.dark-mode .nav-toggle::after {
  color: #fff;
}

body.dark-mode .nav-toggle span,
body.dark-mode .nav-toggle::before,
body.dark-mode .nav-toggle::after {
  background: #fff;
}

body.dark-mode .nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

body.dark-mode .lang_btn,
body.dark-mode .theme-toggle {
  border-color: rgba(255,255,255,.2);
}

body.dark-mode .lang_btn:hover,
body.dark-mode .theme-toggle:hover {
  color: #ffffff;
}

body.dark-mode .dark_btn {
  background-color: var(--primery);
  color: var(--text-white) !important;
  box-shadow: 0 8px 18px rgba(210,58,58,.25);
}

body.dark-mode .about_section h1,
body.dark-mode .about_section h2,
body.dark-mode .about_section h3,
body.dark-mode .about_section h4,
body.dark-mode .about_section p,
body.dark-mode .about_section li,
body.dark-mode .about_section a,
body.dark-mode .about_section span,
body.dark-mode .about_section strong,
body.dark-mode .about_section em,
body.dark-mode .download_app h1,
body.dark-mode .download_app h2,
body.dark-mode .download_app h3,
body.dark-mode .download_app h4,
body.dark-mode .download_app p,
body.dark-mode .download_app li,
body.dark-mode .download_app a,
body.dark-mode .download_app span,
body.dark-mode .download_app strong,
body.dark-mode .download_app em {
  color: #000 !important;
}

body.dark-mode .download_app .title_badge,
body.dark-mode .download_app .dark_btn,
body.dark-mode .download_app .download_features svg,
body.dark-mode .about_card_icon,
body.dark-mode .about_card_icon svg {
  color: #fff !important;
}

body.dark-mode .lang_menu {
  background: #09101a;
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 20px 45px rgba(0,0,0,.45);
}

body.dark-mode .lang_menu button:hover {
  background: rgba(255,255,255,.06);
}

body.dark-mode .lang_menu button.is-active {
  color: var(--primery);
  background: rgba(210,58,58,.12);
}

a { text-decoration: none; color: var(--black); transition: .4s all; }
a:hover { color: var(--primery); }
ul, li { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

:focus-visible { outline: 2.5px solid var(--primery); outline-offset: 3px; }

.container { max-width: 1170px; margin: 0 auto; padding: 0 20px; }

.row_am { padding: 80px 0; }

.section_title { text-align: center; margin-bottom: 50px; }
.section_title h2 { font-size: 45px; font-weight: 800; letter-spacing: -1.5px; margin: 0 0 10px 0; }
.section_title h2 span { color: var(--primery); }
.section_title p { color: var(--text-greay); max-width: 640px; margin: 0 auto; }
.section_title.white_text h2, .section_title.white_text p { color: var(--text-white); }

.title_badge {
  color: var(--primery);
  display: inline-block;
  padding: 2px 20px;
  border-radius: 100px;
  background: var(--light-yellow);
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 15px;
}

.btn_block { position: relative; display: inline-block; }
.btn_bottom {
  z-index: 1;
  border: 1px solid var(--primery);
  border-radius: 100px;
  position: absolute;
  top: -8px; left: 8px; right: -12px;
  transform: translate(-0.52em, 0.52em);
  width: 100%; height: 100%;
  pointer-events: none;
}
.dark_btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  color: var(--text-white) !important;
  background-color: var(--primery);
  font-size: 16px;
  font-weight: 700;
  padding: 9px 30px;
  border-radius: 25px;
  transition: .4s all;
}
.dark_btn:hover { color: var(--text-white) !important; transform: translate3d(3px, 4px, 0); }


header {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 8px 30px rgba(8,16,10,.05);
}

#home, #about, #download, #contact { scroll-margin-top: 60px; }

header .container {
  max-width: 100%;
  padding: 0 clamp(20px, 5vw, 56px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  min-height: 40px;
  direction: ltr;
}

.navbar-brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.navbar-brand img { width: 84px; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: block;
  padding: 6px 12px;
  font-weight: 500;
  font-size: 14px;
  color: #4a4a4a;
  border-radius: 100px;
  transition: .25s all;
}
.nav-link:hover { color: var(--black); background: rgba(0,0,0,.045); }
.nav-item .btn_block { margin-left: 18px; }

.nav-lang { position: relative; margin-left: 6px; }
.lang_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--light-greay);
  border-radius: 100px;
  padding: 7px 11px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: #4a4a4a;
  cursor: pointer;
  transition: .25s all;
}
.lang_btn:hover { border-color: var(--primery); color: var(--primery); }
.lang_emoji { font-size: 17px; line-height: 1; }
.lang_chevron { transition: .25s transform; }
.nav-lang.is-open .lang_chevron,
.lang_btn[aria-expanded="true"] .lang_chevron { transform: rotate(180deg); }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid var(--light-greay);
  border-radius: 999px;
  background: #f5f5f6;
  color: #4a4a4a;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  min-width: 86px;
  justify-content: center;
  transition: .25s all;
}
.theme-toggle .theme-switch {
  display: inline-flex;
  align-items: center;
  width: 28px;
  height: 16px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(74,74,74,.18);
  transition: .25s all;
}
.theme-toggle .theme-switch::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.18);
  transition: .25s transform;
}
.theme-toggle.is-dark .theme-switch {
  background: rgba(210,58,58,.22);
}
.theme-toggle.is-dark .theme-switch::before {
  transform: translateX(12px);
  background: var(--primery);
}
.theme-toggle:hover {
  border-color: var(--primery);
  color: var(--primery);
  background: rgba(210,58,58,.08);
}

.lang_menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 140px;
  background: #fff;
  border: 1px solid var(--light-greay);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 20px 45px rgba(8,16,10,.14);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: .2s all;
  z-index: 20;
}
.lang_menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang_menu button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-radius: 9px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #4a4a4a;
  cursor: pointer;
  transition: .2s all;
}
.lang_menu button:hover { background: rgba(0,0,0,.045); color: var(--black); }
.lang_menu button.is-active { color: var(--primery); background: var(--light-yellow); }
.navbar .btn_block .btn_bottom { display: none; }
.navbar .dark_btn {
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  box-shadow: 0 6px 16px rgba(210,58,58,.28);
}
.navbar .dark_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(210,58,58,.35);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: .25s all;
}
.nav-toggle span { top: 8px; }
.nav-toggle::before { top: 0; }
.nav-toggle::after { bottom: 0; }
.nav-toggle.is-open span { opacity: 0; }
.nav-toggle.is-open::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open::after { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 991px) {
  .navbar {
    position: relative;
    display: grid;
    grid-template-columns: 24px 1fr 24px;
    align-items: center;
    padding: 6px 0;
  }
  .navbar-brand { grid-column: 2; justify-self: center; margin: 0; }
  .navbar-brand img { width: 72px; }
  .nav-toggle { display: block; grid-column: 3; justify-self: end; width: 24px; height: 18px; }
  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-radius: 15px;
    margin: 0 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
  }
  .navbar-nav.is-open { display: flex; }
  .nav-item .btn_block { margin: 10px 0 0 0; }
  .dark_btn { width: 100%; text-align: center; }
}


.banner_section {
  position: relative;
  background-color: var(--primery);
  padding: 35px 0 100px 0;
  overflow: hidden;
}

.banner_fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.banner_fx .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  will-change: transform;
}
.blob_a {
  width: 460px; height: 460px;
  top: -140px; left: -80px;
  background: #ff7a7a;
  animation: blobDrift1 16s ease-in-out infinite;
}
.blob_b {
  width: 380px; height: 380px;
  bottom: -160px; right: -60px;
  background: #7a0f0f;
  animation: blobDrift2 19s ease-in-out infinite;
}
.blob_c {
  width: 300px; height: 300px;
  top: 30%; right: 18%;
  background: #ffb4b4;
  opacity: .3;
  animation: blobDrift3 13s ease-in-out infinite;
}
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, 50px) scale(1.15); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, -40px) scale(1.12); }
}
@keyframes blobDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.2); }
}

.banner_section::after {
  content: "";
  position: absolute;
  inset: -20% -20%;
  z-index: 1;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.16) 50%, transparent 58%);
  background-size: 250% 250%;
  animation: shineSweep 7s linear infinite;
  pointer-events: none;
}

.download_app .task_block::after,
.talk_section::after {
  content: "";
  position: absolute;
  inset: -20% -20%;
  z-index: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(0, 0, 0, .05) 50%, transparent 58%);
  background-size: 250% 250%;
  animation: shineSweep 7s linear infinite;
  pointer-events: none;
}
@keyframes shineSweep {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .banner_fx .blob, .banner_section::after, .blob_w1, .blob_w2, .blob_w3,
  .download_app .task_block::after, .talk_section::after { animation: none; }
}

.banner_section .row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.type-wrap {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  min-height: 24px;
  margin-bottom: 10px;
}
.type-wrap .cursor { animation: blink 0.8s infinite; }
@keyframes blink { 50% { opacity: 0; } }

.banner_text h1 {
  font-size: 38px;
  color: #fff;
  letter-spacing: -1px;
  font-weight: 700;
  margin: 0 0 16px 0;
}
.banner_text p { color: #fff; font-size: 16px; max-width: 46ch; opacity: .92; }

.app_btn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.app_btn li a {
  display: flex;
  align-items: center;
  transition: .4s all;
}
.app_btn li a:hover { transform: translateY(-3px); }
.app_btn li a img { height: 84px; width: auto; }
.download_app .app_btn li a img { height: 64px; }

.banner_slider { position: relative; display: flex; flex-direction: column; align-items: center; padding: 30px 0; }
.banner_slider::before {
  content: "";
  position: absolute;
  left: 50%; bottom: 6%;
  transform: translateX(-50%);
  width: 63%; height: 36px;
  background: rgba(0,0,0,.32);
  filter: blur(27px);
  border-radius: 50%;
  z-index: 0;
}


.phone_shell,
.dl_phone_shell {
  position: relative;
  z-index: 2;
  width: min(270px, 75vw);
  aspect-ratio: 1080 / 2091;
  background: linear-gradient(145deg, #d8dbe0 0%, #8a8e96 15%, #3c3f46 40%, #1a1c20 70%, #686c75 100%);
  border-radius: 48px;
  padding: 8px;
  box-shadow:
    0 32px 75px rgba(0, 0, 0, 0.45),
    0 10px 25px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    inset 0 0 4px 1px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.phone_shell:hover,
.dl_phone_shell:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow:
    0 40px 85px rgba(0, 0, 0, 0.5),
    0 15px 35px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.phone_shell::before,
.dl_phone_shell::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 18%;
  width: 4px;
  height: 24px;
  background: linear-gradient(to right, #8a8e96, #3c3f46);
  border-radius: 3px 0 0 3px;
  box-shadow: -1px 0 2px rgba(0, 0, 0, 0.4);
}

.phone_shell::after,
.dl_phone_shell::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 24%;
  width: 4px;
  height: 52px;
  background: linear-gradient(to left, #8a8e96, #3c3f46);
  border-radius: 0 3px 3px 0;
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.4);
}

.phone_vol_up,
.dl_phone_vol_up {
  position: absolute;
  left: -4px;
  top: 26%;
  width: 4px;
  height: 42px;
  background: linear-gradient(to right, #8a8e96, #3c3f46);
  border-radius: 3px 0 0 3px;
  z-index: 1;
}

.phone_vol_down,
.dl_phone_vol_down {
  position: absolute;
  left: -4px;
  top: 36%;
  width: 4px;
  height: 42px;
  background: linear-gradient(to right, #8a8e96, #3c3f46);
  border-radius: 3px 0 0 3px;
  z-index: 1;
}

.phone_island,
.dl_phone_island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 22px;
  background: #000000;
  border-radius: 100px;
  z-index: 10;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
}

.phone_island::after,
.dl_phone_island::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #0b0f19;
  border-radius: 50%;
  box-shadow: inset 0 0 3px #1a233d;
}

.screen_window,
.dl_phone_screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(0, 0, 0, 0.8);
}
.screen_window {
  touch-action: pan-y;
  cursor: grab;
}

.screen_window img,
.dl_phone_screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.phone_status_bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  background: #fff;
  z-index: 5;
}
.screen_window img {
  top: 38px;
  height: calc(100% - 38px);
}

.screen_window img.is-active,
.dl_phone_screen img {
  opacity: 1;
}

.phone_glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.05) 30%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 6;
}

.phone_home_bar,
.dl_phone_home_bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 4px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  z-index: 7;
  pointer-events: none;
}

.slider_dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 4;
}
.slider_dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.7);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: .3s all;
}
.slider_dots button.is-active { background: #fff; border-color: #fff; }

.hero_overlay {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  line-height: 0;
  z-index: 2;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.hero_overlay.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero_overlay img { width: 100%; display: block; }
.hero_overlay svg { display: block; width: 100%; height: auto; }


.about_section { padding: 80px 0; }

.about_intro {
  max-width: 640px;
  margin: 0 auto 56px auto;
  text-align: center;
}
.about_eyebrow {
  display: inline-block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.5px;
  text-transform: none;
  color: var(--primery);
  margin-bottom: 14px;
}
.about_heading {
  font-size: 34px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0 0 16px 0;
}
.about_lead { font-size: 16.5px; color: var(--text-greay); margin: 0; }

.about_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about_card {
  border: 1px solid var(--light-greay);
  border-radius: 20px;
  padding: 32px 26px;
  background: #fff;
  transition: .3s all;
}
.about_card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 24px 50px rgba(8,16,10,.08);
}
.about_card_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primery);
  color: #fff;
  margin-bottom: 22px;
}
.about_card_icon svg { width: 20px; height: 20px; }
.about_card h3 { font-size: 16.5px; font-weight: 700; margin: 0 0 8px 0; }
.about_card p { font-size: 14.5px; color: var(--text-greay); margin: 0; line-height: 1.6; }


.download_app { padding: 0 15px; display: flex; flex-direction: column; align-items: center; gap: 40px; }
.download_app .task_block {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--light-greay);
  padding: 90px;
  border-radius: 32px;
  overflow: hidden;
}
.download_fx { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.download_fx .blob, .talk_fx .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.blob_w1 {
  width: 420px; height: 420px;
  top: -140px; left: -60px;
  background: #eef2f9;
  opacity: .8;
  animation: blobDrift1 16s ease-in-out infinite;
}
.blob_w2 {
  width: 360px; height: 360px;
  bottom: -150px; right: -60px;
  background: #f7f5ff;
  opacity: .7;
  animation: blobDrift2 19s ease-in-out infinite;
}
.blob_w3 {
  width: 280px; height: 280px;
  top: 25%; right: 18%;
  background: #ffffff;
  opacity: .6;
  animation: blobDrift3 13s ease-in-out infinite;
}
.download_app .task_block { text-align: center; }
.download_app .title_badge { background: var(--primery); color: #fff; }
.download_app h2 { font-size: 36px; font-weight: 800; margin: 0 0 16px 0; letter-spacing: -1px; color: var(--black); }
.download_copy { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; max-width: 560px; margin: 0 auto; }
.download_copy p { font-size: 16.5px; color: var(--text-greay); max-width: 42ch; margin: 0 0 30px 0; }

.download_features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 0 32px 0;
}
.download_features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--black);
}
.download_features svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  padding: 3px;
  border-radius: 50%;
  background: var(--light-yellow);
  color: var(--primery);
}

.download_trust { margin-top: 26px; font-size: 14px; font-weight: 600; color: var(--text-greay); }

.download_app .frame_img {
  position: relative;
  display: flex;
  justify-content: center;
}

footer {
  background-color: var(--dark-black);
  color: #fff;
  margin-top: 60px;
  position: relative;
}
.footer_overlay { margin-top: -1px; line-height: 0; }
.footer_overlay img { width: 100%; display: block; }
.footer_overlay svg { width: 100%; height: auto; display: block; }

footer .row { padding: 70px 0 60px 0; }
footer .row.footer_simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.logo_side { display: flex; flex-direction: column; align-items: center; }

footer .logo img {
  width: 108px;
  height: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,.3));
  transition: transform .3s ease, filter .3s ease;
}
footer .logo img[src*="logoWhite"] {
  filter: drop-shadow(0 2px 8px rgba(255,255,255,.15));
}
footer .logo img:hover {
  transform: scale(1.06);
}

.field-error { display: block; color: #ff8080; font-size: 13px; margin-top: 6px; min-height: 1em; }

.contact_info { display: flex; flex-wrap: wrap; gap: 0; margin-top: 20px; }
.contact_info li a { color: #fff; }
.contact_info li:not(:last-child)::after { content: "|"; margin: 0 14px; color: #fff; }

.social_media { display: flex; gap: 10px; margin-top: 20px; }
.social_media a {
  width: 35px; height: 35px;
  border: 1px solid var(--dark-greay);
  border-radius: 100px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: .3s all;
}
.social_media a:hover { background: #fff; color: var(--dark-black); }
.social_media a.ic-linkedin { color: #0A66C2; }
.social_media a.ic-facebook { color: #1877F2; }
.social_media a.ic-tiktok { color: #fff; }
.social_media a.ic-tiktok:hover { color: var(--dark-black); }

.footer_bottom {
  max-width: 1170px;
  margin: 0 auto;
  background: rgba(255,255,255,.08);
  border-radius: 20px;
}
.footer_bottom .ft_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 26px;
}
.footer_bottom p { margin: 0; color: var(--greay); font-size: 14px; }
.footer_bottom .links { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; row-gap: 6px; }
.footer_bottom .links li a { color: var(--greay); font-size: 14px; }
.footer_bottom .links li a:hover { color: #fff; }
.footer_bottom .links li:not(:last-child)::after { content: "|"; margin: 0 10px; color: var(--greay); }

@media (max-width: 991px) {
  .banner_section .row { grid-template-columns: 1fr; text-align: center; }
  .banner_text p { margin: 0 auto; }
  .app_btn { justify-content: center; }
  .banner_section { background-color: var(--primery); }
  .blob_a { opacity: .45; filter: blur(100px); }
  .blob_b { display: none; }
  .blob_c { opacity: .18; filter: blur(100px); }
  .about_grid { grid-template-columns: 1fr 1fr; }
  .download_app .app_btn { justify-content: center; }
  .footer_bottom .ft_inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .banner_text h1 { font-size: 34px; }
  .banner_section { padding: 80px 0 120px 0; }
  .section_title h2 { font-size: 30px; }
  .about_grid { grid-template-columns: 1fr; }
  .download_app .task_block { padding: 50px 24px; }
  .contact_info { flex-direction: column; align-items: center; gap: 4px; }
  .contact_info li:not(:last-child)::after { display: none; }
}


.page_hero { background: var(--primery); padding: 70px 0 90px 0; text-align: center; }
.page_hero h1 { color: #fff; font-size: 42px; font-weight: 800; margin: 10px 0; letter-spacing: -1px; }
.page_hero p { color: rgba(255,255,255,.9); max-width: 56ch; margin: 0 auto; }

.contact_listing {
  max-width: 900px;
  margin: -55px auto 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
  position: relative;
  z-index: 3;
}
.contact_listing li {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
  flex: 1;
}
.contact_listing .icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--primery);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 26px;
}
.contact_listing .lable { display: block; color: var(--text-greay); font-size: 13px; margin-bottom: 4px; }
.contact_listing li a, .contact_listing li span { font-weight: 700; font-size: 17px; }

.contact_form { padding: 0 15px; }
.contact_inner {
  max-width: 1170px;
  margin: 60px auto 0 auto;
  background: var(--light-yellow);
  padding: 70px;
  border-radius: 30px;
}
.contact_form form { max-width: 720px; margin: 0 auto; }
.contact_form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #636778;
  color: var(--black);
  height: 56px;
  padding: 10px 18px;
  background-color: #fff;
  font-family: inherit;
  font-size: 15px;
}
textarea.form-control { min-height: 140px; padding-top: 14px; }
.form-control:focus { outline: none; border-color: var(--primery); }
.contact_form form .dark_btn { border: none; cursor: pointer; font-size: 16px; }

.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid var(--primery);
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 20px;
}
.form-success.is-visible { display: flex; }

@media (max-width: 767px) {
  .contact_listing { flex-direction: column; margin-top: -30px; }
  .contact_inner { padding: 40px 24px; }
  .contact_form .form-row { grid-template-columns: 1fr; }
}


.talk_section { position: relative; overflow: hidden; padding: 30px 0 80px 0; }

.talk_fx { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.talk_grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.talk_intro { padding-top: 0; display: flex; flex-direction: column; }

.talk_heading {
  position: relative;
  z-index: 1;
  font-size: clamp(40px, 4.8vw, 58px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin: 0 0 16px 0;
  color: var(--black);
}

.talk_sub {
  font-size: 16.5px;
  color: var(--text-greay);
  max-width: 42ch;
  margin: 0 0 32px 0;
}

.talk_info_list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}
.talk_info_item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--light-greay);
}
.talk_info_item:last-child { border-bottom: none; }
.talk_info_label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--primery);
}
.talk_info_item a,
.talk_info_item span:not(.talk_info_label) {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
}
.talk_info_item a:hover { color: var(--primery); }

.talk_form_wrap {
  padding-top: 0;
  display: flex;
  flex-direction: column;
}

.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.talk_form_wrap form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.talk_field_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.talk_field { position: relative; margin-bottom: 22px; }
.talk_field input,
.talk_field select,
.talk_field textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--light-greay);
  border-radius: 0;
  background: transparent;
  padding: 12px 2px;
  font-family: inherit;
  font-size: 16px;
  color: var(--black);
  appearance: none;
  -webkit-appearance: none;
}
.talk_field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' fill='none' stroke='%23848484' stroke-width='1.6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 2px center;
}
.talk_field select:invalid { color: var(--text-greay); }
.talk_field textarea { min-height: 46px; resize: vertical; padding-top: 12px; }
.talk_field input::placeholder,
.talk_field textarea::placeholder { color: var(--text-greay); }
.talk_field input:focus,
.talk_field select:focus,
.talk_field textarea:focus {
  outline: none;
  border-bottom-color: var(--primery);
}

.talk_terms { font-size: 13.5px; color: var(--text-greay); margin: 0 0 18px 0; }
.talk_terms a { color: var(--black); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.talk_terms a:hover { color: var(--primery); }

.talk_submit {
  display: block;
  width: 100%;
  border: none;
  cursor: pointer;
  background: var(--primery);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 30px;
  border-radius: 14px;
  transition: .3s all;
  margin-top: auto;
}
.talk_submit:hover { background: #b62d2d; transform: translateY(-2px); }

.talk_form_wrap .form-success { margin-top: 24px; }

@media (max-width: 991px) {
  .talk_grid { grid-template-columns: 1fr; gap: 60px; }
  .talk_heading { text-align: center; }
  .talk_intro { text-align: center; }
  .talk_sub { margin-left: auto; margin-right: auto; }
  .talk_info_item { align-items: center; }
  .talk_form_wrap { padding-top: 10px; }
}

@media (max-width: 600px) {
  .talk_section { padding: 56px 0 80px 0; }
  .talk_heading { font-size: 40px; }
  .talk_field_row { grid-template-columns: 1fr; gap: 0; }
}


.legal_close {
  position: sticky;
  top: 16px;
  float: right;
  width: 40px;
  height: 40px;
  margin: 24px 0 -40px 0;
  border: 1px solid var(--light-greay);
  border-radius: 100px;
  background: #fff;
  color: #333;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s all;
  z-index: 5;
}
.legal_close:hover { background: var(--primery); color: #fff; border-color: var(--primery); }
html[dir="rtl"] .legal_close { float: left; }

.legal_section { padding: 70px 0 100px 0; max-width: 820px; margin: 0 auto; }
.legal_section h1 { font-size: 36px; font-weight: 800; margin-bottom: 6px; }
.legal_section .updated { color: var(--text-greay); margin-bottom: 40px; display: block; }
.legal_section h2 { font-size: 20px; font-weight: 700; color: var(--primery); margin: 34px 0 12px 0; }
.legal_section p, .legal_section li { color: #333; margin-bottom: 12px; }
.legal_section ul { padding-left: 20px; }
.legal_section li { list-style: disc; }

.legal_lang { line-height: 1.6; overflow-wrap: break-word; }
.legal_lang[hidden] { display: none; }
.legal_lang a { color: var(--primery); text-decoration: underline; }


html[dir="rtl"] body { font-family: 'Tajawal', sans-serif; }
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .about_eyebrow,
html[dir="rtl"] .title_badge { letter-spacing: 0; }
@media (min-width: 992px) {
  html[dir="rtl"] .navbar { flex-direction: row-reverse; }
  html[dir="rtl"] .navbar-brand { margin-right: 0; margin-left: auto; }
  html[dir="rtl"] .navbar-nav { flex-direction: row-reverse; }
}
@media (max-width: 991px) {
  html[dir="rtl"] .navbar-brand { margin: 0; }
}
html[dir="rtl"] .nav-item .btn_block { margin-left: 0; margin-right: 18px; }
html[dir="rtl"] .nav-lang { margin-left: 0; margin-right: 6px; }
html[dir="rtl"] .lang_menu { right: auto; left: 0; }
html[dir="rtl"] .download_features li { direction: rtl; }
html[dir="rtl"] .about_card { text-align: right; }