:root {
  --bg: #0f0f0f;
  --bg-soft: #171717;
  --bg-card: #1f1f1f;
  --text: #f2f2f2;
  --muted: #b7b7b7;
  --line: #2b2b2b;
  --accent: #ff6a00;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* LANGUAGE SWITCH - FIX */
.language-switch {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(6, 38px);
  gap: 8px;
}

.language-switch a {
  width: 38px;
  height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.22);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.story img,
.remote img {
  width: 100%;
  border: none;
}

.language-switch a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.language-switch a.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 45%, rgba(255,106,0,.16), transparent 28%),
    linear-gradient(90deg, #000 0%, #050505 55%, #111 100%);
}

.hero__machine {
  position: absolute;
  right: 3vw;
  bottom: 5vh;
  width: min(56vw, 860px);
  max-height: 82vh;
  object-fit: contain;
  opacity: .9;
  filter: drop-shadow(0 40px 70px rgba(0,0,0,.75));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
}

.brand__mark {
  width: 100px;
  max-width: 200px;
  height: auto;
  display: block;
}

.brand__text {
  padding-left: 18px;
  border-left: 2px solid var(--accent);
}

.brand__name {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .08em;
}

.brand__claim {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .22em;
}

/* TYPO */
h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 104px);
  line-height: .9;
  letter-spacing: -.04em;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

.hero__subtitle {
  margin: 18px 0 8px;
  color: var(--accent);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 620px;
}

.hero__text {
  max-width: 500px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  max-width: 540px;
}

.hero__badges span {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color: var(--text);
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

/* BUTTONS */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--ghost {
  border: 1px solid var(--accent);
  color: var(--text);
}

/* SECTIONS */
.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.grid {
  display: grid;
  gap: 18px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 24px;
  min-height: 210px;
}

.card h2 {
  font-size: 21px;
  text-transform: uppercase;
}

.card p,
.section p,
.use-list {
  color: var(--muted);
}

.icon {
  color: var(--accent);
  font-size: 42px;
  margin-bottom: 16px;
  font-weight: 900;
}

.split {
  display: grid;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  color: var(--accent) !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 12px;
}

/* VIDEO */
.video-placeholder {
  width: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  background: #000;
  border: 1px solid var(--line);
}

/* PARAMS */
.param {
  padding: 22px;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
}

.param span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.param strong {
  color: var(--accent);
  font-size: 26px;
}

/* LIST */
.use-list {
  margin: 0;
  padding-left: 20px;
  font-size: 20px;
}

.use-list li {
  margin-bottom: 10px;
}

/* FORM */
.contact-direct {
  margin-top: 24px;
}

.contact-direct a,
.contact-direct a:link,
.contact-direct a:visited,
.contact-direct a:-webkit-any-link,
a[href^="tel"],
a[href^="tel"]:link,
a[href^="tel"]:visited,
a[href^="tel"]:-webkit-any-link {
  color: var(--text) !important;
  text-decoration: none !important;
  font-weight: 700;
}

.contact-direct a:visited,
a[href^="tel"]:visited,
a[href^="mailto"]:visited {
  color: var(--text);
}

.contact-direct a:hover,
a[href^="tel"]:hover,
a[href^="mailto"]:hover {
  color: var(--accent);
}

.form {
  display: grid;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 22px;
}

.form-note {
  margin: 12px 0 0;
  font-size: 15px;        /* bylo 13px */
  color: var(--muted);
  text-align: center;
  opacity: .9;
  line-height: 1.4;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.contact .split {
  align-items: start;
}

input,
textarea,
button {
  width: 100%;
  font: inherit;
  border-radius: 4px;
}

input,
textarea {
  border: 1px solid #333;
  background: #111;
  color: var(--text);
  padding: 14px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

button {
  border: 0;
  background: var(--accent);
  color: #fff;
  padding: 16px;
  font-weight: 900;
  cursor: pointer;
}

/* FOOTER */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

/* DESKTOP */
@media (min-width: 760px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .split {
    grid-template-columns: 1fr 1fr;
  }
}

/* MOBILE */
@media (max-width: 759px) {
  .hero {
    min-height: auto;
    padding-bottom: 300px;
    background:
      radial-gradient(circle at 50% 78%, rgba(255,106,0,.18), transparent 34%),
      linear-gradient(180deg, #000 0%, #050505 70%, #111 100%);
  }

.hero__content {
  padding: 92px 0 52px;
}

  .brand {
    margin-bottom: 36px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

.brand__mark {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

  .section {
    padding: 48px 0;
  }

  .card {
    min-height: auto;
  }

  .footer .container {
    display: block;
  }

.hero__machine {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  bottom: 20px;
  width: 100vw;
  max-width: 100%;
  max-height: 300px;
  opacity: .55;
}

.language-switch {
  position: absolute;
  top: 12px;
  right: 12px;
  grid-template-columns: repeat(3, 42px);
  gap: 6px;
}

.language-switch a {
  width: 42px;
  height: 34px;
  font-size: 12px;
}
}


/* CONTACT LINKS - iOS FIX */
.contact-direct a,
.contact-direct a:link,
.contact-direct a:visited,
.contact-direct a:active,
.contact-direct a:-webkit-any-link,
a[href^="tel"],
a[href^="mailto"] {
  color: var(--text) !important;
  -webkit-text-fill-color: var(--text) !important;
  text-decoration: none !important;
  font-weight: 700;
}

.contact-direct a:hover {
  color: var(--accent) !important;
  -webkit-text-fill-color: var(--accent) !important;
}