:root {
  --bg: #0c0f0d;
  --bg-2: #111513;
  --text: #e8ece9;
  --muted: #adb8b0;
  --line: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.03);
  --accent: #00f59b;
  --accent-2: #3ff8b6;
  --danger: #ffb4ab;
  --radius: 10px;
  --container: 1240px;
  --scroll-progress: 0%;
  --hero-shift: 0px;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 450, "GRAD" 0, "opsz" 24;
  font-size: 22px;
  line-height: 1;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Geist, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background:
    radial-gradient(780px 560px at 58% 9%, rgba(0, 245, 155, 0.17), transparent 66%),
    radial-gradient(860px 620px at 18% 34%, rgba(0, 95, 255, 0.09), transparent 72%),
    radial-gradient(760px 560px at 72% 58%, rgba(0, 245, 155, 0.1), transparent 70%),
    radial-gradient(820px 620px at 26% 84%, rgba(0, 95, 255, 0.08), transparent 74%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  background-attachment: fixed;
  line-height: 1.45;
}

body {
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--scroll-progress);
  height: 2px;
  z-index: 60;
  background: linear-gradient(90deg, #00f59b, #3ff8b6);
  box-shadow: 0 0 14px rgba(0, 245, 155, 0.6);
  transition: width 0.08s linear;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 245, 155, 0), rgba(0, 245, 155, 0.5), rgba(0, 245, 155, 0));
  transform: scaleX(0.2);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.section.in-view::after {
  transform: scaleX(1);
  opacity: 1;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12, 15, 13, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand img {
  width: 96px;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 20px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
}

.btn {
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  padding: 10px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition: 0.25s ease;
  font-family: inherit;
}

.btn-top,
.btn-primary {
  background: var(--accent);
  color: #082518;
}

.btn-top:hover,
.btn-primary:hover {
  box-shadow: 0 0 20px rgba(0, 245, 155, 0.3);
}

.hero {
  padding-top: 84px;
  border-top: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: 16%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 245, 155, 0.2), rgba(0, 245, 155, 0));
  filter: blur(38px);
  transform: translateY(var(--hero-shift));
  transition: transform 0.15s linear;
  pointer-events: none;
}

.hero-inner {
  max-width: 720px;
  min-height: 470px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(1.72rem, 5vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  margin-top: 24px;
  color: #c5cfc7;
  max-width: 580px;
  line-height: 1.58;
  font-size: 1.04rem;
}

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

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.card,
.service-card,
.step,
.contact-form,
.tool,
.stats-grid article {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.card {
  min-height: 252px;
  padding: 34px 24px;
  text-align: center;
}

.card-accent {
  border-color: rgba(0, 245, 155, 0.65);
  box-shadow: inset 0 0 80px rgba(0, 245, 155, 0.04);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1.2rem;
}

.icon-danger {
  color: var(--danger);
  border: 1px solid rgba(255, 180, 171, 0.35);
  background: rgba(255, 180, 171, 0.08);
}

.icon-accent {
  color: var(--accent);
  border: 1px solid rgba(0, 245, 155, 0.4);
  background: rgba(0, 245, 155, 0.1);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.service-card {
  min-height: 190px;
  padding: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 245, 155, 0.4);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 11px;
}

.service-icon .material-symbols-outlined {
  font-size: 25px;
}

.service-card h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 7px;
  letter-spacing: -0.02em;
}

.service-card p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.45;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
  padding: 8px 0;
}

.timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 245, 155, 0.45), rgba(0, 245, 155, 0.12));
}

.step {
  padding: 0 10px;
  min-height: 286px;
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-no {
  color: var(--accent);
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 7px;
  font-weight: 500;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  line-height: 1.3;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 230px;
}

.step-top {
  justify-content: flex-start;
  padding-bottom: 164px;
}

.step-bottom {
  justify-content: flex-end;
  padding-top: 164px;
}

.step-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #06100b;
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 245, 155, 0.08);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.step:hover .step-dot {
  transform: translate(-50%, -50%) scale(1.25);
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 245, 155, 0.16), 0 0 14px rgba(0, 245, 155, 0.55);
}

.tools-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.tools-viewport {
  overflow-x: auto;
  overflow-y: visible;
  padding: 10px 0 14px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.tools-viewport::-webkit-scrollbar {
  display: none;
}

.tools-track {
  display: flex;
  gap: 10px;
  padding: 3px 2px;
}

.tools-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #dce7df;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.tools-nav:hover {
  border-color: rgba(0, 245, 155, 0.55);
  color: var(--accent);
  background: rgba(0, 245, 155, 0.12);
}

.tools-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.tools-nav .material-symbols-outlined {
  font-size: 22px;
}

.tool {
  min-height: 102px;
  flex: 0 0 calc((100% - 50px) / 6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 1.02rem;
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 600;
  color: #dce7df;
  padding: 14px;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.tool .material-symbols-outlined {
  font-size: 27px;
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
  color: var(--accent);
  transition: transform 0.22s ease, text-shadow 0.22s ease;
}

.tool:hover {
  transform: translateY(-5px) scale(1.04);
  border-color: rgba(0, 245, 155, 0.48);
  background: rgba(0, 245, 155, 0.07);
  box-shadow: 0 12px 24px rgba(0, 245, 155, 0.2);
}

.tool:hover .material-symbols-outlined {
  transform: scale(1.12);
  text-shadow: 0 0 14px rgba(0, 245, 155, 0.65);
}

.stats-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding-top: 68px;
  padding-bottom: 56px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.stats-grid article {
  min-height: auto;
  display: block;
  text-align: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.stats-grid strong {
  display: block;
  color: var(--accent);
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.stats-grid span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.69rem;
  letter-spacing: 0.09em;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: start;
}

.about-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  margin-bottom: 12px;
}

.about-text h2 {
  margin-bottom: 22px;
}

.about-lead {
  color: #c5cfc7;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.about-note {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  padding-left: 14px;
  border-left: 2px solid rgba(0, 245, 155, 0.4);
}

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

.cred-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  padding: 20px 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.cred-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 245, 155, 0.4);
  box-shadow: 0 12px 26px rgba(0, 245, 155, 0.12);
}

.cred-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-bottom: 14px;
  color: var(--accent);
  background: rgba(0, 245, 155, 0.1);
  border: 1px solid rgba(0, 245, 155, 0.32);
  font-size: 24px;
}

.cred-card h3 {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cred-tag {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(0, 245, 155, 0.12);
  border: 1px solid rgba(0, 245, 155, 0.3);
  border-radius: 999px;
  padding: 2px 8px;
}

.cred-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: start;
}

.contact-text h2 {
  margin-bottom: 14px;
}

.contact-text p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-text {
  padding: 30px 28px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  min-height: 100%;
}

.contact-heading {
  margin-bottom: 20px;
}

.contact-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  margin-bottom: 10px;
}

.contact-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 18px 0 16px;
}

.contact-benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px 13px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.contact-benefit .material-symbols-outlined {
  color: var(--accent);
  font-size: 20px;
  margin-top: 1px;
}

.contact-benefit strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--text);
}

.contact-benefit p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

.contact-footnote {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(0, 245, 155, 0.06);
  border: 1px solid rgba(0, 245, 155, 0.16);
}

.contact-footnote .material-symbols-outlined {
  color: var(--accent);
  font-size: 20px;
  margin-top: 1px;
}

.contact-footnote p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding-bottom: 2px;
  color: #e9ffef;
  border-bottom: 1px solid rgba(0, 245, 155, 0.4);
}

.contact-email:hover {
  color: var(--accent);
}

.contact-form {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.contact-form {
  padding: 18px;
  display: grid;
  gap: 7px;
  align-self: start;
}

.contact-form label {
  margin-top: 6px;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  color: #d7e0d9;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 4px;
  color: var(--text);
  font: inherit;
  padding: 10px 11px;
  font-size: 0.91rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 245, 155, 0.8);
  box-shadow: 0 0 0 3px rgba(0, 245, 155, 0.12);
}

.label-hint {
  color: #8b958d;
  font-weight: 400;
}

.file-field {
  position: relative;
}

.file-field input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 18px 14px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.file-field:hover .file-dropzone,
.file-field.is-dragover .file-dropzone {
  border-color: rgba(0, 245, 155, 0.65);
  background: rgba(0, 245, 155, 0.06);
}

.file-dropzone .material-symbols-outlined {
  color: var(--accent);
  font-size: 26px;
}

.file-dropzone-text {
  font-size: 0.9rem;
  color: #d7e0d9;
}

.file-dropzone-hint {
  font-size: 0.74rem;
  color: #8b958d;
  line-height: 1.4;
}

.file-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.file-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.84rem;
}

.file-list .file-icon {
  color: var(--accent);
  font-size: 18px;
}

.file-list .file-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text);
}

.file-list .file-size {
  color: #8b958d;
  font-size: 0.76rem;
  flex: 0 0 auto;
}

.file-list .file-remove {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
  font-family: inherit;
}

.file-list .file-remove:hover {
  color: #ffb4ab;
  background: rgba(255, 180, 171, 0.12);
}

.file-list .file-remove .material-symbols-outlined {
  font-size: 16px;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 6px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.contact-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.contact-consent span {
  flex: 1;
}

.contact-consent:hover {
  border-color: rgba(0, 245, 155, 0.28);
}

.contact-consent a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(0, 245, 155, 0.55);
  text-underline-offset: 2px;
}

.contact-consent a:hover {
  color: var(--accent);
}

.contact-consent-secondary {
  margin-top: 0;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-optional {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  background: rgba(0, 245, 155, 0.12);
  border: 1px solid rgba(0, 245, 155, 0.3);
  border-radius: 999px;
  padding: 1px 8px;
  margin-right: 6px;
  vertical-align: 1px;
}

.form-status {
  min-height: 1.2em;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.03);
  line-height: 1.45;
}

.form-status.error {
  color: #ffb4ab;
  background: rgba(255, 180, 171, 0.08);
  border-color: rgba(255, 180, 171, 0.28);
}

.form-status.ok {
  color: #8dffc8;
  background: rgba(0, 245, 155, 0.08);
  border-color: rgba(0, 245, 155, 0.28);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

.legal-page {
  padding: 64px 0 80px;
}

.legal-panel {
  max-width: 860px;
  padding: 34px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(14px);
}

.legal-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  margin-bottom: 10px;
}

.legal-panel h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.legal-intro {
  max-width: 740px;
  color: #c5cfc7;
  font-size: 1.02rem;
  margin-bottom: 28px;
}

.legal-panel section + section {
  margin-top: 22px;
}

.legal-panel h2 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.legal-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-updated {
  color: #8b958d;
  font-size: 0.8rem;
  margin-top: -16px;
  margin-bottom: 28px;
}

.legal-panel ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
  display: grid;
  gap: 6px;
}

.legal-panel li::marker {
  color: var(--accent);
}

.legal-panel strong {
  color: var(--text);
  font-weight: 600;
}

.legal-panel a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(0, 245, 155, 0.55);
  text-underline-offset: 2px;
}

.legal-panel a:hover {
  color: var(--accent);
}

.legal-fill {
  color: var(--accent);
  font-size: 0.86em;
  background: rgba(0, 245, 155, 0.08);
  border: 1px dashed rgba(0, 245, 155, 0.35);
  border-radius: 4px;
  padding: 1px 6px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.footer-wrap img {
  width: 58px;
}

.footer-wrap p {
  color: #c5cfc8;
  font-size: 0.79rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.73rem;
  color: #bcc7bf;
}

.footer-links .social-link {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cfd9d2;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links .social-link svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-links .social-link:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.section.in-view h2 {
  animation: flyInTitle 1.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.section.in-view .problem-grid > *,
.section.in-view .services-grid > *,
.section.in-view .timeline .step,
.section.in-view .stats-grid > *,
.section.in-view .contact-grid > *,
.section.in-view .tools-track > .tool {
  opacity: 0;
  transform: translate3d(var(--fly-x, 0px), 14px, 0) scale(0.992);
  filter: blur(3px);
  animation: flyInCard 1.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity, filter;
}

.section.in-view .problem-grid > *:nth-child(odd),
.section.in-view .services-grid > *:nth-child(odd),
.section.in-view .timeline .step:nth-child(odd),
.section.in-view .stats-grid > *:nth-child(odd),
.section.in-view .contact-grid > *:nth-child(odd),
.section.in-view .tools-track > .tool:nth-child(odd) {
  --fly-x: -12px;
}

.section.in-view .problem-grid > *:nth-child(even),
.section.in-view .services-grid > *:nth-child(even),
.section.in-view .timeline .step:nth-child(even),
.section.in-view .stats-grid > *:nth-child(even),
.section.in-view .contact-grid > *:nth-child(even),
.section.in-view .tools-track > .tool:nth-child(even) {
  --fly-x: 12px;
}

.section.in-view .problem-grid > *:nth-child(1),
.section.in-view .services-grid > *:nth-child(1),
.section.in-view .timeline .step:nth-child(1),
.section.in-view .stats-grid > *:nth-child(1),
.section.in-view .contact-grid > *:nth-child(1),
.section.in-view .tools-track > .tool:nth-child(1) { animation-delay: 0.28s; }

.section.in-view .problem-grid > *:nth-child(2),
.section.in-view .services-grid > *:nth-child(2),
.section.in-view .timeline .step:nth-child(2),
.section.in-view .stats-grid > *:nth-child(2),
.section.in-view .contact-grid > *:nth-child(2),
.section.in-view .tools-track > .tool:nth-child(2) { animation-delay: 0.54s; }

.section.in-view .services-grid > *:nth-child(3),
.section.in-view .timeline .step:nth-child(3),
.section.in-view .stats-grid > *:nth-child(3),
.section.in-view .tools-track > .tool:nth-child(3) { animation-delay: 0.78s; }

.section.in-view .services-grid > *:nth-child(4),
.section.in-view .timeline .step:nth-child(4),
.section.in-view .stats-grid > *:nth-child(4),
.section.in-view .tools-track > .tool:nth-child(4) { animation-delay: 0.96s; }

.section.in-view .timeline .step:nth-child(5),
.section.in-view .tools-track > .tool:nth-child(5) { animation-delay: 1.14s; }

.section.in-view .tools-track > .tool:nth-child(6) { animation-delay: 1.28s; }
.section.in-view .tools-track > .tool:nth-child(7) { animation-delay: 1.46s; }
.section.in-view .tools-track > .tool:nth-child(8) { animation-delay: 1.64s; }
.section.in-view .tools-track > .tool:nth-child(9) { animation-delay: 1.82s; }
.section.in-view .tools-track > .tool:nth-child(10) { animation-delay: 2s; }
.section.in-view .tools-track > .tool:nth-child(11) { animation-delay: 2.18s; }
.section.in-view .tools-track > .tool:nth-child(12) { animation-delay: 2.36s; }

.section.in-view .tools-track > .tool:nth-child(n + 13) {
  animation-delay: 2.54s;
}

.section.in-view .reveal.is-visible {
  animation: flyInCard 1.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes flyInTitle {
  from {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes flyInCard {
  from {
    opacity: 0;
    transform: translate3d(var(--fly-x, 0px), 14px, 0) scale(0.992);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.35s cubic-bezier(0.16, 1, 0.3, 1), transform 1.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .timeline-line {
    display: none;
  }

  .step {
    min-height: auto;
    padding: 0;
    text-align: left;
    align-items: flex-start;
  }

  .step-bottom {
    padding-top: 0;
  }

  .step-dot {
    display: none;
  }

  .step p {
    max-width: none;
  }

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

  .tool {
    flex-basis: calc((100% - 20px) / 3);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-family: inherit;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(11, 14, 12, 0.96);
  }

  .main-nav.open {
    display: flex;
  }

  .btn-top {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-inner {
    min-height: auto;
  }

  .problem-grid,
  .services-grid,
  .timeline,
  .stats-grid,
  .about-creds,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

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

  .contact-benefits {
    grid-template-columns: 1fr;
  }

  .contact-text {
    padding: 24px 18px 18px;
  }

  .contact-footnote {
    padding: 12px 14px;
  }

  .tools-slider {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tools-nav {
    display: none;
  }

  .tool {
    min-height: 88px;
    flex-basis: calc((100% - 10px) / 2);
    font-size: 0.95rem;
  }

  .tool .material-symbols-outlined {
    font-size: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
