﻿:root {
  --bg-page: #f4f8ff;
  --bg-soft: #eef4ff;
  --bg-card: #ffffff;
  --bg-hero: radial-gradient(circle at 15% 20%, #e9fff8 0%, rgba(233, 255, 248, 0) 42%), radial-gradient(circle at 85% 10%, #dfeaff 0%, rgba(223, 234, 255, 0) 45%), linear-gradient(170deg, #f7fbff 0%, #eef6ff 100%);
  --text-strong: #10213f;
  --text-body: #3f516d;
  --text-muted: #5e7091;
  --primary: #0f7a6b;
  --primary-hover: #0c6357;
  --accent: #1f62e6;
  --accent-soft: #e5efff;
  --border: #d6e1f2;
  --border-strong: #bfcee8;
  --shadow-soft: 0 10px 30px rgba(18, 36, 67, 0.08);
  --shadow-card: 0 18px 40px rgba(16, 33, 63, 0.1);
  --radius-card: 18px;
  --radius-pill: 999px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text-strong);
  background: linear-gradient(180deg, #fcfdff 0%, var(--bg-page) 100%);
  line-height: 1.62;
}

a {
  color: inherit;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 4.2rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #f4f8ff 0%, #edf4ff 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
}

.header-wrap {
  display: flex;
  min-height: 4.9rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(10rem, 48vw, 13.125rem);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.hero {
  padding-top: 5rem;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--bg-hero);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-bg::before {
  width: 16rem;
  height: 16rem;
  right: -4rem;
  top: 1rem;
  background: rgba(32, 135, 255, 0.13);
}

.hero-bg::after {
  width: 14rem;
  height: 14rem;
  left: -3rem;
  bottom: 0;
  background: rgba(15, 122, 107, 0.12);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid #b5ded6;
  border-radius: var(--radius-pill);
  background: #ebfaf6;
  color: #0c6358;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.2;
  color: var(--text-strong);
}

h1 {
  font-size: clamp(2rem, 5.2vw, 3.45rem);
  max-width: 17ch;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.48rem, 3.1vw, 2.28rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.12rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-body);
}

.lead {
  font-size: clamp(1.02rem, 2.4vw, 1.17rem);
  max-width: 62ch;
}

.feature-list,
.check-list {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  margin-bottom: 0.62rem;
  padding-left: 1.5rem;
  color: var(--text-body);
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #229f86 0%, #1559d3 100%);
}

.microcopy,
.closing {
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -0.75rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(16, 122, 107, 0.2), rgba(31, 98, 230, 0.22));
  z-index: -1;
  filter: blur(1px);
}

.hero-media img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #c5d4ea;
  box-shadow: var(--shadow-card);
}

.grid {
  display: grid;
  gap: 1rem;
}

.cards-2,
.cards-3 {
  grid-template-columns: 1fr;
}

.card,
.faq-item,
.offer-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.card h3,
.faq-item h3 {
  margin-bottom: 0.5rem;
}

.card p,
.faq-item p {
  margin: 0;
  color: var(--text-body);
}

.card-pain {
  border-left: 4px solid #6f8fdc;
}

.card-step {
  padding-top: 2.2rem;
}

.card-step::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 0.95rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--accent);
}

.section-deliverables .cards-3 {
  gap: 1.2rem;
}

.card-deliverable {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-color: var(--border-strong);
  padding-top: 1.05rem;
}

.card-tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.23rem 0.62rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: #1847a6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.card-benefit {
  padding-left: 2.2rem;
}

.card-benefit::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.28rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 2px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #0f7a6b 0%, #2168e9 100%);
}

.card-prompt {
  border-style: dashed;
  border-width: 1px;
  border-color: #b7c8e4;
  background: #f9fbff;
  padding-left: 2rem;
}

.card-prompt::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #2168e9;
}

.section-prompts .closing {
  margin-top: 1rem;
}

.offer {
  background: linear-gradient(180deg, #ecf5ff 0%, #e2f0ff 100%);
}

.offer-wrap {
  max-width: 780px;
}

.offer-card {
  padding: 1.25rem;
  border: 1px solid #afc4e7;
  box-shadow: 0 24px 50px rgba(17, 46, 90, 0.16);
  background: linear-gradient(175deg, #ffffff 0%, #f5f9ff 100%);
}

.offer-layout {
  display: grid;
  gap: 1.25rem;
}

.offer-main {
  border: 1px solid #d5e1f3;
  border-radius: 14px;
  background: #ffffff;
  padding: 1rem;
}

.offer-action {
  border: 1px solid #cfdcf0;
  border-radius: 14px;
  background: #f8fbff;
  padding: 1rem;
}

.offer-name {
  margin-bottom: 0.25rem;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-strong);
}

.offer-items {
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
}

.offer-price {
  margin: 0;
  line-height: 1;
  font-size: clamp(2.4rem, 8vw, 4.25rem);
  font-weight: 800;
  color: #0a5a50;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 20px rgba(10, 90, 80, 0.14);
}

.offer .feature-list {
  margin-bottom: 1.05rem;
}

.btn-offer {
  width: 100%;
  min-height: 56px;
  padding: 0.95rem 1.35rem;
  font-size: 1rem;
  box-shadow: 0 14px 24px rgba(12, 99, 87, 0.22);
}

.section-security .card-trust {
  text-align: center;
  background: #ffffff;
  border: 1px solid #cad7eb;
}

.section-security .card-trust p {
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding-top: 1.1rem;
}

.cta-final {
  background: linear-gradient(150deg, #0f7a6b 0%, #1c57bc 100%);
  color: #ffffff;
  text-align: center;
}

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

.cta-final p {
  opacity: 0.93;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.82rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(12, 99, 87, 0.2);
}

.btn-small {
  min-height: 44px;
  padding: 0.62rem 0.88rem;
  font-size: 0.86rem;
  white-space: nowrap;
}

.cta-text-desktop {
  display: none;
}

.cta-text-mobile {
  display: inline;
}

.cta-final .btn {
  background: #ffffff;
  color: #0d3a79;
}

.cta-final .btn:hover {
  background: #edf5ff;
}

.btn:focus-visible,
a:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #f7faff;
  padding: 2.2rem 0;
}

.footer-wrap {
  display: grid;
  gap: 1rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}

.footer-links a {
  color: #1d457f;
  font-weight: 500;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.legal-main {
  padding: 3rem 0 4rem;
}

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

.legal-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
}

.legal-card h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  max-width: none;
  margin-bottom: 1.2rem;
}

.legal-card h2 {
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
}

.legal-card ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal-card li {
  margin-bottom: 0.5rem;
  color: var(--text-body);
}

.legal-updated {
  margin-top: 1.4rem;
  color: var(--text-muted);
  font-weight: 600;
}

@media (min-width: 700px) {
  .btn-small {
    padding: 0.66rem 1rem;
    font-size: 0.94rem;
  }

  .cta-text-desktop {
    display: inline;
  }

  .cta-text-mobile {
    display: none;
  }

  .section {
    padding: 5rem 0;
  }

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

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

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

  .offer-card {
    padding: 1.8rem;
  }

  .legal-card {
    padding: 2rem;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.8rem;
  }

  .section-solution .container,
  .section-benefits .container,
  .section-prompts .container,
  .section-security .container {
    max-width: 1040px;
  }

  .section-pain .cards-2,
  .section-prompts .cards-2 {
    gap: 1.1rem;
  }

  .brand {
    width: clamp(13.75rem, 18vw, 17.5rem);
  }

  .offer-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1rem;
    align-items: stretch;
  }

  .offer-main,
  .offer-action {
    padding: 1.25rem;
  }

  .btn-offer {
    min-height: 58px;
    padding-inline: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
