:root {
  --ink: #18242b;
  --muted: #53616a;
  --cloud: #f4f8f7;
  --panel: #ffffff;
  --blue: #1477e8;
  --green: #16834b;
  --orange: #ed8428;
  --red: #db2626;
  --line: #d7e3e0;
  --shadow: 0 20px 60px rgba(24, 36, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--cloud);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.1;
  overflow-x: hidden;
}

main,
footer,
section {
  position: relative;
  max-width: 100%;
  overflow-x: hidden;
}

section {
  isolation: isolate;
  contain: paint;
}

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

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

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #ffffff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 32, 42, 0.92) 0%, rgba(16, 32, 42, 0.72) 44%, rgba(16, 32, 42, 0.24) 100%),
    linear-gradient(0deg, rgba(16, 32, 42, 0.56), rgba(16, 32, 42, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 0;
}

.brand img {  
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.24));
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 14px;
}

.language-switch a {
  min-width: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 8px 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.language-switch a[aria-current="page"] {
  color: var(--ink);
  background: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: center;
  padding-top: 0px;
}

.hero-copy {
  min-width: 0;
  max-width: 720px;
}

.hero-title-row {
  display: grid;
  grid-template-columns: clamp(132px, 15vw, 176px) minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  margin-bottom: 16px;
}

.hero-title-copy {
  min-width: 0;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--green);
}

.panel-kicker {
  color: #366092;
}

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

h1 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(38px, 6.2vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.alex-photo {
  width: 100%;
  aspect-ratio: 1;
  align-self: start;
  margin: 0;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.alex-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lede {
  max-width: 650px;
  margin-bottom: 16px;
  color: #78b7ff;
  font-size: clamp(17px, 2.2vw, 21px);
}

.benefits {
  display: grid;
  gap: 8px;
  max-width: 640px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.benefits li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

[dir="rtl"] .language-switch {
  margin-right: 14px;
  margin-left: 0;
}

[dir="rtl"] .benefits li {
  padding-right: 30px;
  padding-left: 0;
}

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

.benefits li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(237, 132, 40, 0.22);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 14px 26px rgba(237, 132, 40, 0.28);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  background: #f09034;
  box-shadow: 0 18px 34px rgba(237, 132, 40, 0.36);
}

.primary-cta {
  gap: 14px;
  padding: 10px 18px 10px 24px;
  font-size: 18px;
}

.primary-cta-copy {
  display: grid;
  gap: 3px;
  line-height: 1.1;
}

.primary-cta-sub {
  font-size: 13px;
  font-weight: 800;
  opacity: 0.88;
}

.primary-cta img {
  width: 132px;
  height: auto;
}

.compatibility {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.info-link {
  display: inline-block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.info-link:hover,
.info-link:focus-visible {
  color: #c6f4dc;
}

.signup-panel {
  align-self: end;
  margin-bottom: 24px;
  border-radius: 8px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.signup-panel h2 {
  font-size: 24px;
  line-height: 1.12;
}

.name-origin {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.role-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.role-row span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue);
  font-weight: 900;
}

.role-row:has(span:empty) {
  grid-template-columns: 1fr;
}

.role-row span:empty {
  display: none;
}

.role-row p,
.privacy-note {
  margin-bottom: 0;
  color: var(--muted);
}

.panel-cta {
  width: 100%;
  margin-top: 12px;
  font-size: 17px;
}

.whatsapp-cta {
  gap: 10px;
  margin-top: 12px;
  background: #16834b;
  box-shadow: 0 14px 26px rgba(22, 131, 75, 0.24);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
}

.whatsapp-cta:hover,
.whatsapp-cta:focus-visible {
  background: #1a9657;
  box-shadow: 0 18px 34px rgba(22, 131, 75, 0.32);
}

.privacy-note {
  margin-top: 10px;
  font-size: 13px;
}

.privacy-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
}

.privacy-note ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

[dir="rtl"] .privacy-note ul {
  padding-right: 18px;
  padding-left: 0;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
}

.proof-band,
.common-problems,
.features-section,
.screens,
.expertise,
.final-cta {
  padding: 72px 0;
}

.proof-band {
  background: #ffffff;
}

.proof-band .section-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
  align-items: start;
}

.problem-copy .eyebrow,
.common-problems .eyebrow,
.features-section .eyebrow,
.screen-copy .eyebrow,
.expertise .eyebrow {
  color: var(--green);
}

.problem-copy p:not(.eyebrow),
.solution-heading p:not(.eyebrow),
.screen-copy p:not(.eyebrow),
.quote p {
  color: var(--muted);
  font-size: 18px;
}

.why-toyra-summary,
.common-summary {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 4px solid var(--orange);
  color: var(--ink);
  font-weight: 800;
}

.why-toyra-summary strong {
  color: var(--ink);
}

.problem-list,
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.problem-list article,
.feature-list article {
  min-height: 184px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fbfdfd;
}

.problem-list article {
  min-height: 150px;
  border-left: 5px solid var(--orange);
}

.problem-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.common-problems {
  background: #eef6f3;
}

.common-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 50px;
  align-items: start;
}

.common-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.common-list li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px 16px 46px;
  background: #ffffff;
  color: var(--muted);
  font-size: 17px;
}

[dir="rtl"] .common-list li {
  padding-right: 46px;
  padding-left: 18px;
}

[dir="rtl"] .common-list li::before {
  right: 20px;
  left: auto;
}

.common-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.features-section {
  background: #ffffff;
}

.solution-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 32px;
  margin-bottom: 24px;
  border-radius: 8px;
  padding: 0 9px;
  color: #ffffff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.feature-list article:nth-child(1) .feature-icon {
  background: var(--red);
}

.feature-list article:nth-child(2) .feature-icon {
  background: var(--green);
}

.feature-list article:nth-child(3) .feature-icon {
  background: var(--orange);
}

.feature-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.screens {
  background: #f4f8f7;
}

.screens-inner {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 46px;
  align-items: center;
}

.screens-inner > *,
.phone-strip-wrap {
  min-width: 0;
}

.mode-cards {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.mode-cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
}

.mode-cards h3 {
  color: var(--ink);
}

.mode-cards ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.phone-strip {
  display: flex;
  direction: ltr;
  max-width: 100%;
  gap: 18px;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.phone-strip::-webkit-scrollbar {
  display: none;
}

.scroll-hint {
  display: none !important;
}

.phone-strip img {
  flex: 0 0 auto;
  height: var(--phone-strip-height, 520px);
  aspect-ratio: 9 / 18.8;
  border: 8px solid #101820;
  border-radius: 28px;
  object-fit: cover;
  object-position: top center;
  background: #ffffff;
  box-shadow: 0 18px 32px rgba(24, 36, 43, 0.18);
  scroll-snap-align: center;
}

.expertise {
  background: #ffffff;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.quote {
  border-left: 6px solid var(--orange);
  padding: 8px 0 8px 26px;
}

[dir="rtl"] .quote {
  border-right: 6px solid var(--orange);
  border-left: 0;
  padding: 8px 26px 8px 0;
}

.quote p {
  font-size: 22px;
}

.impact-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 19px;
}

[dir="rtl"] .impact-list {
  padding-right: 20px;
  padding-left: 0;
}

.quote .quote-credit {
  margin-bottom: 0;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
}

.final-cta {
  text-align: center;
  color: #ffffff;
  background: #22333b;
}

.final-cta h2 {
  margin-bottom: 10px;
}

.final-cta p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.final-button {
  padding: 0 28px;
  font-size: 18px;
}

.final-icon-button {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: #ffffff;
  background: transparent;
  text-decoration: none;
  box-shadow: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.final-icon-button:hover,
.final-icon-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
}

.final-icon-button svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.final-whatsapp {
  background: transparent;
  color: #1f9d58;
}

.final-email {
  background: transparent;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 16px 32px rgba(24, 36, 43, 0.22);
  font-weight: 900;
  text-decoration: none;
}

footer {
  padding: 24px 16px 84px;
  color: #718087;
  background: #22333b;
  text-align: center;
  font-size: 13px;
}

footer p {
  margin: 0 auto 6px;
  max-width: 760px;
}

footer a {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(16, 32, 42, 0.94) 0%, rgba(16, 32, 42, 0.78) 58%, rgba(16, 32, 42, 0.42) 100%),
      linear-gradient(0deg, rgba(16, 32, 42, 0.36), rgba(16, 32, 42, 0.18));
  }

  .hero-grid,
  .proof-band .section-inner,
  .screens-inner,
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
    padding-top: 52px;
  }

  .signup-panel {
    max-width: 560px;
    margin-bottom: 0;
  }

  .screens-inner {
    gap: 28px;
  }

.screen-copy {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  .hero-content {
    width: min(calc(100% - 24px), 540px);
    max-width: 100%;
    padding-bottom: 34px;
  }

  .brand img {
    width: 60px;
    height: 60px;
  }

  .hero-grid {
    padding-top: 44px;
  }

  .hero-title-row {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
  }

  .alex-photo {
    border-width: 2px;
  }

  h1 {
    font-size: 31px;
    line-height: 1.08;
    max-width: none;
  }

  .lede {
    font-size: 17px;
    max-width: 34ch;
  }

  .benefits li {
    max-width: 31ch;
    font-size: 15px;
  }

  .primary-cta {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 16px;
  }

  .signup-panel {
    padding: 22px;
    overflow: hidden;
  }

  .signup-panel h2 {
    font-size: 24px;
  }

  .role-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .role-row p,
  .compatibility {
    max-width: 31ch;
    font-size: 14px;
  }

  .role-row p {
    max-width: 25ch;
  }

  .proof-band,
  .common-problems,
  .features-section,
  .screens,
  .expertise,
  .final-cta {
    padding: 54px 0;
  }

  .problem-list,
  .feature-list,
  .common-grid {
    grid-template-columns: 1fr;
  }

  .phone-strip {
    gap: 14px;
    scroll-padding-inline: 12px;
    scroll-snap-type: x proximity;
  }

  .phone-strip-wrap {
    position: relative;
  }

  .phone-strip-wrap::before,
  .phone-strip-wrap::after {
    content: "";
    position: absolute;
    top: 42px;
    bottom: 20px;
    z-index: 2;
    width: 34px;
    pointer-events: none;
  }

  .phone-strip-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #f4f8f7, rgba(244, 248, 247, 0));
  }

  .phone-strip-wrap::after {
    right: 0;
    background: linear-gradient(270deg, #f4f8f7, rgba(244, 248, 247, 0));
  }

  .scroll-hint {
    display: block !important;
    margin: 0 0 10px;
    color: var(--green);
    font-size: 14px;
    font-weight: 900;
  }

  .phone-strip img {
    flex: 0 0 min(76vw, 300px);
    height: auto;
    scroll-snap-stop: always;
  }

  .quote {
    padding-left: 18px;
  }

  .quote p {
    font-size: 19px;
  }

  .final-actions {
    row-gap: 12px;
  }

  .final-button {
    flex: 0 1 100%;
    max-width: 320px;
  }

  .final-icon-button {
    flex: 0 0 52px;
  }

  footer p:first-child a {
    display: block;
    width: fit-content;
    margin: 8px auto 0;
  }

  .floating-cta {
    display: none;
  }
}
