:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #53615f;
  --line: #d9e2e0;
  --paper: #f7faf9;
  --panel: #ffffff;
  --teal: #0f766e;
  --teal-dark: #073f3c;
  --cyan: #22c6cf;
  --violet: #5b45d6;
  --coral: #c2413b;
  --gold: #d99a21;
  --shadow: 0 18px 56px rgba(21, 35, 33, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 16, 15, 0.78), rgba(5, 16, 15, 0));
}

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

.brand {
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  font-size: 24px;
  line-height: 1;
}

.nav {
  gap: clamp(14px, 3vw, 28px);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #101a19;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 64% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 18, 17, 0.94) 0%, rgba(6, 18, 17, 0.78) 39%, rgba(6, 18, 17, 0.10) 76%),
    linear-gradient(0deg, rgba(6, 18, 17, 0.38), rgba(6, 18, 17, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 88px);
  padding-top: 72px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 6.8vw, 6.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 16px 0 10px;
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 660px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.button.primary {
  background: var(--coral);
  color: #fff;
}

.button.primary:hover {
  background: #a93631;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button.outline {
  border-color: var(--line);
  color: var(--teal-dark);
  background: #fff;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.84fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: center;
}

.section-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.stat-row span {
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}

.stat-row strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.7rem;
  line-height: 1.1;
}

.feature-visual {
  display: grid;
  min-height: 340px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 198, 207, 0.13), rgba(91, 69, 214, 0.12)),
    #fff;
  box-shadow: var(--shadow);
}

.feature-visual img {
  width: min(270px, 70%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 36px;
}

.section-heading .eyebrow {
  align-self: start;
}

.card-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 26px rgba(23, 48, 45, 0.06);
}

.card {
  min-height: 330px;
  padding: 28px;
}

.card img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.card p,
.price-card p,
.contact-panel p {
  color: var(--muted);
}

.ir-band {
  background: var(--teal-dark);
  color: #fff;
}

.ir-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 112px) 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(32px, 7vw, 92px);
}

.ir-content p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.steps-list {
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.steps-list li {
  position: relative;
  min-height: 72px;
  padding: 0 0 28px 66px;
  color: rgba(255, 255, 255, 0.86);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.steps-list li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.steps-list li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: -22px;
  top: -5px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--teal-dark);
  font-weight: 900;
}

.situations-section {
  padding-bottom: clamp(32px, 5vw, 72px);
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pill-grid span {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 20px;
  border-left: 6px solid var(--cyan);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(23, 48, 45, 0.06);
  font-weight: 800;
}

.anti-scam-section {
  padding-top: clamp(42px, 6vw, 86px);
}

.anti-scam-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: stretch;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(91, 69, 214, 0.09)),
    #fff;
  box-shadow: var(--shadow);
}

.anti-scam-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.anti-scam-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-dark);
  font-weight: 800;
}

.anti-scam-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(34, 198, 207, 0.16);
}

.partner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-height: 100%;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 8px;
  background: var(--teal-dark);
  color: #fff;
}

.partner-box span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-box strong {
  display: block;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
}

.partner-box p {
  color: rgba(255, 255, 255, 0.82);
}

.partner-box .button {
  align-self: flex-start;
}

.pricing-section {
  padding-top: clamp(48px, 7vw, 86px);
}

.price-card {
  min-height: 245px;
  padding: 28px;
}

.price-card.highlighted {
  border-color: rgba(194, 65, 59, 0.45);
  box-shadow: 0 18px 42px rgba(194, 65, 59, 0.12);
}

.plan-name {
  display: block;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin: 12px 0 18px;
  color: var(--violet);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.contact-section {
  padding-bottom: clamp(80px, 10vw, 140px);
}

.contact-panel {
  max-width: 900px;
  padding: clamp(30px, 6vw, 56px);
  border-left: 8px solid var(--coral);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-panel p {
  max-width: 740px;
  margin-top: 20px;
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 940px) {
  .nav {
    display: none;
  }

  .split-section,
  .section-heading,
  .ir-content,
  .anti-scam-panel {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .pricing-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
  }

  .hero {
    min-height: 94svh;
    align-items: end;
  }

  .hero-image {
    object-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(6, 18, 17, 0.96) 0%, rgba(6, 18, 17, 0.70) 56%, rgba(6, 18, 17, 0.10) 100%),
      linear-gradient(90deg, rgba(6, 18, 17, 0.30), rgba(6, 18, 17, 0.04));
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 120px 0 54px;
  }

  h1 {
    font-size: clamp(2.45rem, 12.5vw, 4.4rem);
  }

  .pill-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions,
  .button {
    width: 100%;
  }

  .feature-visual {
    min-height: 260px;
  }

  .card,
  .price-card {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
  }
}
