:root {
  --bg: #eef7f3;
  --bg-deep: #d8eee4;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-soft: rgba(244, 250, 247, 0.88);
  --text: #10211d;
  --muted: #556761;
  --line: rgba(26, 84, 72, 0.12);
  --primary: #1f7f6d;
  --primary-dark: #0f4b40;
  --primary-soft: #d6efe7;
  --accent: #95d8c6;
  --accent-strong: #f7c889;
  --shadow: 0 28px 80px rgba(15, 58, 49, 0.12);
  --shadow-soft: 0 20px 40px rgba(15, 58, 49, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(247, 200, 137, 0.2), transparent 18%),
    radial-gradient(circle at bottom right, rgba(149, 216, 198, 0.45), transparent 28%),
    linear-gradient(145deg, var(--bg) 0%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.52), transparent 78%);
}

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 64px;
  position: relative;
}

.hero,
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero {
  padding: 28px;
  color: #f7fcfa;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.18), transparent 20%),
    radial-gradient(circle at 85% 28%, rgba(247, 200, 137, 0.15), transparent 16%),
    linear-gradient(135deg, rgba(13, 64, 54, 0.98), rgba(25, 109, 93, 0.9) 54%, rgba(116, 186, 167, 0.76));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 460px;
  height: 460px;
  right: -140px;
  top: -140px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
}

.hero::after {
  width: 280px;
  height: 280px;
  left: -100px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
}

.lang-switch {
  display: inline-flex;
  margin-left: auto;
  margin-bottom: 28px;
  padding: 6px;
  gap: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.lang-switch__button {
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: rgba(247, 252, 250, 0.82);
  cursor: pointer;
  font-weight: 800;
}

.lang-switch__button.is-active {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.hero__copy {
  padding: 12px 6px 8px;
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.hero__logo {
  width: clamp(180px, 22vw, 260px);
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.18));
}

.hero__badge,
.section-label,
.mini-note__eyebrow,
.hero-panel__eyebrow,
.hero-stack__tag {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero__badge {
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero h1,
.card h2,
.hero-panel__title {
  margin: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 7.8vw, 6.1rem);
  letter-spacing: -0.05em;
}

.hero__lead {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(247, 252, 250, 0.9);
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(247, 252, 250, 0.92);
  font-size: 0.92rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.hero__cta {
  width: fit-content;
  padding: 15px 22px;
  border-radius: 16px;
  background: #f6fffc;
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.14);
}

.hero__aside {
  max-width: 290px;
  margin: 0;
  color: rgba(247, 252, 250, 0.82);
  line-height: 1.6;
}

.hero__visual {
  display: grid;
  gap: 18px;
  align-content: center;
}

.hero-panel {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-soft);
}

.hero-panel--main {
  padding: 26px;
  background: rgba(244, 251, 248, 0.95);
  color: var(--text);
}

.hero-panel__glow {
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 181, 226, 0.26), transparent 70%);
  pointer-events: none;
}

.hero-panel--glass {
  padding: 22px;
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(8, 45, 38, 0.2), rgba(255, 255, 255, 0.04));
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(120, 226, 255, 0.22);
  pointer-events: none;
}

.hero-orbit--one {
  width: 260px;
  height: 260px;
  right: -84px;
  top: -52px;
}

.hero-orbit--two {
  width: 180px;
  height: 180px;
  right: 30px;
  top: 16px;
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-panel__eyebrow,
.section-label,
.mini-note__eyebrow,
.hero-stack__tag {
  background: rgba(27, 122, 106, 0.08);
  color: var(--primary-dark);
  border: 1px solid rgba(27, 122, 106, 0.12);
}

.hero-panel__eyebrow {
  margin-bottom: 16px;
}

.hero-panel__title {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: -0.04em;
}

.hero-frequency {
  position: relative;
  margin-top: 26px;
  padding: 18px 18px 14px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at left center, rgba(0, 168, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(9, 34, 58, 0.98), rgba(14, 55, 80, 0.96));
  border: 1px solid rgba(0, 181, 226, 0.16);
}

.hero-frequency::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.32;
}

.hero-frequency__line,
.hero-frequency__line--secondary {
  position: relative;
  height: 58px;
  border-radius: 999px;
}

.hero-frequency__line::before,
.hero-frequency__line--secondary::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 2px;
  transform: translateY(-50%);
  background-repeat: repeat-x;
  background-size: 140px 58px;
}

.hero-frequency__line::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='58' viewBox='0 0 140 58'%3E%3Cpath d='M0 29 C12 29 12 8 24 8 S36 50 48 50 S60 8 72 8 S84 50 96 50 S108 8 120 8 S132 29 140 29' fill='none' stroke='%2300B5E2' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.hero-frequency__line--secondary {
  margin-top: -10px;
  opacity: 0.75;
}

.hero-frequency__line--secondary::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='58' viewBox='0 0 140 58'%3E%3Cpath d='M0 29 C18 29 18 16 36 16 S54 42 72 42 S90 16 108 16 S126 29 140 29' fill='none' stroke='%238AE6FF' stroke-width='1.75' stroke-linecap='round'/%3E%3C/svg%3E");
}

.hero-frequency__scale {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(228, 245, 255, 0.82);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.hero-metric {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 122, 106, 0.08);
}

.hero-metric__label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-metric strong {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
}

.hero-stack {
  position: relative;
  min-height: 172px;
}

.hero-stack__card {
  position: absolute;
  width: min(100%, 270px);
  padding: 18px;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.hero-stack__card p {
  margin: 12px 0 0;
  line-height: 1.6;
}

.hero-stack__card--primary {
  left: 0;
  top: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.hero-stack__card--secondary {
  right: 0;
  bottom: 0;
  background: rgba(17, 76, 65, 0.82);
  color: #f7fcfa;
}

.hero-stack__card--secondary .hero-stack__tag {
  background: rgba(255, 255, 255, 0.14);
  color: #f7fcfa;
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-ui {
  display: grid;
  gap: 16px;
}

.hero-ui__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-ui__menu span {
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(247, 252, 250, 0.88);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-window {
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(238, 246, 243, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 34px rgba(2, 16, 28, 0.18);
}

.hero-window__top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(244, 249, 247, 0.98), rgba(224, 237, 232, 0.92));
  border-bottom: 1px solid rgba(16, 33, 29, 0.08);
}

.hero-window__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31, 127, 109, 0.9), rgba(0, 181, 226, 0.95));
}

.hero-window__body {
  padding: 16px;
}

.hero-window__table {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr;
  gap: 8px;
  margin-bottom: 12px;
  color: #4d645e;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-window__row,
.hero-window__row--short {
  height: 13px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 127, 109, 0.22), rgba(0, 181, 226, 0.09));
}

.hero-window__row--short {
  width: 68%;
}

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

.hero-window__fields span {
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(16, 33, 29, 0.08);
  background: rgba(247, 251, 250, 0.96);
}

.hero-screens {
  position: relative;
  margin-top: 18px;
  min-height: 240px;
}

.hero-screen {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-screen--main {
  left: 0;
  top: 10px;
  width: min(100%, 360px);
  transform: rotate(-2.6deg);
}

.hero-screen--clients {
  right: 0;
  top: 76px;
  width: min(58%, 240px);
  transform: rotate(4.2deg);
}

.hero-screen--menu {
  left: 36px;
  bottom: 0;
  width: min(42%, 170px);
  transform: rotate(-5.2deg);
}

main {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

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

.card {
  padding: 34px 30px;
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -84px;
  top: -84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(149, 216, 198, 0.24), transparent 70%);
}

.card--intro {
  background: var(--surface-strong);
}

.card--soft {
  background: rgba(255, 255, 255, 0.78);
}

.card--accent-light {
  background:
    linear-gradient(180deg, rgba(241, 251, 246, 0.98), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at top right, rgba(247, 200, 137, 0.16), transparent 24%);
}

.card__split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.section-label {
  margin-bottom: 16px;
}

.card h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.card p,
.feature-list,
.steps-list,
.form-intro,
.mini-note {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.feature-list,
.steps-list {
  padding-left: 20px;
}

.feature-list li,
.steps-list li {
  margin-bottom: 10px;
}

.mini-note {
  padding: 22px;
  border-radius: 24px;
  background: var(--surface-soft);
  border: 1px solid rgba(27, 122, 106, 0.08);
}

.mini-note__eyebrow {
  margin-bottom: 12px;
}

.form-card {
  background: rgba(255, 255, 255, 0.94);
}

.support-form {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.support-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

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

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(27, 122, 106, 0.12);
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(27, 122, 106, 0.4);
  box-shadow: 0 0 0 4px rgba(27, 122, 106, 0.12);
}

.checkbox {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-weight: 600 !important;
}

.form-privacy {
  margin: -2px 0 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(42, 66, 62, 0.72);
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin: 0;
}

button {
  border: none;
  border-radius: 16px;
  padding: 15px 18px;
  font-weight: 800;
  cursor: pointer;
  color: #f8fdfb;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transition: transform 160ms ease, opacity 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 16px 30px rgba(17, 76, 65, 0.18);
}

.hero__cta:hover,
.hero__cta:focus-visible,
button:hover,
button:focus-visible {
  transform: translateY(-1px);
}

button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.95rem;
}

.form-status[data-state="success"] {
  color: var(--primary-dark);
}

.form-status[data-state="error"] {
  color: #9f2d23;
}

@media (max-width: 980px) {
  .hero__content,
  .card__split,
  .grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero__visual {
    min-height: 0;
  }

  .hero-stack {
    min-height: 220px;
  }

  .hero__brand {
    gap: 12px;
  }

  .hero__logo {
    width: clamp(150px, 34vw, 220px);
  }

  .hero-screens {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100%, calc(100% - 20px));
    padding-top: 16px;
  }

  .hero,
  .card {
    border-radius: 24px;
  }

  .hero {
    padding: 20px;
  }

  .card {
    padding: 24px 20px;
  }

  .lang-switch {
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 4.25rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__brand {
    align-items: flex-start;
  }

  .hero__logo {
    width: min(220px, 70vw);
  }

  .hero-frequency {
    padding: 16px 14px 12px;
  }

  .hero-stack__card {
    position: relative;
    width: 100%;
  }

  .hero-stack__card--secondary {
    margin-top: 14px;
  }

  .hero-window__table,
  .hero-window__fields {
    grid-template-columns: 1fr;
  }

  .hero-screens {
    min-height: 0;
    display: grid;
    gap: 12px;
  }

  .hero-screen {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }
}
