:root {
  --ink: #18212f;
  --ink-soft: #27364b;
  --paper: #fff8eb;
  --white: #ffffff;
  --teal: #00a884;
  --teal-soft: #dffbf3;
  --coral: #ff5c7a;
  --coral-dark: #e84666;
  --saffron: #ffb703;
  --sky: #24a8ff;
  --violet: #7c3aed;
  --lime: #b7ef4a;
  --line: rgba(24, 33, 47, 0.12);
  --muted: #667085;
  --shadow: 0 24px 70px rgba(83, 44, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.86), rgba(236, 252, 245, 0.72) 48%, #fff8eb),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 235, 0.9);
  padding: 0 5vw;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand strong {
  display: block;
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--sky));
  box-shadow: 0 18px 36px rgba(0, 168, 132, 0.26);
}

.brand-mark svg,
.mini-logo svg {
  width: 82%;
  height: 82%;
}

.logo-orbit,
.logo-arc,
.logo-smile,
.logo-lines {
  fill: none;
  stroke-linecap: round;
}

.logo-orbit {
  stroke: var(--white);
  stroke-width: 3.2;
}

.logo-arc,
.logo-dot {
  stroke: var(--saffron);
  fill: var(--saffron);
}

.logo-arc {
  stroke-width: 3.2;
}

.logo-smile {
  stroke: var(--white);
  stroke-width: 3;
}

.logo-page-left {
  fill: var(--white);
}

.logo-page-right {
  fill: #bde8df;
}

.logo-lines {
  stroke: var(--teal);
  stroke-width: 1.6;
  opacity: 0.75;
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  border-radius: 7px;
  color: #4b5563;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 10px 10px;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--white);
  color: var(--teal);
}

.primary-button,
.ghost-button,
.outline-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
  padding: 0 18px;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

.primary-button {
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--teal), #08b99a 66%, var(--coral));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 168, 132, 0.24);
}

.primary-button:hover {
  background: linear-gradient(135deg, #08705d, var(--teal));
  transform: translateY(-1px);
}

.ghost-button {
  color: #4b5563;
}

.ghost-button:hover {
  background: var(--white);
}

.outline-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.outline-button:hover {
  border-color: rgba(15, 118, 110, 0.28);
  transform: translateY(-1px);
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 82px);
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding: 74px 5vw 60px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 248, 235, 0.95) 0%, rgba(255, 248, 235, 0.85) 42%, rgba(255, 248, 235, 0.28) 68%),
    url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=1800&q=80") center right / cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 5vw 30px auto;
  z-index: -1;
  width: min(45vw, 560px);
  height: min(45vw, 560px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.32), rgba(0, 168, 132, 0.08) 56%, transparent 70%);
  content: "";
}

.hero-photo {
  position: absolute;
  right: 6vw;
  top: 42px;
  z-index: -1;
  width: min(34vw, 450px);
  aspect-ratio: 1 / 1;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(24, 33, 47, 0), rgba(24, 33, 47, 0.16)),
    url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1000&q=80") center / cover;
  box-shadow: 0 28px 70px rgba(24, 33, 47, 0.2);
  transform: rotate(3deg);
}

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

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 950;
  line-height: 0.88;
  text-shadow: 0 10px 35px rgba(255, 255, 255, 0.55);
}

.hero-text {
  max-width: 710px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero-tagline {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--teal);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 950;
  line-height: 1.2;
}

.register-tagline {
  color: var(--saffron);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trial-banner {
  display: grid;
  gap: 4px;
  max-width: 520px;
  margin-top: 24px;
  border: 1px solid rgba(0, 168, 132, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 14px 16px;
  box-shadow: 0 12px 28px rgba(0, 168, 132, 0.09);
}

.trial-banner strong,
.trial-chip,
.trial-summary strong {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trial-banner span {
  color: #475467;
  font-size: 0.94rem;
  font-weight: 750;
}

.trust-strip {
  display: grid;
  max-width: 670px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 38px;
}

.trust-strip span {
  min-height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 16px;
}

.trust-strip strong {
  display: block;
  color: var(--ink);
  font-size: 1.72rem;
  font-weight: 950;
}

.product-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(24, 33, 47, 0.9), rgba(124, 58, 237, 0.78)),
    var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
  padding: clamp(18px, 3vw, 28px);
}

.visual-photo {
  min-height: 185px;
  margin: -4px -4px 22px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(24, 33, 47, 0.08), rgba(24, 33, 47, 0.46)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.product-visual::after {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border: 36px solid rgba(249, 115, 98, 0.18);
  border-radius: 50%;
  content: "";
}

.visual-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.mini-logo {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
}

.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.metric-grid article {
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  padding: 20px;
}

.metric-grid small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.metric-grid strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 950;
}

.metric-grid span {
  display: inline-flex;
  margin-top: 8px;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 900;
  padding: 5px 8px;
}

.up {
  background: rgba(34, 197, 94, 0.18);
  color: #bbf7d0;
}

.stable {
  background: rgba(45, 156, 219, 0.18);
  color: #bae6fd;
}

.timeline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.timeline div {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  padding: 14px;
}

.timeline span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--lime));
}

.section,
.workflow,
.about,
.register,
.contact {
  padding: 84px 5vw;
}

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

.section-heading h2,
.workflow h2,
.about h2,
.register h2,
.contact h2 {
  margin: 12px 0 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 950;
  line-height: 1.02;
}

.section-heading p:not(.eyebrow),
.workflow p:not(.eyebrow),
.about p:not(.eyebrow),
.register p:not(.eyebrow),
.contact p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.feature-grid article,
.plan-card,
.about-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(24, 33, 47, 0.04);
}

.feature-grid article {
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-grid article:hover {
  box-shadow: 0 18px 42px rgba(24, 33, 47, 0.12);
  transform: translateY(-4px);
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal-soft), #fff1b8);
  color: #08705d;
  font-size: 0.8rem;
  font-weight: 950;
}

.feature-grid h3,
.plan-card h3,
.about-list h3 {
  margin: 22px 0 0;
  font-size: 1.22rem;
  font-weight: 950;
}

.feature-grid p,
.plan-card p,
.about-list p {
  color: var(--muted);
  line-height: 1.65;
}

.workflow {
  display: grid;
  grid-template-columns: 0.78fr 0.9fr 1fr;
  gap: 42px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 168, 132, 0.12), rgba(255, 183, 3, 0.16)),
    var(--white);
}

.workflow h2 {
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
}

.workflow-image {
  min-height: 420px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(24, 33, 47, 0.04), rgba(24, 33, 47, 0.22)),
    url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1000&q=80") center / cover;
  box-shadow: var(--shadow);
}

.workflow ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: workflow;
}

.workflow li {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  list-style: none;
  padding: 14px 18px;
}

.workflow li::before {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--coral), var(--saffron));
  color: var(--white);
  content: counter(workflow);
  counter-increment: workflow;
  font-size: 0.82rem;
}

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

.plan-card {
  position: relative;
  padding: 28px;
}

.trial-chip {
  display: inline-flex;
  margin-top: 12px;
  border-radius: 6px;
  background: var(--teal-soft);
  padding: 7px 10px;
}

.featured-plan {
  border-color: var(--coral);
  background: linear-gradient(180deg, #fff5f7, #fff9ed);
  transform: translateY(-10px);
}

.popular {
  position: absolute;
  right: 18px;
  top: 18px;
  border-radius: 6px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 950;
  padding: 6px 10px;
  text-transform: uppercase;
}

.price {
  margin-top: 26px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 950;
}

.price span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
}

.plan-card li {
  display: flex;
  gap: 10px;
  color: #475467;
  font-size: 0.95rem;
  font-weight: 800;
  list-style: none;
}

.plan-card li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  content: "";
  margin-top: 8px;
}

.plan-card .primary-button,
.plan-card .outline-button {
  width: 100%;
}

.plan-compare {
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  padding: 24px;
}

.compare-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.compare-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.5;
  padding: 14px 16px;
}

.compare-heading h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 950;
}

.compare-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.tax-note {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 7px;
  background: var(--teal-soft);
  color: #08705d;
  font-size: 0.78rem;
  font-weight: 950;
  padding: 0 12px;
  white-space: nowrap;
}

.compare-scroll {
  overflow-x: auto;
}

.compare-grid {
  display: grid;
  min-width: 1040px;
  grid-template-columns: minmax(190px, 1.15fr) repeat(5, minmax(145px, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.compare-cell {
  display: grid;
  min-height: 54px;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #475467;
  font-size: 0.92rem;
  font-weight: 850;
  padding: 12px;
  text-align: center;
}

.compare-cell:nth-child(6n) {
  border-right: 0;
}

.compare-feature {
  justify-content: start;
  place-items: center start;
  background: #fffdf7;
  color: var(--ink);
  font-weight: 950;
  text-align: left;
}

.compare-top {
  min-height: 186px;
  align-content: start;
  gap: 8px;
  background: linear-gradient(180deg, #ffffff, #fff8eb);
}

.compare-plan strong {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 950;
}

.compare-plan span {
  color: var(--teal);
  font-size: 1rem;
  font-weight: 950;
}

.compare-plan small {
  min-height: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.compare-plan .primary-button,
.compare-plan .outline-button {
  width: 100%;
  min-height: 38px;
  margin-top: 4px;
  padding: 0 10px;
}

.compare-plan em {
  justify-self: center;
  border-radius: 6px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 5px 8px;
  text-transform: uppercase;
}

.compare-plan.highlighted {
  background: linear-gradient(180deg, #fff5f7, #fff9ed);
}

.compare-cell.yes,
.compare-cell.no {
  font-size: 1.35rem;
  font-weight: 950;
}

.compare-cell.yes {
  color: var(--teal);
}

.compare-cell.no {
  color: #e11d48;
}

.compare-cell.optional,
.compare-cell.text {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.plan-compare table {
  display: none;
}

.plan-compare table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.plan-compare th,
.plan-compare td {
  border-bottom: 1px solid var(--line);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

.plan-compare th {
  color: var(--ink);
  font-weight: 950;
}

.plan-compare td {
  color: #475467;
  font-weight: 750;
}

.about {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
}

.about-photo {
  min-height: 480px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(24, 33, 47, 0.02), rgba(24, 33, 47, 0.18)),
    url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1000&q=80") center / cover;
  box-shadow: var(--shadow);
}

.about-list {
  display: grid;
  gap: 12px;
}

.about-list article {
  padding: 22px;
}

.about-list h3 {
  margin-top: 0;
}

.register-page {
  min-height: calc(100vh - 82px);
  background: var(--paper);
  padding: 54px 5vw 72px;
}

.contact-page-section {
  background: var(--paper);
  padding: 54px 5vw 78px;
}

.legal-document-section {
  background: var(--paper);
  padding: 48px 5vw 78px;
}

.legal-document {
  max-width: 920px;
  margin: 0 auto;
  color: #344054;
  font-size: 1rem;
  line-height: 1.75;
}

.legal-document h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 950;
}

.legal-document h3 {
  margin: 22px 0 8px;
  color: #475467;
  font-size: 1.05rem;
  font-weight: 950;
}

.legal-document p {
  margin: 10px 0;
}

.legal-document ul {
  margin: 8px 0 18px;
  padding-left: 24px;
}

.legal-document li {
  margin: 6px 0;
}

.legal-document a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
  padding: 12px 13px;
}

.contact-form input,
.contact-form select {
  height: 46px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info-panel {
  display: grid;
  gap: 14px;
}

.contact-info-panel article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.contact-info-panel span {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-info-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.contact-info-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.registration-shell {
  display: grid;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.register-heading {
  max-width: 760px;
}

.register-heading h1 {
  margin: 10px 0 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  font-weight: 950;
  line-height: 1;
}

.register-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

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

.trial-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trial-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 950;
}

.form-card {
  margin-top: 6px;
}

.form-heading h2 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 950;
}

.form-heading p,
.form-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 28px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
  padding: 12px 13px;
}

.lead-form input,
.lead-form select {
  height: 46px;
}

.lead-form textarea {
  min-height: 124px;
  resize: vertical;
}

.captcha-field {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) auto;
  gap: 12px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  padding: 14px;
}

.captcha-field > div {
  display: grid;
  gap: 6px;
}

.captcha-field span,
.captcha-field label {
  color: #344054;
  font-size: 0.9rem;
  font-weight: 900;
}

.captcha-question {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(0, 168, 132, 0.22);
  border-radius: 8px;
  background: var(--teal-soft);
  color: #08705d;
  font-size: 1.08rem;
  font-weight: 950;
  padding: 0 14px;
}

.captcha-refresh {
  min-height: 46px;
  white-space: nowrap;
}

.terms-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 13px 14px;
}

.terms-consent input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.terms-consent span {
  color: #344054;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.55;
}

.terms-consent a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.form-button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.3);
  opacity: 0.55;
}

.full-field,
.form-success,
.form-button {
  grid-column: 1 / -1;
}

.form-success {
  min-height: 0;
  margin: 0;
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 900;
}

.contact {
  background:
    linear-gradient(135deg, rgba(36, 168, 255, 0.12), rgba(255, 92, 122, 0.12)),
    var(--white);
}

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

.contact-grid a,
.contact-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  padding: 18px;
  text-align: center;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: end;
  overflow: hidden;
  padding: 86px 5vw 64px;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(0, 168, 132, 0.16), rgba(255, 92, 122, 0.14)),
    linear-gradient(180deg, rgba(255, 248, 235, 0.96), rgba(255, 255, 255, 0.72));
  content: "";
}

.page-hero::after {
  position: absolute;
  right: 5vw;
  bottom: 24px;
  z-index: -1;
  width: min(420px, 42vw);
  height: min(420px, 42vw);
  border: 1px solid rgba(0, 168, 132, 0.16);
  border-radius: 999px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 183, 3, 0.2) 0 8px, transparent 8px 18px),
    rgba(255, 255, 255, 0.3);
  content: "";
}

.page-hero h1 {
  max-width: 840px;
  margin: 10px 0 0;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.94;
  font-weight: 950;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-hero-panel,
.support-contact-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  padding: 24px;
  backdrop-filter: blur(14px);
}

.page-hero-panel strong,
.support-contact-card span {
  display: block;
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 950;
}

.page-hero-panel span,
.support-contact-card a {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.support-contact-card a {
  color: var(--teal);
  font-weight: 900;
}

.page-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
  padding: 0 5vw;
}

.page-stats div {
  background: rgba(255, 255, 255, 0.78);
  padding: 24px;
}

.page-stats strong {
  display: block;
  color: var(--teal);
  font-size: 1.55rem;
  font-weight: 950;
}

.page-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.content-section {
  padding: 72px 5vw;
}

.page-band {
  background:
    linear-gradient(180deg, rgba(236, 252, 245, 0.72), rgba(255, 248, 235, 0.92));
}

.section-heading.compact {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading.compact h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

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

.content-card,
.faq-item,
.policy-block {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(24, 33, 47, 0.08);
  padding: 24px;
}

.stylish-grid .content-card {
  overflow: hidden;
}

.stylish-grid .content-card::before,
.faq-item::before,
.policy-block::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--saffron), var(--coral));
  content: "";
}

.content-card h2,
.faq-item h2,
.policy-block h2 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 950;
}

.content-card p,
.faq-item p,
.policy-block p {
  color: var(--muted);
  line-height: 1.65;
}

.content-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.content-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-weight: 760;
}

.content-card li::before {
  position: absolute;
  left: 0;
  top: 0.12em;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  content: "\2713";
  font-size: 0.72rem;
  font-weight: 950;
}

.card-icon,
.roadmap-status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  margin-bottom: 18px;
  padding: 0 12px;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 14px;
}

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

.faq-item {
  padding-left: 64px;
}

.faq-item::after {
  position: absolute;
  top: 26px;
  left: 24px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--sky));
  color: var(--white);
  content: "?";
  font-weight: 950;
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.roadmap-list .content-card {
  border-left: 5px solid var(--teal);
}

.roadmap-status {
  background: rgba(255, 183, 3, 0.18);
  color: #9a5b00;
}

.policy-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 168, 255, 0.1), rgba(255, 183, 3, 0.12)),
    rgba(255, 255, 255, 0.72);
  padding: 18px;
}

.policy-list {
  display: grid;
  gap: 14px;
}

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

.policy-block {
  box-shadow: none;
}

.policy-block h2 {
  padding-left: 42px;
}

.policy-block h2::before {
  position: absolute;
  left: 24px;
  top: 25px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  content: "\00a7";
  font-size: 0.85rem;
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(0, 168, 132, 0.2), rgba(255, 92, 122, 0.16)),
    linear-gradient(135deg, var(--ink), #29315a);
  color: var(--white);
  padding: 46px 5vw 28px;
}

.rich-footer {
  display: grid;
  gap: 34px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(260px, 1.4fr) auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 28px;
}

.site-footer .brand small,
.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer p {
  max-width: 680px;
  margin: 0;
  line-height: 1.65;
}

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

.footer-grid div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid h3 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 750;
}

.footer-grid a:hover {
  color: var(--saffron);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .site-header {
    gap: 14px;
  }

  .menu-button {
    display: grid;
    gap: 4px;
  }

  .nav-links,
  .header-actions {
    position: fixed;
    left: 5vw;
    right: 5vw;
    display: none;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links {
    top: 92px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 10px 10px 0 0;
    padding: 10px;
  }

  .header-actions {
    top: 310px;
    border-top: 0;
    border-radius: 0 0 10px 10px;
    padding: 10px;
  }

  .site-header.menu-open .nav-links,
  .site-header.menu-open .header-actions {
    display: flex;
  }

  .simple-header .nav-links,
  .simple-header .header-actions {
    position: static;
    display: flex;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .simple-header .nav-links {
    flex-direction: row;
  }

  .hero,
  .workflow,
  .about,
  .page-hero,
  .register,
  .contact-form-shell {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 248, 235, 0.96), rgba(255, 248, 235, 0.78)),
      url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=1200&q=80") center / cover;
  }

  .workflow-image,
  .about-photo {
    min-height: 320px;
  }

  .feature-grid,
  .plan-grid,
  .contact-grid,
  .content-grid,
  .roadmap-list,
  .stylish-faq,
  .stylish-policy,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .captcha-field {
    grid-template-columns: 1fr;
  }

  .compare-heading,
  .compare-note {
    display: grid;
  }

  .featured-plan {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 74px;
    padding: 0 18px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    max-width: 150px;
    white-space: normal;
  }

  .simple-header {
    flex-wrap: wrap;
    height: auto;
    padding-bottom: 12px;
    padding-top: 12px;
  }

  .simple-header .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .simple-header .header-actions {
    gap: 8px;
  }

  .simple-header .ghost-button,
  .simple-header .outline-button {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero,
  .section,
  .workflow,
  .about,
  .content-section,
  .page-hero,
  .register,
  .legal-document-section,
  .contact-page-section,
  .contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .footer-grid,
  .trust-strip,
  .metric-grid,
  .feature-grid,
  .plan-grid,
  .page-stats,
  .content-grid,
  .roadmap-list,
  .stylish-faq,
  .stylish-policy,
  .contact-grid,
  .lead-form,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .faq-item {
    padding-left: 24px;
    padding-top: 64px;
  }

  .site-footer {
    align-items: flex-start;
    padding: 32px 18px;
  }

  .footer-bottom {
    display: grid;
  }
}
