:root {
  --ink: #151515;
  --paper: #f4f0e7;
  --white: #fffdf7;
  --lime: #d8ff3e;
  --violet: #764cff;
  --line: rgba(21, 21, 21, .17);
  --shadow: 7px 7px 0 var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 20; opacity: .09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
.nav {
  width: min(1180px, calc(100% - 40px)); height: 82px; margin: auto;
  display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line);
}
.logo { font: 700 20px Unbounded, sans-serif; letter-spacing: -.06em; }
.logo span { color: var(--violet); }
.nav nav { display: flex; gap: 34px; font-size: 14px; font-weight: 700; }
.nav nav a:hover { color: var(--violet); }
.language-switcher, .currency-switcher { display: flex; align-items: center; gap: 4px; }
.language-switcher button, .currency-switcher button {
  border: 1px solid var(--line); padding: 6px 8px; color: inherit; background: transparent;
  font-size: 10px; font-weight: 800; cursor: pointer;
}
.language-switcher button.active { color: white; border-color: var(--violet); background: var(--violet); }
.nav-cta { padding: 11px 17px; border: 1.5px solid var(--ink); font-size: 13px; font-weight: 800; }
.hero {
  width: min(1180px, calc(100% - 40px)); min-height: 690px; margin: auto;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 55px; padding: 62px 0 78px;
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 3px; background: var(--violet); }
h1, h2 { margin: 0; font-family: Unbounded, sans-serif; letter-spacing: -.055em; line-height: 1.06; }
h1 { max-width: 700px; font-size: clamp(46px, 5.7vw, 77px); }
h1 em { position: relative; color: var(--violet); font-style: normal; }
h1 em::after { content: ""; position: absolute; left: 2%; right: 0; bottom: -4px; height: 8px; background: var(--lime); z-index: -1; transform: rotate(-1.5deg); }
.lead { max-width: 620px; margin: 27px 0 32px; color: #464646; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 29px; }
.button {
  min-height: 54px; padding: 0 23px; border: 2px solid var(--ink); display: inline-flex; align-items: center; justify-content: center; gap: 20px;
  background: transparent; font-weight: 800; cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--ink); }
.button.primary { background: var(--lime); box-shadow: var(--shadow); }
.button.primary:hover { box-shadow: 10px 10px 0 var(--ink); }
.text-link { font-weight: 800; border-bottom: 2px solid var(--ink); padding: 8px 0 4px; }
.text-link span { color: var(--violet); margin-left: 8px; }
.trust-row { display: flex; gap: 0; margin-top: 57px; }
.trust-row div { min-width: 125px; padding-right: 22px; margin-right: 22px; border-right: 1px solid var(--line); }
.trust-row div:last-child { border: 0; }
.trust-row strong, .trust-row span { display: block; }
.trust-row strong { font-size: 17px; }
.trust-row span { color: #707070; font-size: 11px; margin-top: 3px; }
.hero-visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.phone {
  position: relative; width: 280px; height: 525px; padding: 10px; border: 4px solid var(--ink); border-radius: 37px; background: var(--ink);
  box-shadow: 15px 17px 0 var(--violet); transform: rotate(3deg); z-index: 2;
}
.phone::before { content: ""; position: absolute; top: 16px; left: 50%; width: 82px; height: 20px; border-radius: 20px; background: var(--ink); transform: translateX(-50%); z-index: 4; }
.phone-screen { height: 100%; border-radius: 25px; overflow: hidden; background: #27242d; color: white; }
.video-head { height: 60px; display: flex; align-items: center; gap: 8px; padding: 18px 15px 8px; font-size: 9px; }
.video-head b { margin-left: auto; }
.avatar { width: 22px; height: 22px; border: 2px solid var(--lime); border-radius: 50%; background: var(--violet); }
.scene { position: relative; height: 340px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(150deg, #413b53 0 45%, #1c1921 45%); }
.scene::before, .scene::after { content: ""; position: absolute; width: 230px; height: 110px; border: 2px solid rgba(216,255,62,.5); transform: rotate(-25deg); }
.scene::after { transform: rotate(36deg); border-color: rgba(118,76,255,.8); }
.scene-glow { width: 150px; height: 150px; border-radius: 50%; background: var(--violet); filter: blur(55px); }
.play { position: absolute; width: 55px; height: 55px; display: grid; place-items: center; padding-left: 4px; border-radius: 50%; background: var(--lime); color: var(--ink); box-shadow: 0 0 0 8px rgba(216,255,62,.18); }
.caption { position: absolute; bottom: 31px; width: 100%; text-align: center; font: 700 17px/1.4 Unbounded, sans-serif; text-shadow: 2px 2px 0 #000; }
.caption span { color: var(--lime); }
.timeline { height: 3px; margin: 11px 15px; background: #56515f; }
.timeline i { display: block; width: 68%; height: 100%; background: var(--lime); }
.meta { display: flex; gap: 27px; padding: 10px 15px; }
.meta b, .meta span { display: block; }
.meta b { font-size: 15px; }.meta span { color: #aaa4b1; font-size: 8px; }
.orbit { position: absolute; border: 1px solid rgba(21,21,21,.22); border-radius: 50%; }
.orbit-one { width: 460px; height: 460px; }
.orbit-two { width: 570px; height: 320px; transform: rotate(-23deg); }
.sticker { position: absolute; z-index: 4; padding: 9px 14px; border: 2px solid var(--ink); font: 700 13px Unbounded; box-shadow: 4px 4px 0 var(--ink); }
.sticker-one { top: 75px; right: 8px; background: var(--lime); transform: rotate(9deg); }
.sticker-two { bottom: 70px; left: 12px; color: white; background: var(--violet); transform: rotate(-8deg); }
.marquee { overflow: hidden; padding: 16px 0; border-block: 2px solid var(--ink); background: var(--lime); transform: rotate(-1deg) scale(1.02); }
.marquee div { display: flex; width: max-content; animation: scroll 25s linear infinite; }
.marquee span { padding-right: 15px; font: 700 14px Unbounded; }
@keyframes scroll { to { transform: translateX(-50%); } }
.section { width: min(1180px, calc(100% - 40px)); margin: auto; padding: 120px 0; }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(36px, 4.5vw, 58px); }
.section-head > p:last-child { color: #666; line-height: 1.65; }
.section-head.split { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-head.split > p { max-width: 370px; margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 330px; position: relative; padding: 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.25); }
.service-card.accent-card { background: var(--violet); color: white; }
.number { position: absolute; right: 30px; top: 28px; font: 600 12px Unbounded; opacity: .55; }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border: 2px solid currentColor; font: 700 17px Unbounded; transform: rotate(-3deg); }
.service-card h3 { max-width: 370px; margin: 53px 0 14px; font-size: 22px; }
.service-card p { max-width: 460px; line-height: 1.65; opacity: .75; }
.service-card small { position: absolute; left: 36px; bottom: 30px; font-weight: 700; opacity: .55; }
.prices { width: 100%; max-width: none; padding-inline: max(20px, calc((100% - 1180px)/2)); color: white; background: var(--ink); }
.prices .eyebrow span { background: var(--lime); }
.prices .section-head > p:last-child { color: #aaa; }
.currency-switcher { justify-content: flex-end; margin: -25px 0 45px; }
.currency-switcher span { margin-right: 7px; color: #aaa; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.currency-switcher button { color: white; border-color: #555; }
.currency-switcher button.active { color: var(--ink); border-color: var(--lime); background: var(--lime); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { position: relative; padding: 31px; border: 1px solid #4a4a4a; background: #202020; }
.price-card.popular { border: 2px solid var(--lime); background: #292929; transform: translateY(-13px); box-shadow: 9px 9px 0 var(--lime); }
.popular-label { position: absolute; top: 0; right: 0; padding: 7px 12px; color: var(--ink); background: var(--lime); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.price-top { display: flex; justify-content: space-between; align-items: center; }
.price-top span { font: 600 17px Unbounded; }.price-top small { color: #aaa; }
.price-card h3 { margin: 40px 0 32px; font-size: 15px; font-weight: 500; }
.price-card h3 b { font: 700 46px Unbounded; color: var(--lime); }
.price-card ul { min-height: 154px; margin: 0 0 30px; padding: 0; list-style: none; }
.price-card li { margin: 13px 0; color: #d0d0d0; font-size: 14px; }
.price-card li::before { content: "✓"; margin-right: 10px; color: var(--lime); font-weight: 800; }
.price-card .button { width: 100%; color: white; border-color: #888; }
.price-card .primary { color: var(--ink); border-color: var(--ink); }
.price-note { text-align: center; color: #999; font-size: 13px; margin: 42px 0 0; }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 28px; align-items: center; }
.steps article { min-height: 200px; padding: 28px; border-top: 3px solid var(--ink); background: rgba(255,255,255,.3); }
.steps b { color: var(--violet); font: 600 12px Unbounded; }
.steps h3 { margin: 35px 0 11px; }.steps p { color: #666; font-size: 14px; line-height: 1.6; }
.step-arrow { color: var(--violet); font-size: 30px; font-weight: 800; }
.order { width: min(1180px, calc(100% - 40px)); margin-bottom: 90px; padding: 70px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; color: white; background: var(--violet); box-shadow: 13px 13px 0 var(--ink); }
.order-copy h2 { font-size: clamp(36px, 4.2vw, 58px); }
.order-copy > p:last-child { max-width: 450px; line-height: 1.7; color: #e3dbff; }
.eyebrow.light span { background: var(--lime); }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
form label { display: grid; gap: 8px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
form label:nth-child(3), .form-button, .form-status { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 0; border-bottom: 2px solid white; border-radius: 0; padding: 13px 2px; color: white; background: transparent; outline: none; resize: vertical; }
input::placeholder, textarea::placeholder { color: #c7b8ff; }
select option { color: var(--ink); }
.form-button { margin-top: 10px; border-color: var(--ink); background: var(--lime); }
.form-status { min-height: 20px; margin: 0; color: var(--lime); font-size: 13px; font-weight: 700; }
footer { width: min(1180px, calc(100% - 40px)); min-height: 110px; margin: auto; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
footer p, footer > a:last-child { color: #666; font-size: 13px; }

@media (max-width: 900px) {
  .nav nav { display: none; }
  .language-switcher { margin-left: auto; margin-right: 14px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 20px; }
  .hero-visual { min-height: 590px; }
  .section-head.split { display: block; }
  .section-head.split > p { margin-top: 20px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); justify-self: center; }
  .order { grid-template-columns: 1fr; gap: 45px; padding: 55px 40px; }
}
@media (max-width: 600px) {
  .nav { width: calc(100% - 28px); }
  .nav-cta { display: none; }
  .language-switcher { margin-right: 0; }
  .hero, .section, .order, footer { width: calc(100% - 28px); }
  .hero { padding-top: 45px; }
  h1 { font-size: 42px; }
  .lead { font-size: 16px; }
  .trust-row { justify-content: space-between; }
  .trust-row div { min-width: 0; margin-right: 10px; padding-right: 10px; }
  .phone { width: 245px; height: 470px; }
  .scene { height: 300px; }
  .orbit-one { width: 350px; height: 350px; }
  .orbit-two { width: 380px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px; }
  .service-card small { left: 28px; }
  .prices { width: 100%; padding-inline: 14px; }
  .order { padding: 42px 24px; }
  form { grid-template-columns: 1fr; }
  form label { grid-column: 1 / -1; }
  footer { flex-wrap: wrap; gap: 10px; padding: 25px 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee div { animation: none; }
  * { transition: none !important; }
}
