:root {
  --blue: #1e4dff;
  --blue-900: #071e66;
  --ink: #07142f;
  --text: #263653;
  --muted: #65728b;
  --line: #dfe7f4;
  --soft: #f6f9ff;
  --green: #16a867;
  --green-soft: #eaf8f1;
  --red-soft: #fff1f1;
  --shadow: 0 28px 80px rgba(20, 48, 103, 0.13);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 10%, rgba(30, 77, 255, 0.1), transparent 30%),
    radial-gradient(circle at 8% 24%, rgba(30, 77, 255, 0.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 46%, #ffffff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.mini-icon,
.step-icon svg,
.mini-flow i svg,
.industry-grid svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mini-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.inline-arrow {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: -4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(20px);
}

.brand,
.nav-actions,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.main-nav a {
  opacity: 0.88;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--blue);
}

.nav-actions,
.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(30, 77, 255, 0.22);
}

.btn-primary:hover {
  background: #0d3fe7;
}

.btn-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.btn-whatsapp {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.btn-big {
  min-height: 52px;
  padding: 0 24px;
}

.section-pad {
  max-width: 1280px;
  margin: 0 auto;
  padding: 68px 32px;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(560px, 1.26fr);
  gap: 34px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 42px;
}

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

.eyebrow {
  width: fit-content;
  display: inline-flex;
  border-radius: 999px;
  background: #edf4ff;
  color: var(--blue);
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin: 22px 0 22px;
  color: var(--ink);
  font-size: clamp(46px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 8px;
}

p {
  color: var(--text);
  line-height: 1.72;
}

.hero-copy p {
  max-width: 560px;
  font-size: 17px;
}

.hero-art {
  position: relative;
  transform: translateX(10px);
}

.hero-art img,
.rules-art img,
.crm-art img,
.proposal-art img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(17, 43, 94, 0.06));
}

.signal-card {
  width: min(100%, 430px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 40px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.signal-card span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 820;
}

.signal-card span::before {
  content: none;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.problem,
.steps {
  padding-top: 50px;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 28px;
  align-items: center;
}

.compare-card,
.step-card,
.industry-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 48px rgba(20, 48, 103, 0.08);
}

.compare-card {
  padding: 28px;
}

.compare-card.bad {
  background: linear-gradient(135deg, var(--red-soft), #fff);
}

.compare-card.good {
  background: linear-gradient(135deg, var(--green-soft), #fff);
}

.mini-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mini-flow span {
  min-height: 96px;
  display: grid;
  place-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 820;
}

.mini-flow i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eff5ff;
  color: var(--blue);
  font-style: normal;
}

.good .mini-flow i {
  background: var(--green-soft);
  color: var(--green);
}

.versus {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid #c5d5ff;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-weight: 950;
  box-shadow: 0 12px 32px rgba(30, 77, 255, 0.12);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  min-height: 230px;
  padding: 24px 18px;
  text-align: center;
}

.step-card b {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  transform: translateX(-50%);
}

.step-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 8px auto 16px;
  border-radius: 20px;
  background: linear-gradient(145deg, #edf4ff, #fff);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--line);
}

.step-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.industries {
  background: linear-gradient(180deg, rgba(245, 248, 255, 0), rgba(245, 248, 255, 0.72), rgba(245, 248, 255, 0));
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}

.industry-grid article {
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 16px 10px;
  text-align: center;
}

.industry-grid span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #f0f5ff;
  color: var(--blue);
  padding: 8px;
}

.industry-grid strong {
  color: var(--ink);
  font-size: 13px;
}

.rules,
.crm,
.proposal-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: center;
}

.crm {
  grid-template-columns: 0.52fr 1.48fr;
}

.proposal-section {
  grid-template-columns: 1.08fr 0.92fr;
}

.rules-copy,
.crm-copy,
.proposal-copy {
  max-width: 460px;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.benefit-strip span {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  place-items: center;
  color: var(--ink);
  text-align: center;
  font-size: 14px;
  font-weight: 850;
  padding: 0 8px;
}

.benefit-strip .mini-icon {
  width: 34px;
  height: 34px;
}

.final-cta {
  max-width: 1280px;
  margin: 34px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 58px 70px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 7% 24%, rgba(255, 255, 255, 0.18), transparent 24%),
    radial-gradient(circle at 94% 18%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(135deg, #062274, var(--blue));
  color: #fff;
  overflow: hidden;
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta p {
  margin-bottom: 0;
  opacity: 0.88;
}

.footer {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 32px 50px;
  color: var(--muted);
}

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

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer a,
.legal-card a {
  color: var(--blue);
  font-weight: 850;
}

.legal-header {
  position: relative;
}

.legal-page {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 54px 24px 80px;
}

.legal-hero {
  margin-bottom: 24px;
}

.legal-hero h1 {
  margin-bottom: 14px;
}

.legal-hero p {
  max-width: 720px;
  font-size: 18px;
}

.legal-hero small {
  color: var(--muted);
  font-weight: 760;
}

.legal-card {
  margin-top: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(20, 48, 103, 0.07);
}

.legal-card h2 {
  font-size: 24px;
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card li {
  margin: 10px 0;
  line-height: 1.65;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .rules,
  .crm,
  .proposal-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    transform: none;
  }

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

  .industry-grid,
  .benefit-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header,
  .section-pad {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand {
    font-size: 20px;
  }

  .nav-actions {
    width: 100%;
  }

  .nav-actions .btn {
    flex: 1;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 30px;
  }

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

  .hero-copy p {
    font-size: 16px;
  }

  .comparison,
  .mini-flow,
  .step-grid,
  .industry-grid,
  .benefit-strip {
    grid-template-columns: 1fr;
  }

  .signal-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .signal-card span {
    font-size: 13px;
  }

  .versus {
    margin: 0 auto;
  }

  .final-cta {
    margin: 22px 18px 0;
    display: grid;
    padding: 34px 24px;
  }

  .footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-page {
    padding: 34px 18px 64px;
  }

  .legal-card {
    padding: 22px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 34px;
  }

  .hero-actions .btn,
  .btn-big {
    width: 100%;
  }

  .nav-actions .btn {
    min-width: 0;
    padding-inline: 10px;
  }
}
