:root {
  --green: #29e66f;
  --green-2: #00b85f;
  --mint: #f0fff5;
  --ink: #071016;
  --ink-2: #111d25;
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.64);
  --paper: #f5f5f5;
  --white: #ffffff;
  --lime: #a7ff3f;
  --deep-green: #032817;
  --line: rgba(0, 0, 0, 0.14);
  --glass: rgba(255, 255, 255, 0.11);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  transition-property: background-color, background, color, border-color, box-shadow, opacity, transform, filter;
  transition-duration: 260ms;
  transition-timing-function: ease;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--green) #070909;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #070909;
}

::-webkit-scrollbar-thumb {
  border: 3px solid #070909;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--lime));
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 52%, #ffffff 100%);
  background-size: 44px 44px, auto;
  line-height: 1.5;
}

body::selection {
  color: var(--ink);
  background: var(--green);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease, padding 220ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  right: clamp(18px, 4vw, 58px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(41, 230, 111, 0.45), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.site-header[data-scrolled="true"]::after {
  opacity: 1;
}

.site-header[data-scrolled="true"] {
  padding-top: 12px;
  padding-bottom: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.header-phone,
.hero-actions,
.contact-strip,
.language-switcher {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 11px;
  font-weight: 950;
  font-size: 1.08rem;
}

.brand-logo {
  width: 186px;
  height: auto;
  transition: transform 180ms ease, filter 180ms ease;
}

.brand-logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(41, 230, 111, 0.22);
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 0 18px rgba(41, 230, 111, 0.28));
  transform: translateY(-1px);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--green), var(--lime));
  box-shadow: 0 14px 34px rgba(41, 230, 111, 0.28);
}

.nav {
  justify-self: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.site-header[data-scrolled="true"] .nav {
  border-color: rgba(7, 16, 22, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.nav a {
  padding: 9px 15px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 0.9rem;
  opacity: 0.92;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav a:hover {
  color: var(--ink);
  background: var(--green);
  transform: translateY(-1px);
}

.language-switcher {
  justify-self: end;
  margin-right: 52px;
  gap: 3px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.site-header[data-scrolled="true"] .language-switcher {
  border-color: rgba(7, 16, 22, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.lang-btn {
  min-width: 58px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.flag-icon {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 20px;
  height: 14px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.flag-icon::before,
.flag-icon::after {
  content: "";
  position: absolute;
  inset: 0;
}

.flag-cz {
  background: linear-gradient(#ffffff 0 50%, #d7141a 50%);
}

.flag-cz::before {
  width: 54%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #11457e;
}

.flag-sk {
  background: linear-gradient(#ffffff 0 33.33%, #0b4ea2 33.33% 66.66%, #ee1c25 66.66%);
}

.flag-sk::before {
  inset: 3px auto auto 4px;
  width: 6px;
  height: 8px;
  border-radius: 2px;
  background: #ffffff;
}

.flag-gb {
  background: #012169;
}

.flag-gb::before {
  background:
    linear-gradient(34deg, transparent 43%, #ffffff 43% 57%, transparent 57%),
    linear-gradient(-34deg, transparent 43%, #ffffff 43% 57%, transparent 57%),
    linear-gradient(90deg, transparent 38%, #ffffff 38% 62%, transparent 62%),
    linear-gradient(0deg, transparent 34%, #ffffff 34% 66%, transparent 66%);
}

.flag-gb::after {
  background:
    linear-gradient(34deg, transparent 47%, #c8102e 47% 53%, transparent 53%),
    linear-gradient(-34deg, transparent 47%, #c8102e 47% 53%, transparent 53%),
    linear-gradient(90deg, transparent 43%, #c8102e 43% 57%, transparent 57%),
    linear-gradient(0deg, transparent 40%, #c8102e 40% 60%, transparent 60%);
}

.theme-toggle {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.site-header[data-scrolled="true"] .theme-toggle {
  border-color: rgba(7, 16, 22, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.theme-toggle:hover {
  color: var(--ink);
  background: var(--green);
  transform: translateY(-1px);
}

.lang-btn:hover,
.lang-btn.is-active {
  color: var(--ink);
  background: var(--green);
  transform: translateY(-1px);
}

.header-phone {
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  padding: 128px 18px 58px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.08) 44%, transparent 50% 100%);
  transform: translateX(-120%);
  animation: heroSheen 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 15s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(41, 230, 111, 0.2), transparent 34rem),
    linear-gradient(180deg, rgba(4, 9, 13, 0.74), rgba(4, 9, 13, 0.9)),
    linear-gradient(90deg, rgba(4, 9, 13, 0.8), rgba(4, 9, 13, 0.56), rgba(4, 9, 13, 0.8));
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 14% 10% auto;
  height: 58%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(41, 230, 111, 0.16), transparent 64%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 22px rgba(41, 230, 111, 0.7);
}

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

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.91;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.25rem);
  line-height: 0.98;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 23px;
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: transform 190ms ease, box-shadow 190ms ease, background 190ms ease, border-color 190ms ease;
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--green), var(--lime));
  box-shadow: 0 18px 42px rgba(41, 230, 111, 0.34);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.btn-dark {
  color: var(--white);
  background: #050505;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.magnetic:hover {
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  width: min(840px, 100%);
  margin-top: 40px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: 12px;
  width: min(880px, 100%);
  margin-top: 24px;
}

.link-preview-card {
  overflow: hidden;
  display: grid;
  min-height: 188px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(7, 9, 9, 0.74);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.link-preview-card:hover {
  border-color: rgba(41, 230, 111, 0.48);
  background: rgba(7, 9, 9, 0.88);
  transform: translateY(-5px);
}

.preview-url {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #3158ff, #4b5dff);
  font-size: 0.84rem;
  font-weight: 950;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 92px;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(4, 9, 9, 0.92), rgba(4, 9, 9, 0.42)),
    #0b0f10;
}

.preview-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.preview-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 8, 8, 0.9), transparent 74%);
}

.preview-logo {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
}

.preview-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(41, 230, 111, 0.25));
}

.preview-visual-gear,
.preview-visual-video {
  background:
    radial-gradient(circle at 70% 24%, rgba(41, 230, 111, 0.28), transparent 12rem),
    linear-gradient(135deg, #08100c, #050606);
}

.preview-visual-gear > i,
.preview-visual-video > i {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-size: 2.35rem;
  filter: drop-shadow(0 0 24px rgba(41, 230, 111, 0.28));
}

.preview-visual-gear .preview-logo,
.preview-visual-video .preview-logo {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 34px;
  height: 34px;
}

.link-preview-card strong,
.link-preview-card small {
  display: block;
  padding: 0 14px;
  text-align: left;
}

.link-preview-card strong {
  padding-top: 12px;
  font-size: 0.94rem;
  line-height: 1.1;
}

.link-preview-card small {
  padding-top: 4px;
  padding-bottom: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 750;
}

.hero-stats div {
  position: relative;
  overflow: hidden;
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 16, 22, 0.46);
  backdrop-filter: blur(16px);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.hero-stats div:hover {
  border-color: rgba(41, 230, 111, 0.46);
  background: rgba(7, 16, 22, 0.62);
  transform: translateY(-4px);
}

.hero-stats div::after,
.feature::after,
.apply-form::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%);
  pointer-events: none;
}

.hero-stats i {
  color: var(--green);
  font-size: 1.16rem;
}

.hero-stats strong,
.hero-stats span,
.footer strong,
.footer span {
  display: block;
}

.hero-stats strong {
  margin-top: 16px;
  font-size: 1.02rem;
}

.hero-stats span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.hero-orbit {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: min(1060px, calc(100% - 36px));
  height: min(620px, calc(100% - 170px));
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34), 0 0 32px rgba(41, 230, 111, 0.08);
  backdrop-filter: blur(14px);
  font-size: 0.9rem;
  font-weight: 900;
  animation: orbitFloat 6.5s ease-in-out infinite, orbitGlow 3.8s ease-in-out infinite;
}

.orbit-card i {
  color: var(--green);
}

.orbit-card-one {
  top: 8%;
  left: 4%;
}

.orbit-card-two {
  top: 10%;
  right: 4%;
  animation-delay: -1.4s;
}

.orbit-card-three {
  right: 14%;
  bottom: 4%;
  animation-delay: -2.7s;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 4vw, 58px);
  bottom: 26px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  animation: bounceCue 1.8s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(64px, 8vw, 118px) clamp(18px, 5vw, 76px);
  scroll-margin-top: 92px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(41, 230, 111, 0.22);
  border-radius: 999px;
  color: var(--green);
  background: rgba(41, 230, 111, 0.08);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 36px;
}

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

.feature,
.start-step {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature::before,
.start-step::before,
.apply-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(41, 230, 111, 0.16), transparent 28%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.feature:hover::before,
.start-step:hover::before,
.apply-form:hover::before {
  opacity: 1;
}

.feature:hover,
.start-step:hover {
  border-color: rgba(41, 230, 111, 0.55);
  box-shadow: 0 28px 78px rgba(7, 16, 22, 0.14);
}

.feature.accent {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(41, 230, 111, 0.14), transparent 42%),
    #050505;
}

.feature-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 46px;
  place-items: center;
  border-radius: 16px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--green), var(--lime));
  box-shadow: 0 16px 36px rgba(41, 230, 111, 0.26);
  font-size: 1.25rem;
}

.feature p,
.requirements-content p,
.form-copy p {
  margin: 0;
  color: var(--muted);
}

.feature.accent p {
  color: rgba(255, 255, 255, 0.74);
}

.start-section {
  background:
    linear-gradient(180deg, #ffffff, #f4f4f4);
}

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

.start-flow::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 184, 95, 0.46), rgba(167, 255, 63, 0.6), transparent);
}

.start-step {
  min-height: 310px;
  background:
    linear-gradient(145deg, rgba(41, 230, 111, 0.06), transparent 48%),
    rgba(255, 255, 255, 0.96);
}

.start-step .step-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.9;
  font-weight: 950;
  text-shadow: 0 0 28px rgba(41, 230, 111, 0.22);
  -webkit-text-stroke: 1px rgba(41, 230, 111, 0.34);
}

.start-step > i {
  position: absolute;
  top: 31px;
  right: 28px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--green), var(--lime));
  box-shadow: 0 16px 36px rgba(41, 230, 111, 0.24);
  font-size: 1.18rem;
}

.start-step p {
  margin: 0;
  color: var(--muted);
}

.requirements {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(41, 230, 111, 0.1), transparent 32%),
    linear-gradient(180deg, #050505, #111111);
}

.requirements-content p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.checklist div:hover {
  transform: translateX(6px);
  border-color: rgba(41, 230, 111, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.checklist i {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: var(--ink);
  background: var(--green);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(320px, 1.24fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.form-copy {
  position: sticky;
  top: 104px;
}

.form-copy p {
  margin-top: 18px;
}

.contact-strip {
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}

.contact-strip a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
  font-weight: 950;
}

.contact-strip i {
  color: var(--green-2);
}

.apply-form {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.form-progress {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: rgba(7, 16, 22, 0.08);
}

.form-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--lime));
  transition: width 220ms ease;
}

.form-head {
  display: grid;
  gap: 10px;
  margin-bottom: 4px;
}

.form-head p {
  margin: 0;
  color: var(--muted);
}

.form-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: #f1f1f1;
  font-weight: 950;
}

.form-badge i {
  color: var(--green-2);
}

.form-block {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(7, 16, 22, 0.1);
  border-radius: var(--radius);
  background: rgba(247, 247, 247, 0.88);
}

.form-block > legend {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  color: var(--ink);
}

.form-block > legend span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--green), var(--lime));
  font-size: 0.75rem;
  font-weight: 950;
}

.field {
  display: grid;
  gap: 8px;
}

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

label,
legend {
  color: var(--ink-2);
  font-weight: 950;
  font-size: 0.92rem;
}

label > span,
legend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

label i,
legend i,
.choice-title i {
  color: var(--green-2);
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  font: inherit;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease, background 150ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-2);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(41, 230, 111, 0.18);
  transform: translateY(-1px);
}

.choice-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-weight: 950;
  font-size: 0.92rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.choice-grid label {
  min-height: 78px;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid label > span {
  display: grid;
  height: 100%;
  min-height: 78px;
  place-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.choice-grid label > span i {
  font-size: 1.2rem;
}

.choice-grid label:has(input:checked) > span {
  border-color: rgba(41, 230, 111, 0.9);
  background: #f0fff5;
  box-shadow: 0 12px 28px rgba(41, 230, 111, 0.12);
  transform: translateY(-1px);
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-group legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.radio-group label:has(input:checked) {
  border-color: rgba(41, 230, 111, 0.9);
  background: #f0fff5;
  transform: translateY(-1px);
}

.radio-group input {
  width: auto;
  margin: 0;
  accent-color: var(--green-2);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-2);
  font-weight: 900;
}

.footer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 6vw, 82px);
  padding: clamp(44px, 7vw, 82px) clamp(18px, 5vw, 76px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(41, 230, 111, 0.16), transparent 24rem),
    linear-gradient(180deg, #050505, #0a0d0f);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent);
  pointer-events: none;
}

.footer-main,
.footer-contact-simple {
  position: relative;
  z-index: 1;
}

.footer span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-brand img {
  width: 230px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 26px rgba(41, 230, 111, 0.18));
}

.footer-main p {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.02rem;
}

.footer-contact-simple {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-contact-simple a {
  display: inline-grid;
  grid-template-columns: 42px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  min-width: 210px;
}

.footer-contact-simple a:hover {
  color: var(--green);
  transform: translateY(-2px);
}

.footer-contact-simple i {
  grid-row: 1 / 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(41, 230, 111, 0.34);
  border-radius: 50%;
  color: var(--green);
  background: rgba(41, 230, 111, 0.08);
}

.footer-contact-simple a > span {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-contact-simple a > strong {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 950;
}

.footer-meta {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta strong {
  color: #ffffff;
}

.guide-page {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f4f5f6 0%, #ffffff 46%, #f4f4f4 100%);
  background-size: 44px 44px, auto;
}

.guide-header {
  position: sticky;
  top: 0;
}

.guide-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 118px 0 80px;
}

.guide-hero {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(40px, 6vw, 78px) 0 34px;
}

.guide-hero h1 {
  max-width: 820px;
  color: #050505;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

.guide-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.guide-actions,
.mail-cta,
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.guide-actions {
  margin-top: 30px;
}

.guide-card {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.12);
}

.guide-email {
  max-width: 980px;
  margin: 0 auto;
}

.mail-head {
  display: grid;
  min-height: 156px;
  place-items: center;
  border-bottom: 6px solid var(--green);
  color: var(--white);
  background:
    radial-gradient(circle at 50% 20%, rgba(41, 230, 111, 0.22), transparent 20rem),
    #0d0f14;
}

.mail-head strong {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.mail-head span {
  color: var(--green);
}

.mail-body {
  padding: clamp(24px, 5vw, 58px);
}

.mail-body h2 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.mail-body h3 {
  margin-top: 28px;
}

.mail-body p {
  color: var(--muted);
}

.earn-box {
  display: grid;
  gap: 8px;
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--green);
  background: #f0fff5;
}

.earn-box span {
  color: rgba(17, 17, 17, 0.7);
}

.earn-box strong {
  color: #08753f;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
}

.guide-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.guide-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(17, 17, 17, 0.78);
}

.guide-list i {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
}

.fee-box {
  margin: 30px 0;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  background: #f0f1f3;
}

.fee-box span {
  color: rgba(17, 17, 17, 0.48);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.fee-box p {
  max-width: 680px;
  margin: 10px auto 0;
  color: #222;
  font-weight: 750;
}

.mail-cta {
  flex-direction: column;
  margin-top: 34px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  min-width: min(360px, 100%);
  padding: 0 22px;
  border: 2px solid var(--green-2);
  border-radius: 999px;
  color: var(--green-2);
  font-weight: 950;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.pill-link:hover {
  color: var(--ink);
  background: var(--green);
  transform: translateY(-2px);
}

.mail-footer {
  padding: 36px clamp(24px, 5vw, 58px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  background: #f6f6f6;
}

.mail-footer h3 {
  margin: 0;
}

.mail-footer p {
  margin: 14px 0 22px;
  color: rgba(17, 17, 17, 0.68);
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #08753f;
  font-weight: 850;
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.guide-steps article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.07);
}

.guide-steps span {
  display: inline-flex;
  margin-bottom: 34px;
  color: rgba(0, 0, 0, 0.22);
  font-size: 2.6rem;
  line-height: 0.9;
  font-weight: 950;
}

.guide-steps p {
  margin: 0;
  color: var(--muted);
}

.guide-manual {
  display: grid;
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.manual-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(145deg, rgba(41, 230, 111, 0.08), transparent 34%),
    rgba(10, 12, 14, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.manual-card.highlight {
  border-color: rgba(41, 230, 111, 0.34);
}

.manual-card h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(1.7rem, 4vw, 3.1rem);
}

.manual-card p {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.68);
}

.manual-number {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(41, 230, 111, 0.42);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.86;
  font-weight: 950;
}

.manual-points,
.delivery-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.delivery-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.manual-points div,
.delivery-flow div {
  min-height: 156px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.manual-points i,
.delivery-flow i {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
}

.manual-points strong,
.manual-points span,
.delivery-flow strong,
.delivery-flow span {
  display: block;
}

.manual-points span,
.delivery-flow span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
}

.notice-box,
.tip-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(41, 230, 111, 0.1);
}

.notice-box i,
.tip-box i {
  color: var(--green);
  font-size: 1.25rem;
}

.tip-box p {
  margin: 0;
}

.guide-list.compact li {
  color: rgba(255, 255, 255, 0.72);
}

.guide-final {
  max-width: 1040px;
  margin: 20px auto 0;
  padding: clamp(26px, 5vw, 46px);
  text-align: center;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(41, 230, 111, 0.1), transparent 38%),
    #090b0d;
}

.guide-final h2 {
  color: #ffffff;
}

.guide-final p {
  color: rgba(255, 255, 255, 0.7);
}

.seo-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 128px 0 88px;
}

.seo-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  min-height: 580px;
  padding: clamp(46px, 7vw, 88px) clamp(18px, 6vw, 72px);
  border: 1px solid rgba(41, 230, 111, 0.18);
  border-radius: 18px;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 0%, rgba(41, 230, 111, 0.26), transparent 28rem),
    linear-gradient(135deg, rgba(41, 230, 111, 0.08), transparent 42%),
    #070909;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.seo-hero::before,
.seo-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.seo-hero::before {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.62;
}

.seo-hero::after {
  right: -90px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 230, 111, 0.18), transparent 68%);
  filter: blur(6px);
}

.seo-hero > * {
  position: relative;
  z-index: 1;
}

.seo-hero h1 {
  max-width: 900px;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
}

.seo-hero p {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

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

.seo-grid article {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(145deg, rgba(41, 230, 111, 0.075), transparent 52%),
    rgba(11, 13, 15, 0.92);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.22);
}

.seo-grid article::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.68;
}

.seo-grid article:hover {
  border-color: rgba(41, 230, 111, 0.36);
  transform: translateY(-4px);
}

.seo-grid i {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 16px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--green), var(--lime));
  box-shadow: 0 16px 36px rgba(41, 230, 111, 0.22);
}

.seo-grid h2 {
  color: #ffffff;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.seo-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.seo-faq {
  margin-top: 18px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(145deg, rgba(41, 230, 111, 0.055), transparent 44%),
    rgba(8, 10, 12, 0.94);
}

.seo-faq h2 {
  max-width: 780px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.seo-faq details {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.seo-faq details:first-of-type {
  margin-top: 28px;
}

.seo-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: #ffffff;
  font-weight: 950;
  cursor: pointer;
}

.seo-faq summary::after {
  content: "+";
  color: var(--green);
  font-size: 1.25rem;
}

.seo-faq details[open] summary::after {
  content: "-";
}

.seo-faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.64);
}

[data-theme="dark"] body,
body.guide-page {
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 50% 0%, rgba(41, 230, 111, 0.13), transparent 32rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #050606 0%, #0a0d0f 54%, #050606 100%);
  background-size: auto, 44px 44px, auto;
}

[data-theme="dark"] .site-header[data-scrolled="true"] {
  color: #ffffff;
  background: rgba(5, 6, 6, 0.86);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
}

[data-theme="dark"] .site-header[data-scrolled="true"] .nav,
[data-theme="dark"] .site-header[data-scrolled="true"] .language-switcher,
[data-theme="dark"] .site-header[data-scrolled="true"] .theme-toggle {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .section-heading h2,
[data-theme="dark"] .form-copy h2,
[data-theme="dark"] .guide-hero h1 {
  color: #ffffff;
}

[data-theme="dark"] .feature,
[data-theme="dark"] .start-step,
[data-theme="dark"] .apply-form,
[data-theme="dark"] .contact-strip a,
[data-theme="dark"] .form-block {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(41, 230, 111, 0.055), transparent 48%),
    rgba(12, 14, 16, 0.92);
}

[data-theme="dark"] .start-step .step-number {
  color: var(--green);
  text-shadow: 0 0 34px rgba(41, 230, 111, 0.35);
}

[data-theme="light"] .start-step .step-number {
  color: #08753f;
  text-shadow: none;
}

[data-theme="dark"] .feature p,
[data-theme="dark"] .start-step p,
[data-theme="dark"] .form-copy p,
[data-theme="dark"] .form-head p,
[data-theme="dark"] .guide-hero p {
  color: rgba(255, 255, 255, 0.64);
}

[data-theme="dark"] label,
[data-theme="dark"] legend,
[data-theme="dark"] .choice-title,
[data-theme="dark"] .form-block > legend {
  color: rgba(255, 255, 255, 0.88);
}

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea,
[data-theme="dark"] .choice-grid label > span,
[data-theme="dark"] .radio-group label {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .choice-grid label:has(input:checked) > span,
[data-theme="dark"] .radio-group label:has(input:checked) {
  color: var(--ink);
  background: var(--green);
}

[data-theme="dark"] .form-badge,
[data-theme="dark"] .fee-box {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

[data-theme="dark"] .start-section {
  background: linear-gradient(180deg, #050606, #0d1012);
}

[data-theme="dark"] .guide-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: #090b0d;
}

[data-theme="light"] body {
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f4f5f6 0%, #ffffff 54%, #f4f4f4 100%);
  background-size: 44px 44px, auto;
}

[data-theme="light"] .manual-card,
[data-theme="light"] .guide-final {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.12);
  background: #ffffff;
}

[data-theme="light"] .manual-card h2,
[data-theme="light"] .guide-final h2,
[data-theme="light"] .guide-hero h1 {
  color: var(--text);
}

[data-theme="light"] .manual-card p,
[data-theme="light"] .manual-points span,
[data-theme="light"] .delivery-flow span,
[data-theme="light"] .guide-final p,
[data-theme="light"] .guide-list.compact li {
  color: var(--muted);
}

[data-theme="light"] .manual-points div,
[data-theme="light"] .delivery-flow div {
  border-color: rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.5%, 1%, 0);
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -18px, 0) rotate(1deg);
  }
}

@keyframes orbitGlow {
  0%,
  100% {
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34), 0 0 28px rgba(41, 230, 111, 0.06);
  }
  50% {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 44px rgba(41, 230, 111, 0.18);
  }
}

@keyframes heroSheen {
  0%,
  42% {
    transform: translateX(-120%);
  }
  58%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes bounceCue {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-orbit {
    width: calc(100% - 28px);
    height: min(520px, calc(100% - 150px));
  }

  .orbit-card-one {
    top: 4%;
    left: 0;
  }

  .orbit-card-two {
    top: 8%;
    right: 0;
  }

  .orbit-card-three {
    right: 8%;
    bottom: 0;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .nav {
    display: none;
  }

  .language-switcher {
    justify-self: end;
  }

  .hero {
    min-height: 96vh;
    padding-top: 116px;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 50% 42%, rgba(41, 230, 111, 0.18), transparent 24rem),
      linear-gradient(180deg, rgba(4, 9, 13, 0.78), rgba(4, 9, 13, 0.92));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
  }

  .hero-stats,
  .intro-grid,
  .start-flow,
  .requirements,
  .form-section,
  .seo-grid,
  .field.two {
    grid-template-columns: 1fr;
  }

  .start-flow::before {
    display: none;
  }

  .hero-stats {
    margin-top: 26px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    width: min(390px, 100%);
  }

  .hero-orbit {
    opacity: 0.9;
    height: min(500px, calc(100% - 130px));
  }

  .orbit-card {
    padding: 9px 11px;
    font-size: 0.76rem;
  }

  .orbit-card-one {
    top: 1%;
    left: 2%;
  }

  .orbit-card-two {
    top: 6%;
    right: 1%;
  }

  .orbit-card-three {
    right: 4%;
    bottom: 0;
  }

  .form-copy {
    position: static;
  }

  .radio-group {
    grid-template-columns: 1fr;
  }

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

  .seo-page {
    padding-top: 106px;
  }

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

  .footer {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .guide-shell {
    width: min(100% - 28px, 760px);
    padding-top: 92px;
  }

  .guide-steps {
    grid-template-columns: 1fr 1fr;
  }

  .manual-points,
  .delivery-flow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    display: none;
  }

  .brand-logo {
    width: 146px;
  }

  .brand-logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .header-phone span {
    display: inline;
  }

  .language-switcher {
    margin-left: auto;
    margin-right: 48px;
  }

  .lang-btn {
    min-width: 44px;
  }

  .lang-btn span:last-child {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats div {
    min-height: 94px;
  }

  .hero-orbit {
    display: block;
    height: min(420px, calc(100% - 150px));
    opacity: 0.82;
  }

  .orbit-card {
    padding: 8px 10px;
    font-size: 0.68rem;
  }

  .orbit-card-one {
    top: 0;
    left: 0;
  }

  .orbit-card-two {
    top: 5%;
    right: 0;
  }

  .orbit-card-three {
    right: 0;
    bottom: 0;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .guide-actions .btn,
  .mail-cta .btn,
  .pill-link {
    width: 100%;
  }

  .guide-steps {
    grid-template-columns: 1fr;
  }

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

  .footer-contact-simple {
    justify-content: flex-start;
  }

  .seo-page {
    width: min(100% - 24px, 1180px);
    padding-bottom: 56px;
  }

  .seo-hero {
    padding: 34px 18px;
    border-radius: 14px;
  }

  .seo-hero h1 {
    font-size: clamp(2.25rem, 15vw, 3.2rem);
  }

  .seo-grid article,
  .seo-faq {
    padding: 22px;
  }

  .seo-faq summary {
    padding: 16px 0;
  }

  .seo-faq p {
    padding: 0 0 18px;
  }

  .manual-points,
  .delivery-flow {
    grid-template-columns: 1fr;
  }

  .mail-head {
    min-height: 122px;
  }
}
