:root {
  --color-primary: #1e63ff;
  --color-primary-soft: #e7efff;
  --color-background: #ffffff;
  --color-surface: #f6f8fc;
  --color-text: #0d1b2a;
  --color-muted: #516079;
  --color-border: #dbe3f2;
  --font-base: "Inter", system-ui, -apple-system, sans-serif;
  --radius-large: 24px;
  --radius-medium: 16px;
  --radius-small: 10px;
  --shadow-soft: 0 18px 60px rgba(16, 38, 85, 0.1);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  margin: 0 0 0.8em;
  line-height: 1.2;
  font-weight: 700;
}

p {
  margin: 0 0 1.2em;
  color: var(--color-muted);
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

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

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.hero {
  background: linear-gradient(180deg, rgba(231, 239, 255, 0.65) 0%, #f9fbff 80%);
  padding: 6rem 0 5rem;
  text-align: center;
}

.hero__content {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(30, 99, 255, 0.08);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  max-width: 16ch;
}

.lead {
  max-width: 52ch;
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  background: #104ed6;
}

.btn--ghost {
  border: 1.5px solid rgba(30, 99, 255, 0.6);
  color: var(--color-primary);
  background: #fff;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  background: rgba(30, 99, 255, 0.08);
}

.section {
  padding: 5rem 0;
}

.section--tint {
  background: var(--color-surface);
}

.section--cta {
  text-align: center;
}

.section__split {
  display: grid;
  gap: 3rem;
}

.section__text h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.section__illustration {
  display: grid;
  place-items: center;
  position: relative;
  min-height: 280px;
}

.card-icon {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-primary);
  background: #fff;
  border: 2px solid var(--color-primary-soft);
  box-shadow: 0 12px 30px rgba(16, 38, 85, 0.08);
}

.icon--check {
  color: #168821;
  border-color: #b6f3c2;
}

.icon--currency {
  color: #104ed6;
}

.card-figure {
  position: relative;
  width: min(240px, 60vw);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-large);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 40px rgba(13, 27, 42, 0.12);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2.5rem;
}

.figure-head {
  position: absolute;
  top: 28%;
  width: 70px;
  height: 70px;
  background: #ffe7d4;
  border-radius: 50%;
  border: 4px solid #101320;
}

.figure-arm {
  position: absolute;
  width: 130px;
  height: 70px;
  top: 48%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 36px 36px 0 0;
  background: #fff;
  border: 5px solid #101320;
  border-bottom: none;
}

.figure-laptop {
  position: absolute;
  bottom: 28%;
  width: 140px;
  height: 70px;
  border-radius: 12px;
  background: var(--color-primary-soft);
  border: 2px solid var(--color-primary);
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  margin-top: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-grid li {
  background: #fff;
  border-radius: var(--radius-medium);
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(16, 38, 85, 0.06);
  box-shadow: 0 14px 40px rgba(16, 38, 85, 0.08);
  display: grid;
  gap: 1rem;
  align-content: start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(30, 99, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.55rem;
}

.list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.list--bullets li {
  position: relative;
  padding-left: 1.6rem;
}

.list--bullets li::before {
  content: "•";
  position: absolute;
  left: 0.2rem;
  color: var(--color-primary);
  font-size: 1.4rem;
  line-height: 1;
}

.steps {
  list-style: none;
  display: grid;
  gap: 1.6rem;
  margin-top: 2.5rem;
}

.steps li {
  display: grid;
  gap: 1rem;
  align-items: start;
  grid-template-columns: auto 1fr;
  background: #fff;
  border-radius: var(--radius-medium);
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(16, 38, 85, 0.06);
  box-shadow: 0 12px 34px rgba(16, 38, 85, 0.08);
}

.steps__number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
}

.section__cta {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  background: linear-gradient(120deg, rgba(30, 99, 255, 0.12), rgba(30, 99, 255, 0.02));
  padding: 3.5rem 2.5rem;
  border-radius: var(--radius-large);
  border: 1px solid rgba(30, 99, 255, 0.18);
  box-shadow: var(--shadow-soft);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer {
  padding: 2.5rem 0;
  background: #f2f4f9;
}

.footer small {
  display: block;
  text-align: center;
  color: var(--color-muted);
}

@media (min-width: 768px) {
  .section__split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .hero__content {
    gap: 1.8rem;
  }

  .lead {
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

