:root {
  --bg: #050505;
  --bg-soft: #0c0c0c;
  --panel: #111111;
  --panel-2: #171717;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,122,0,0.24);
  --text: #ffffff;
  --muted: #b5b5b5;
  --accent: #ff7a00;
  --accent-2: #ff9b38;
  --accent-soft: rgba(255,122,0,0.12);
  --shadow: 0 24px 70px rgba(0,0,0,0.42);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,122,0,0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(255,122,0,0.08), transparent 18%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7,7,7,0.84);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 30px rgba(255,122,0,0.24);
  flex-shrink: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 34px rgba(255,122,0,0.24);
}

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

.btn-secondary {
  background: rgba(255,255,255,0.03);
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover { border-color: var(--line-strong); }

.hero {
  padding: 76px 0 46px;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--accent-soft);
  color: #ffd2a7;
  font-size: 14px;
  font-weight: 700;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 760px;
}

.accent-text { color: var(--accent); }

.hero-text {
  margin: 0 0 26px;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

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

.stat {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(24px);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  position: relative;
  padding: 20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
}

.hero-media {
  min-height: 560px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.44)),
    url('images/hero.jpg') center/cover;
  border: 1px solid rgba(255,255,255,0.08);
}

.float-box {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(8,8,8,0.88);
  border: 1px solid rgba(255,255,255,0.08);
}

.float-box strong {
  display: block;
  font-size: 19px;
  margin-bottom: 4px;
}

.float-box span {
  color: var(--muted);
  font-size: 14px;
}

section {
  padding: 42px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
}

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

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

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

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(28px);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,122,0,0.24);
  box-shadow: 0 24px 70px rgba(0,0,0,0.5);
}

.feature-card h3,
.product-card h3,
.faq-item h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.feature-card p,
.product-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
}


.service-card {
  padding: 0;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.service-card h3,
.service-card p,
.service-card .tag {
  margin-left: 22px;
  margin-right: 22px;
}

.service-card h3 {
  margin-top: 18px;
}

.service-card .tag {
  margin-bottom: 22px;
}

.tag {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  color: #ffd0a1;
  background: rgba(255,122,0,0.08);
  border: 1px solid rgba(255,122,0,0.18);
}

.product-card {
  padding: 22px;
  overflow: hidden;
}

.product-body {
  padding: 0;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(28px);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
}

.contact-box,
.form-box {
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(28px);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
}

form {
  display: grid;
  gap: 14px;
}

input, textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus, textarea:focus {
  border-color: rgba(255,122,0,0.35);
  box-shadow: 0 0 0 4px rgba(255,122,0,0.08);
}

input::placeholder,
textarea::placeholder {
  color: #8d8d8d;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  padding: 30px 0 46px;
  color: #8f8f8f;
  font-size: 14px;
}

.footer-row {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 999px;
  color: #111;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 36px rgba(255,122,0,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
}

.sticky-call:hover {
  transform: translateY(-2px);
}

.reveal.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity .75s ease, transform .75s ease;
}

@media (max-width: 1100px) {
  .service-plain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .cta-actions { justify-content: flex-start; }
  .nav-links { display: none; }

  .hero-wrap,
  .grid-3,
  .grid-2,
  .contact-wrap,
  .hero-stats,
  .service-plain-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 48px; }
  .hero-media { min-height: 380px; }

  .float-box {
    position: static;
    margin-top: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-actions .btn-secondary { display: none; }
  h1 { font-size: clamp(36px, 11vw, 56px); }
}

@media (max-width: 640px) {
  .service-card img { height: 210px; }
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}



.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.social-link {
  min-height: 56px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  font-weight: 800;
  transition: .25s ease;
}

.social-link:hover {
  border-color: rgba(255,122,0,0.24);
  transform: translateY(-2px);
}

.cta {
  padding: 34px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at left top, rgba(255,122,0,0.18), transparent 28%),
    linear-gradient(180deg, #111 0%, #0d0d0d 100%);
  border: 1px solid rgba(255,122,0,0.18);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(28px);
}

.cta h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.04em;
}

.cta p {
  margin: 0;
  color: var(--muted);
  max-width: 600px;
  font-size: 18px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}


.form-error,
.form-status {
  margin-top: -4px;
  font-size: 14px;
  min-height: 20px;
}

.form-error {
  color: #ff8a8a;
}

.form-status {
  color: var(--muted);
}

.form-status.is-loading {
  color: #ffd2a7;
}

.form-status.is-success {
  color: #9ff0b0;
}

.form-status.is-error {
  color: #ff8a8a;
}

input.is-invalid,
textarea.is-invalid {
  border-color: rgba(255, 90, 90, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 90, 90, 0.08);
}

button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
