:root {
  --bg: #07080a;
  --bg-elev: #0e1014;
  --surface: #14171d;
  --surface-2: #1b1f27;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --orange: #f97316;
  --orange-hot: #fb923c;
  --orange-deep: #c2410c;
  --text: #f5f6f8;
  --muted: #9aa3b2;
  --ok: #4ade80;
  --err: #fca5a5;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max: 1120px;
  --font: "Outfit", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(900px 480px at 8% -8%, rgba(249, 115, 22, 0.28), transparent 50%),
    radial-gradient(720px 380px at 100% 0%, rgba(234, 88, 12, 0.18), transparent 46%),
    radial-gradient(600px 320px at 70% 80%, rgba(249, 115, 22, 0.08), transparent 55%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 15%, transparent 72%);
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  left: -80px;
  top: 18%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 68%);
  filter: blur(10px);
  animation: glow-drift 16s ease-in-out infinite alternate;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 100;
  background: var(--orange);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 8, 10, 0.78);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}

.brand img {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.brand:hover img {
  transform: scale(1.06);
  filter: drop-shadow(0 8px 18px rgba(249, 115, 22, 0.35));
}

.brand span em {
  color: var(--orange);
  font-style: normal;
}

.nav-desk {
  display: none;
  align-items: center;
  gap: 6px;
}

.nav-desk a {
  position: relative;
  text-decoration: none;
  font-size: 0.92rem;
  color: #d6dbe4;
  padding: 8px 10px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-desk a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  border-radius: 99px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-desk a:hover,
.nav-desk a.is-active {
  color: #fff;
  background: rgba(249, 115, 22, 0.14);
}

.nav-desk a:hover::after,
.nav-desk a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.socials {
  display: none;
  align-items: center;
  gap: 6px;
}

.social {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.social:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.social svg {
  width: 14px;
  height: 14px;
}

.social.yt { background: #ff0000; }
.social.fb { background: #1877f2; }
.social.ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 650;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.28) 48%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, #ff9a3c, var(--orange));
  color: #fff;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: rgba(249, 115, 22, 0.7);
  background: rgba(249, 115, 22, 0.1);
}

.menu-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  display: grid;
  place-items: center;
}

.menu-btn svg {
  width: 20px;
  height: 20px;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(7, 8, 10, 0.96);
  padding: 12px 0 18px;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile a {
  display: block;
  text-decoration: none;
  padding: 12px 4px;
  color: #e8ebf0;
}

.nav-mobile .socials {
  display: flex;
  margin-top: 10px;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 56px 0 28px;
}

.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-hot);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.hero h1 {
  margin: 14px 0 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ffffff 36%, #fdba74 160%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 16px 0 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 28px;
}

.stat {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(20, 23, 29, 0.7);
  border-radius: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.12);
}

.stat b {
  display: block;
  font-size: 0.98rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img.hero-logo {
  width: min(460px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(249, 115, 22, 0.18)) drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
  animation: floaty 6s ease-in-out infinite;
}

.seal-chip {
  position: absolute;
  right: 2%;
  top: 10%;
  bottom: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(10, 11, 14, 0.86);
  border: 1px solid rgba(251, 191, 36, 0.35);
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.12), var(--shadow);
  animation: chip-in 0.8s ease 0.3s both;
}

.seal-chip img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.seal-chip small {
  display: block;
  color: #fbbf24;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.seal-chip b {
  font-size: 0.86rem;
}

.models {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0 8px;
}

.models span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: #d5dae3;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.models span:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(249, 115, 22, 0.55);
  background: rgba(249, 115, 22, 0.12);
}

.section {
  padding: 64px 0;
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.kicker {
  margin: 0 0 8px;
  color: var(--orange-hot);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
}

.section-head p,
.page-hero p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 56ch;
}

.page-hero {
  padding: 48px 0 12px;
}

.gallery {
  display: grid;
  gap: 12px;
}

.shot {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 220px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.shot:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.16);
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.7s ease;
}

.shot:hover img {
  transform: scale(1.07);
}

.shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  font-size: 0.92rem;
}

.cards-3,
.cards-2 {
  display: grid;
  gap: 14px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.14);
}

.card h3 {
  margin: 12px 0 0;
  font-size: 1.15rem;
}

.card p {
  color: var(--muted);
  line-height: 1.55;
}

.card p a {
  color: var(--orange-hot);
  text-decoration: none;
}

.card p a:hover {
  text-decoration: underline;
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange-hot);
  transition: transform 0.25s ease, background 0.25s ease;
}

.card:hover .icon-box {
  transform: scale(1.08);
  background: rgba(249, 115, 22, 0.22);
}

.icon-box svg {
  width: 20px;
  height: 20px;
}

.cert-band {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(251, 191, 36, 0.2), transparent 40%),
    var(--surface);
  border: 1px solid rgba(251, 191, 36, 0.28);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.06), 0 20px 50px rgba(251, 191, 36, 0.08);
}

.cert-band img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  animation: floaty 7s ease-in-out infinite;
}

.cert-meta {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

.videos {
  display: grid;
  gap: 14px;
}

.video {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 10px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.video:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.12);
}

.video-frame {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video h3 {
  margin: 10px 8px 6px;
  font-size: 1rem;
}

.contact-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

.info-list {
  display: grid;
  gap: 10px;
}

.info {
  padding: 16px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.info:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.1);
}

.info span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.info a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.info a:hover {
  color: var(--orange-hot);
}

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form h3 {
  margin: 0 0 16px;
}

.fields {
  display: grid;
  gap: 12px;
}

label span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.88rem;
  color: #d7dce5;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #0a0b0e;
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.7);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.16);
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.9rem;
}

.check input {
  width: auto;
  margin-top: 3px;
}

.hp {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 1.2em;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-status.ok { color: var(--ok); }
.form-status.err { color: var(--err); }

.download-hero {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.download-hero:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.14);
}

.download-hero a {
  display: block;
}

.download-hero img {
  width: 100%;
}

.download-copy {
  padding: 18px 20px 22px;
}

.paths {
  display: grid;
  gap: 14px;
}

.path {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.path:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.14);
}

.path h2 {
  margin: 10px 0 0;
  font-size: 1.4rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 36px 0 28px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}

.footer-nav a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: #d5dae3;
  font-size: 0.9rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-nav a:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(249, 115, 22, 0.5);
  background: rgba(249, 115, 22, 0.1);
}

.map-block h3 {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #d7dce5;
}

.map-frame {
  position: relative;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-social {
  text-align: center;
  margin-top: 22px;
}

.footer-social .socials {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.legal {
  text-align: center;
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 18px;
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
}

.wa-float > .btn-primary {
  animation: pulse-wa 2.4s ease-in-out infinite;
}

.wa-panel {
  display: none;
  width: min(360px, calc(100vw - 32px));
  margin-bottom: 10px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(10, 11, 14, 0.96);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.wa-panel.is-open {
  display: block;
}

.wa-panel h3 {
  margin: 0 0 4px;
}

.wa-panel p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.wa-panel .fields {
  gap: 8px;
}

.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: none;
  padding: 16px;
  border-radius: 16px;
  background: rgba(10, 11, 14, 0.96);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.cookie.is-open {
  display: block;
}

.cookie p {
  margin: 0 0 12px;
  color: #d7dce5;
  font-size: 0.9rem;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .header-row .socials {
    display: none;
  }

  .nav-desk a {
    padding: 8px;
    font-size: 0.84rem;
  }
}

@media (min-width: 768px) {
  .nav-desk,
  .socials {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery {
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 230px 230px;
  }

  .shot:first-child {
    grid-row: 1 / 3;
  }

  .shot,
  .shot img {
    min-height: 100%;
    height: 100%;
  }

  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-2,
  .videos,
  .paths,
  .contact-grid,
  .cert-band {
    grid-template-columns: 1fr 1fr;
  }

  .fields.two {
    grid-template-columns: 1fr 1fr;
  }

  .cookie {
    left: auto;
    right: 20px;
    width: 400px;
  }
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    padding-top: 12px;
  }
}

.hero-grid > div:first-child {
  animation: rise-in 0.7s ease both;
}

@keyframes glow-drift {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate(90px, 40px) scale(1.2); opacity: 1; }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.08); }
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 10px 24px rgba(249, 115, 22, 0.32); }
  50% { box-shadow: 0 12px 34px rgba(249, 115, 22, 0.62); }
}

@keyframes chip-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
