﻿:root {
  --orange: #e8890c;
  --orange-deep: #c46e00;
  --electric: #ffd24a;
  --black: #0a0a0a;
  --ink: #121212;
  --graphite: #1a1a1a;
  --white: #f7f4ef;
  --muted: rgba(247, 244, 239, 0.72);
  --muted-strong: rgba(247, 244, 239, 0.88);
  --line: rgba(247, 244, 239, 0.12);
  --green: #3dce6e;
  --wa: #1f9e4b;
  --wa-deep: #167a39;
  --font-display: "Bebas Neue", Impact, Haettenschweiler, sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --header-h: 4.5rem;
  --radius: 4px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--black);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.65rem clamp(1rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.55) 70%, transparent);
  backdrop-filter: blur(6px);
}

.header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo {
  width: min(42vw, 210px);
  height: auto;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
  animation: logo-pulse 4.5s ease-in-out infinite;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.status-24h {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-right: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-strong);
  white-space: nowrap;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(61, 206, 110, 0.55);
  animation: status-pulse 2.2s ease-out infinite;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  min-height: 2.35rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(247, 244, 239, 0.28);
}

.btn-call {
  background: transparent;
  border-color: rgba(247, 244, 239, 0.35);
  color: var(--white);
}

.btn-call:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-wa {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--wa), var(--wa-deep));
  color: #fff;
  box-shadow: 0 8px 24px rgba(22, 122, 57, 0.28);
}

.btn-wa:hover {
  box-shadow: 0 10px 28px rgba(22, 122, 57, 0.4);
}

.btn-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: shine 4.8s ease-in-out infinite;
  pointer-events: none;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding:
    calc(var(--header-h) + 1.5rem)
    clamp(1.1rem, 4vw, 3rem)
    clamp(2.5rem, 7vh, 4.5rem);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--black);
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video {
  z-index: 1;
}

.hero-fallback {
  z-index: 0;
  animation: kenburns 28s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.72) 42%, rgba(8, 8, 8, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0.2) 35%, rgba(8, 8, 8, 0.88) 100%);
}

.hero-circuit {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  z-index: 3;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, transparent 0, transparent 70%, rgba(232, 137, 12, 0.45) 72%, transparent 74%),
    linear-gradient(0deg, transparent 0, transparent 55%, rgba(255, 210, 74, 0.25) 57%, transparent 59%);
  background-size: 220px 140px;
  mask-image: linear-gradient(180deg, transparent, black 40%, black);
  animation: circuit-drift 22s linear infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 38rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  text-wrap: balance;
}

.hero-support {
  margin-top: 1.15rem;
  max-width: 34rem;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  color: var(--muted-strong);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-location {
  margin-top: 1.35rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.reveal {
  animation: rise 0.85s ease-out both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.32s; }
.delay-4 { animation-delay: 0.42s; }

/* ——— Sections ——— */
.section {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.1rem, 4vw, 3rem);
  background: var(--ink);
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 40%, rgba(232, 137, 12, 0.04) 50%, transparent 60%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 48px,
      rgba(255, 255, 255, 0.015) 48px,
      rgba(255, 255, 255, 0.015) 49px
    );
  pointer-events: none;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--white);
}

.section-text {
  margin-top: 1rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-text-narrow {
  max-width: 34rem;
}

.section-new {
  background:
    radial-gradient(80% 80% at 0% 0%, rgba(232, 137, 12, 0.1), transparent 50%),
    var(--graphite);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dev-bar {
  margin-top: 1.75rem;
  max-width: 28rem;
}

.dev-bar-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.dev-bar-track {
  position: relative;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.dev-bar-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--orange), var(--electric), transparent);
  animation: progress-slide 2.6s ease-in-out infinite;
}

/* ——— Differentials ——— */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.diff-item {
  padding-top: 0.25rem;
  border-top: 2px solid rgba(232, 137, 12, 0.45);
}

.diff-icon {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.9rem;
  color: var(--orange);
}

.diff-icon svg {
  width: 100%;
  height: 100%;
}

.diff-item h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--white);
}

.diff-item p {
  margin-top: 0.55rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ——— Services ——— */
.section-services {
  background: var(--black);
}

.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.service-strip li {
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.service-strip li:hover {
  border-color: rgba(232, 137, 12, 0.55);
  color: var(--white);
}

/* ——— Final CTA ——— */
.section-cta {
  background:
    radial-gradient(70% 90% at 85% 20%, rgba(232, 137, 12, 0.16), transparent 55%),
    linear-gradient(180deg, #141414, #0a0a0a);
  border-top: 1px solid var(--line);
}

.section-cta-inner {
  text-align: left;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.98;
  color: var(--white);
}

.section-cta .hero-ctas {
  margin-top: 1.5rem;
}

/* ——— Footer ——— */
.site-footer {
  padding: 1.75rem clamp(1.1rem, 4vw, 3rem) 2.25rem;
  border-top: 1px solid var(--line);
  background: #070707;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.site-footer p + p {
  margin-top: 0.35rem;
}

.site-footer a {
  color: var(--white);
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--orange);
}

/* ——— Motion ——— */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 206, 110, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(61, 206, 110, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(61, 206, 110, 0);
  }
}

@keyframes shine {
  0%,
  55% {
    transform: translateX(-120%);
  }
  75%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes progress-slide {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(320%);
  }
}

@keyframes circuit-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 180px 0, 0 180px;
  }
}

@keyframes logo-pulse {
  0%,
  100% {
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
  }
  50% {
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 10px rgba(255, 210, 74, 0.28));
  }
}

@keyframes kenburns {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .status-dot,
  .btn-shine::after,
  .dev-bar-glow,
  .hero-circuit,
  .header-logo,
  .hero-fallback {
    animation: none !important;
  }

  .hero-video {
    display: none;
  }
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .status-24h,
  .header-call {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 3.75rem;
  }

  .header-logo {
    width: min(52vw, 168px);
  }

  .hero {
    align-items: flex-end;
    padding-bottom: 2.5rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.65) 0%, rgba(8, 8, 8, 0.45) 35%, rgba(8, 8, 8, 0.94) 100%),
      linear-gradient(90deg, rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.55));
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .header-actions .btn {
    width: auto;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (min-width: 900px) {
  .hero-content {
    padding-bottom: 1rem;
  }
}
