:root {
  color-scheme: light;
  --ink: #17211c;
  --muted: #5e6862;
  --soft: #eef3ef;
  --line: #dbe4de;
  --paper: #fbfcf8;
  --white: #ffffff;
  --green: #1f6f4a;
  --green-dark: #145438;
  --mint: #dff2e5;
  --gold: #f1c75b;
  --rose: #f4d9d1;
  --blue: #dbeaf7;
  --shadow: 0 20px 50px rgba(25, 39, 31, 0.12);
  font-family: "Assistant", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  direction: rtl;
  background: var(--paper);
  color: var(--ink);
  font-family: "Assistant", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 228, 222, 0.8);
  background: rgba(251, 252, 248, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.98rem;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  padding: 56px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 7px 13px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.94rem;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 8vw, 4.75rem);
  line-height: 1.04;
  letter-spacing: 0;
  max-width: 820px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: clamp(1.1rem, 3.5vw, 1.35rem);
  max-width: 720px;
  margin-bottom: 22px;
}

.roi-line {
  border-right: 4px solid var(--gold);
  padding: 10px 16px 10px 0;
  color: #3f4b44;
  font-weight: 700;
  background: linear-gradient(90deg, rgba(241, 199, 91, 0), rgba(241, 199, 91, 0.18));
  max-width: 680px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(31, 111, 74, 0.22);
}

.button-primary:hover {
  background: var(--green-dark);
}

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

.hero-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.board-title {
  font-weight: 800;
}

.board-badge {
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  padding: 5px 10px;
  font-weight: 800;
  font-size: 0.88rem;
}

.lead-board {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.lead-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: #fff;
}

.lead-row strong {
  display: block;
  line-height: 1.25;
}

.lead-row span {
  color: var(--muted);
  font-size: 0.94rem;
}

.status {
  border-radius: 999px;
  padding: 5px 10px;
  font-weight: 800;
  font-size: 0.84rem;
  white-space: nowrap;
}

.status-risk {
  background: var(--rose);
  color: #7b2f22;
}

.status-task {
  background: var(--blue);
  color: #254e6e;
}

.status-follow {
  background: var(--mint);
  color: var(--green-dark);
}

.section {
  padding: 64px 0;
}

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

.section h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: 0;
}

.section-lead {
  color: var(--muted);
  font-size: 1.14rem;
  max-width: 760px;
}

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

.info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.info-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 0 0 18px;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.step h3 {
  margin-bottom: 4px;
}

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

.pricing-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 28px;
  align-items: start;
}

.price-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
  box-shadow: var(--shadow);
}

.price {
  font-size: clamp(2rem, 8vw, 3.25rem);
  line-height: 1;
  font-weight: 900;
  margin: 10px 0 16px;
}

.risk {
  border: 1px solid rgba(31, 111, 74, 0.2);
  border-radius: 8px;
  background: var(--mint);
  color: #173d2b;
  padding: 15px;
  font-weight: 800;
}

.continuation {
  color: var(--muted);
  margin-top: 16px;
  margin-bottom: 0;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd7ce;
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(31, 111, 74, 0.18);
  border-color: var(--green);
}

.form-status {
  min-height: 24px;
  color: #8b2c1f;
  font-weight: 700;
  margin: 8px 0 0;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px 18px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  color: var(--muted);
  margin: 12px 0 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.legal-page {
  padding: 52px 0 74px;
}

.legal-content {
  max-width: 850px;
}

.legal-content h1 {
  font-size: clamp(2rem, 7vw, 3.3rem);
}

.legal-content h2 {
  margin-top: 34px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.thank-you {
  min-height: calc(100vh - 158px);
  display: grid;
  align-items: center;
  padding: 64px 0;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  left: 16px;
  bottom: 16px;
  z-index: 40;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 16px;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-inner p {
  margin-bottom: 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.button-small {
  min-height: 40px;
  padding: 8px 14px;
}

@media (max-width: 860px) {
  .hero-grid,
  .pricing-wrap,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-card {
    order: -1;
  }

  .cookie-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .button {
    flex: 1;
  }
}

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

  .cta-row .button {
    width: 100%;
  }

  .lead-row {
    grid-template-columns: 1fr;
  }

  .status {
    width: fit-content;
  }

  .section {
    padding: 48px 0;
  }
}
