:root {
  --purple: #6f2cf4;
  --purple-dark: #5320c7;
  --purple-soft: #f3edff;
  --green: #27b88a;
  --green-dark: #168365;
  --green-soft: #e9faf4;
  --ink: #102c32;
  --muted: #66777b;
  --line: #e8edec;
  --white: #ffffff;
  --surface: #fbfdfc;
  --shadow: 0 22px 65px rgba(25, 31, 52, 0.12);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body[dir="rtl"] {
  font-family: Tahoma, Arial, sans-serif;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 13px 28px rgba(111, 44, 244, 0.23);
}

.button-outline {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--green);
}

.button-white {
  color: var(--purple-dark);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(23, 11, 77, 0.18);
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(232, 237, 236, 0.82);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(15px);
}

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

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 151px;
  height: 54px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-inline-start: auto;
}

.main-nav a {
  position: relative;
  padding-block: 28px;
  color: #263c40;
  font-size: 0.94rem;
  font-weight: 750;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--purple);
}

.main-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 3px;
  border-radius: 20px;
  background: var(--purple);
  content: "";
}

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

.nav-cta {
  min-height: 46px;
  padding: 10px 18px;
  font-size: 0.89rem;
}

.language-switcher {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.language-button {
  padding: 8px 9px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 900;
}

.language-button.active {
  color: var(--purple);
  background: var(--purple-soft);
}

.menu-button {
  display: none;
  width: 45px;
  height: 45px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 11px;
  background: var(--purple-soft);
}

.menu-button span {
  width: 22px;
  height: 2px;
  border-radius: 4px;
  background: var(--purple);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 84px;
  background:
    radial-gradient(circle at 5% 15%, rgba(111, 44, 244, 0.08), transparent 27%),
    radial-gradient(circle at 96% 92%, rgba(39, 184, 138, 0.12), transparent 24%),
    #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 58px;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 100px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.location-pill span:first-child {
  font-size: 0.6rem;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 21px 0 22px;
  font-size: clamp(3rem, 5.55vw, 5.25rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.hero-copy h1 span {
  color: var(--purple);
}

.hero-description {
  max-width: 620px;
  margin: 0 0 31px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 37px;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.feature-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 1.15rem;
  font-weight: 900;
}

.hero-feature strong,
.hero-feature span {
  display: block;
}

.hero-feature strong {
  margin-top: 1px;
  font-size: 0.91rem;
  line-height: 1.25;
}

.hero-feature span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.3;
}

.hero-visual {
  position: relative;
  min-height: 575px;
}

.hero-photo-wrap {
  position: absolute;
  inset: 0 0 0 58px;
  overflow: hidden;
  border-radius: 170px 0 0 170px;
  background: var(--purple-soft);
  box-shadow: var(--shadow);
}

body[dir="rtl"] .hero-photo-wrap {
  inset: 0 58px 0 0;
  border-radius: 0 170px 170px 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.045);
}

.phone-mockup {
  position: absolute;
  z-index: 2;
  right: -16px;
  bottom: -77px;
  width: 245px;
  height: 505px;
  overflow: hidden;
  padding: 13px 8px 9px;
  border: 8px solid #11151c;
  border-radius: 39px;
  background: #11151c;
  box-shadow: 0 25px 60px rgba(18, 19, 34, 0.34);
}

body[dir="rtl"] .phone-mockup {
  right: auto;
  left: -16px;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 6px;
  left: 50%;
  width: 78px;
  height: 18px;
  border-radius: 0 0 12px 12px;
  background: #11151c;
  transform: translateX(-50%);
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
  object-position: top;
}

.hero-bubble {
  position: absolute;
  z-index: 4;
  right: 150px;
  bottom: 24px;
  display: flex;
  max-width: 290px;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 15px 44px rgba(29, 34, 55, 0.16);
  backdrop-filter: blur(12px);
}

body[dir="rtl"] .hero-bubble {
  right: auto;
  left: 150px;
}

.bubble-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 1.1rem;
  font-weight: 900;
}

.hero-bubble strong,
.hero-bubble small {
  display: block;
}

.hero-bubble strong {
  font-size: 0.9rem;
}

.hero-bubble small {
  margin-top: 2px;
  color: var(--muted);
  line-height: 1.3;
}

/* TRUST STRIP */

.trust-strip {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #f9fbff, #f6fffb);
}

.trust-strip-grid {
  display: grid;
  min-height: 132px;
  grid-template-columns: 1.7fr 0.65fr 0.65fr;
  align-items: center;
}

.community-proof,
.trust-stat {
  min-height: 132px;
  padding: 25px 31px;
  border-inline-end: 1px solid var(--line);
}

.trust-stat:last-child {
  border-inline-end: 0;
}

.community-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.community-proof strong,
.community-proof span {
  display: block;
}

.community-proof strong {
  color: var(--purple);
  font-size: 0.98rem;
}

.community-proof span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.87rem;
}

.avatar-stack {
  display: flex;
  flex: 0 0 auto;
  padding-inline-start: 13px;
}

.avatar {
  width: 43px;
  height: 43px;
  margin-inline-start: -13px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  box-shadow: 0 5px 16px rgba(23, 32, 48, 0.15);
}

.avatar-one {
  background-image: url("avatar-1.png");
}

.avatar-two {
  background-image: url("avatar-2.png");
}

.avatar-three {
  background-image: url("avatar-3.png");
}

.avatar-four {
  background-image: url("avatar-4.png");
}

.avatar-five {
  background-image: url("avatar-5.png");
}

.trust-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-stat strong {
  color: var(--purple);
  font-size: 2rem;
  line-height: 1;
}

.trust-stat span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* SHARED SECTIONS */

.section {
  padding: 93px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 45px;
}

.centered-heading {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-heading h2 span {
  color: var(--purple);
}

.section-heading > p:last-child {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1rem;
}

/* HOW IT WORKS */

.how-section {
  background: var(--white);
}

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

.step-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 13px 42px rgba(24, 37, 48, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(24, 37, 48, 0.12);
}

.step-card > img {
  width: 100%;
  height: 212px;
  object-fit: cover;
}

.step-content {
  position: relative;
  min-height: 202px;
  padding: 28px 22px 23px;
}

.step-number {
  position: absolute;
  top: -24px;
  left: 20px;
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 5px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--purple);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(111, 44, 244, 0.25);
}

body[dir="rtl"] .step-number {
  right: 20px;
  left: auto;
}

.step-content h3 {
  margin: 8px 0 10px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.step-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.center-action {
  margin-top: 38px;
  text-align: center;
}

/* VOICES */

.voices-section {
  background:
    radial-gradient(circle at 6% 10%, rgba(39, 184, 138, 0.07), transparent 24%),
    linear-gradient(180deg, #fbf9ff, #fff);
}

.voice-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voice-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 15px 46px rgba(23, 34, 46, 0.08);
}

.voice-card > img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.voice-body {
  position: relative;
  min-height: 235px;
  padding: 25px 24px 23px;
}

.quote-mark {
  position: absolute;
  top: 7px;
  right: 18px;
  color: var(--purple-soft);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}

body[dir="rtl"] .quote-mark {
  right: auto;
  left: 18px;
}

.voice-body p {
  position: relative;
  min-height: 100px;
  margin: 0 0 20px;
  color: #34484c;
}

.voice-body strong,
.voice-body small {
  display: block;
}

.voice-body strong {
  color: var(--purple);
  font-size: 0.91rem;
}

.voice-body small {
  margin-top: 4px;
  color: var(--muted);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d9dce1;
}

.carousel-dot.active {
  width: 28px;
  border-radius: 20px;
  background: var(--purple);
}

/* REQUEST CTA */

.request-section {
  padding: 10px 0 75px;
  background: #fff;
}

.request-banner {
  position: relative;
  display: grid;
  min-height: 170px;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 25px 35px;
  border-radius: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 15%, rgba(39, 184, 138, 0.3), transparent 25%),
    linear-gradient(135deg, var(--purple-dark), var(--purple));
  box-shadow: 0 20px 50px rgba(80, 32, 195, 0.23);
}

.request-phone {
  align-self: end;
  width: 130px;
  height: 255px;
  overflow: hidden;
  margin-bottom: -40px;
  padding: 7px;
  border: 1px solid #10141c;
  border-radius: 25px;
  background: #10141c;
  transform: rotate(5deg);
  box-shadow: 0 18px 38px rgba(20, 12, 62, 0.35);
}

.request-phone img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  object-position: top;
}

.request-copy {
  position: relative;
  z-index: 2;
}

.request-copy h2 {
  margin: 0 0 7px;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.16;
}

.request-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

/* FOOTER */

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.85fr 1fr;
  gap: 44px;
  padding: 58px 0 38px;
}

.footer-brand > img {
  width: 158px;
  height: 57px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 340px;
  margin: 17px 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--purple);
  font-weight: 900;
}

.footer-column h3 {
  margin: 0 0 16px;
  font-size: 1rem;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.footer-column a:hover {
  color: var(--purple);
}

.footer-bottom {
  padding: 21px 0 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

/* RTL */

body[dir="rtl"] .main-nav {
  margin-right: auto;
  margin-left: 0;
}

body[dir="rtl"] .request-phone {
  transform: rotate(-5deg);
}

/* RESPONSIVE */

@media (max-width: 1040px) {
  .menu-button {
    display: flex;
    margin-inline-start: auto;
  }

  .nav-shell {
    flex-wrap: wrap;
    gap: 12px;
    padding: 13px 0;
  }

  .main-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding-top: 8px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 3px;
    border-top: 1px solid var(--line);
  }

  .main-nav a.active::after {
    display: none;
  }

  .nav-actions {
    order: 4;
    display: none;
    width: 100%;
    justify-content: space-between;
    padding: 5px 0 8px;
  }

  .nav-actions.open {
    display: flex;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 610px;
  }

  .hero-photo-wrap {
    inset: 0 50px 0 0;
    border-radius: 0 150px 150px 0;
  }

  body[dir="rtl"] .hero-photo-wrap {
    inset: 0 0 0 50px;
    border-radius: 150px 0 0 150px;
  }

  .trust-strip-grid {
    grid-template-columns: 1.5fr 0.75fr 0.75fr;
  }

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

  .voice-track {
    grid-template-columns: 1fr;
  }

  .voice-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .voice-card > img {
    height: 100%;
    min-height: 270px;
  }

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

@media (max-width: 720px) {
  :root {
    --container: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 132px;
  }

  .nav-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-cta {
    width: 100%;
  }

  .language-switcher {
    align-self: flex-start;
  }

  .hero {
    padding: 50px 0 70px;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 510px;
  }

  .hero-photo-wrap {
    inset: 0;
    border-radius: 32px;
  }

  body[dir="rtl"] .hero-photo-wrap {
    inset: 0;
    border-radius: 32px;
  }

  .phone-mockup {
    right: 10px;
    bottom: -35px;
    width: 185px;
    height: 385px;
  }

  body[dir="rtl"] .phone-mockup {
    right: auto;
    left: 10px;
  }

  .hero-bubble {
    right: auto;
    bottom: 15px;
    left: 14px;
    max-width: 215px;
  }

  body[dir="rtl"] .hero-bubble {
    right: 14px;
    left: auto;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .community-proof,
  .trust-stat {
    min-height: auto;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-stat:last-child {
    border-bottom: 0;
  }

  .community-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 70px 0;
  }

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

  .voice-card {
    display: block;
  }

  .voice-card > img {
    height: 210px;
    min-height: auto;
  }

  .request-banner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 31px 24px;
  }

  .request-phone {
    display: none;
  }

  .request-banner .button {
    width: 100%;
  }

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