:root {
  --ink: #10233f;
  --muted: #5f6f84;
  --soft: #eef4f8;
  --line: #d7e2ec;
  --blue: #0567d8;
  --blue-dark: #044e9f;
  --green: #1f9f70;
  --mint: #e8f8ef;
  --amber: #b47500;
  --amber-soft: #fff5dc;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(26, 54, 84, 0.12);
  --panel: #eaf3ff;
  --panel-soft: #f0f6fb;
  --navy: #101d2d;
  --tier-free-fg: #1f9f70;
  --tier-free-bg: #e8f8ef;
  --tier-trial-fg: #b47500;
  --tier-trial-bg: #fff5dc;
  --tier-starter-fg: #0567d8;
  --tier-starter-bg: #eaf3ff;
  --tier-pro-fg: #6b3fd8;
  --tier-pro-bg: #f0eaff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fbfcfe;
}

a {
  color: var(--blue);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(16, 35, 63, 0.04);
}

.brand,
.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 0.86rem;
  box-shadow: 0 6px 16px rgba(5, 103, 216, 0.28);
}

.site-nav {
  gap: 22px;
  font-size: 0.95rem;
}

.site-nav a,
.site-footer a {
  color: var(--ink);
  text-decoration: none;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: var(--blue) !important;
  font-weight: 700;
}

.lang-switch {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted) !important;
  font-size: 0.82rem;
  font-weight: 700;
}

.section,
.content-page {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.hero-section,
.split-section,
.about-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
  min-height: calc(100vh - 72px);
  padding-top: 56px;
  padding-bottom: 72px;
  background:
    radial-gradient(46% 70% at 18% 30%, rgba(5, 103, 216, 0.10), transparent 60%),
    radial-gradient(38% 60% at 88% 20%, rgba(31, 159, 112, 0.08), transparent 65%),
    linear-gradient(180deg, #eef5fc, transparent 75%);
}

.hero-copy {
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
}

h1 {
  max-width: 1180px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero-section--compact {
  min-height: auto;
  padding-top: 36px;
  padding-bottom: 52px;
}

.hero-section--compact h1,
.hero-section--compact h2 {
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.page-customer-story .section,
.page-customer-story .split-section {
  padding-top: 52px;
  padding-bottom: 52px;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.005em;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #384358;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(5, 103, 216, 0.28);
}

.button-secondary {
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.trust-pill--blue {
  color: var(--blue-dark);
  background: var(--panel);
}

.trust-pill--green {
  color: #0b6d48;
  background: var(--mint);
}

.trust-pill--amber {
  color: #65440a;
  background: var(--amber-soft);
}

.product-screenshot-frame {
  overflow: hidden;
  margin: 0;
  border: 1px solid #cbd9e6;
  border-radius: 14px;
  background: var(--white);
  box-shadow:
    0 30px 60px rgba(5, 103, 216, 0.20),
    0 12px 30px rgba(16, 35, 63, 0.10),
    0 0 80px rgba(5, 103, 216, 0.12);
}

.product-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.product-visual {
  overflow: hidden;
  border: 1px solid #cbd9e6;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  background: #e9eef4;
  border-bottom: 1px solid #d4dee8;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #92a3b5;
}

.app-preview {
  display: grid;
  grid-template-columns: 126px 1fr;
  min-height: 410px;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 18px;
  color: #38506c;
  background: #f4f8fb;
  border-right: 1px solid #dce7f0;
}

.preview-sidebar strong {
  color: var(--ink);
}

.preview-sidebar span {
  font-size: 0.9rem;
}

.preview-main {
  padding: 28px;
}

.preview-title-row,
.preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.preview-title-row small {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
}

.preview-title-row h2 {
  margin-top: 8px;
  font-size: 2rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #0b6d48;
  background: var(--mint);
  font-size: 0.82rem;
  font-weight: 800;
}

.preview-field,
.preview-grid div {
  height: 48px;
  margin-top: 24px;
  border: 1px solid #cad8e5;
  border-radius: 8px;
  background: linear-gradient(90deg, #f7fafc, #eef6fb);
}

.preview-field-short {
  width: 72%;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.preview-footer {
  margin-top: 28px;
  padding: 18px;
  border-radius: 8px;
  background: #f8fbfd;
}

.preview-footer span {
  color: var(--green);
  font-weight: 800;
}

.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading p {
  color: #384358;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.6;
}

.feature-grid,
.security-grid,
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.included-panel {
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid #cfe0ee;
  border-radius: 10px;
  background: #f7fbff;
}

.included-panel h3 {
  margin-bottom: 18px;
}

.included-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding-left: 20px;
}

.included-panel li {
  color: var(--muted);
  line-height: 1.55;
}

.included-panel strong {
  color: var(--ink);
}

.feature-card,
.security-grid article,
.plan-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(16, 35, 63, 0.05);
}

.feature-card p,
.security-grid p,
.plan-card p,
.plan-card li,
.about-section p,
.content-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.58;
}

.feature-card {
  border-top: 4px solid var(--blue);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 10px;
  color: var(--blue-dark);
  background: linear-gradient(135deg, var(--panel), var(--mint));
  font-weight: 900;
  font-size: 0.95rem;
}

.security-grid article {
  border-top: 4px solid var(--green);
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 42px;
  padding-top: 78px;
  padding-bottom: 78px;
  background: var(--panel-soft);
}

.strength-list {
  display: grid;
  gap: 18px;
}

.strength-list div {
  padding: 22px 0 22px 24px;
  border-left: 4px solid var(--green);
  background: var(--white);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 4px 14px rgba(16, 35, 63, 0.05);
  padding-right: 22px;
}

.strength-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.plan-code {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--panel);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

[data-tier="free"] .plan-code {
  color: var(--tier-free-fg);
  background: var(--tier-free-bg);
}

[data-tier="trial"] .plan-code {
  color: var(--tier-trial-fg);
  background: var(--tier-trial-bg);
}

[data-tier="starter"] .plan-code {
  color: var(--tier-starter-fg);
  background: var(--tier-starter-bg);
}

[data-tier="pro"] .plan-code {
  color: var(--tier-pro-fg);
  background: var(--tier-pro-bg);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 4px 0 6px;
}

.plan-price strong {
  color: var(--blue-dark);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.plan-price span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.plan-discount {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
}

.plan-card-featured {
  padding-top: 28px;
  border-color: #8dbcf4;
  box-shadow: 0 20px 44px rgba(5, 103, 216, 0.18);
}

.plan-card-featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 5px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 10px 10px 0 0;
}

.plan-ribbon {
  position: absolute;
  top: -14px;
  right: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(5, 103, 216, 0.4);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 20px;
}

.pro-features-panel {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #f7faff, var(--white));
  box-shadow: 0 4px 14px rgba(16, 35, 63, 0.05);
}

.pro-features-panel > h3 {
  margin: 0 0 6px;
  color: var(--blue-dark);
  font-size: 1.3rem;
}

.pro-features-panel > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.98rem;
}

.pro-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pro-features-grid article {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pro-features-grid h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
}

.pro-features-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.plans-cta {
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid #e4c983;
  border-radius: 10px;
  background: var(--amber-soft);
}

.install-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 30px 34px;
  border: 1px solid #e4c983;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff7e0, var(--amber-soft));
  box-shadow: 0 12px 30px rgba(180, 117, 0, 0.10);
}

.install-cta__body {
  min-width: 0;
}

.install-cta__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--amber);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.install-cta h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.install-cta p {
  margin: 0;
  color: #65440a;
  line-height: 1.6;
}

.install-cta .button-primary {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .install-cta {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

.plans-cta p {
  margin: 0;
  color: #65440a;
  font-weight: 700;
}

.about-section {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 44px;
  padding-top: 78px;
  padding-bottom: 78px;
  background: var(--navy);
  color: var(--white);
}

.about-section .eyebrow {
  color: #74b3f3;
}

.about-section h2 {
  color: var(--white);
}

.about-section p {
  margin: 0;
  color: #b7c8d8;
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 32px 40px;
  background: var(--navy);
  color: var(--white);
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer span {
  color: #b7c8d8;
}

.site-footer nav {
  gap: 20px;
}

.site-footer a {
  color: #eaf3fa;
}

.content-page {
  min-height: calc(100vh - 174px);
  padding: 78px 0;
}

.content-page h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.content-page > p {
  max-width: 780px;
  font-size: 1.08rem;
}

.contact-panel {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin: 30px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(16, 35, 63, 0.06);
}

.contact-panel span {
  color: var(--muted);
  font-weight: 800;
}

.contact-panel a {
  font-size: 1.4rem;
  font-weight: 900;
}

.legal-page h2 {
  margin: 34px 0 10px;
  font-size: 1.4rem;
}

@media (max-width: 980px) {
  .site-header,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .site-header,
  .site-footer,
  .hero-section,
  .split-section,
  .about-section {
    align-items: flex-start;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    justify-content: center;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero-section,
  .split-section,
  .about-section {
    grid-template-columns: 1fr;
  }

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

  .feature-grid,
  .security-grid,
  .plans-grid,
  .included-panel ul,
  .pro-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section,
  .content-page {
    width: min(100vw - 28px, 1180px);
  }

  .hero-section,
  .split-section,
  .about-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-nav {
    gap: 14px;
  }

  h1 {
    font-size: 2.65rem;
  }

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

  .preview-sidebar {
    display: none;
  }

  .preview-title-row,
  .preview-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-grid,
  .feature-grid,
  .security-grid,
  .plans-grid,
  .included-panel ul,
  .pro-features-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel a {
    font-size: 1.05rem;
  }
}

[dir="rtl"] body {
  font-family: "Segoe UI", "Arial Hebrew", Arial, "Helvetica Neue", sans-serif;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] .eyebrow,
[dir="rtl"] .plan-code,
[dir="rtl"] .preview-title-row small {
  letter-spacing: 0;
}

[dir="rtl"] .strength-list div {
  padding: 22px 24px 22px 22px;
  border-left: none;
  border-right: 4px solid var(--green);
  border-radius: 10px 0 0 10px;
}

[dir="rtl"] .preview-sidebar {
  border-right: none;
  border-left: 1px solid #dce7f0;
}

[dir="rtl"] .included-panel ul,
[dir="rtl"] .plan-card ul {
  padding-left: 0;
  padding-right: 20px;
}

[dir="rtl"] .plan-ribbon {
  right: auto;
  left: 18px;
}

.brand-logo {
  display: block;
  height: 100px;
  width: auto;
  max-width: none;
}

@media (max-width: 640px) {
  .brand-logo {
    height: 62px;
  }
}