*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0f172a;
  --card: #0b1221;
  --muted: #0d1424;
  --text: #e5e7eb;
  --text-muted: #9ca3af;
  --primary: #f97316;
  --primary-strong: #ea580c;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__name {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand__regions {
  font-size: 12px;
  color: var(--text-muted);
}

.nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav__list a:hover {
  color: var(--text);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.1s ease, box-shadow 0.2s ease, background 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #0b0f19;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-whatsapp {
  background: #25d366;
  color: #0b0f19;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.btn-block {
  width: 100%;
}

.btn-call {
  white-space: nowrap;
}

.hero {
  padding: 120px 0 80px;
  background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.15), transparent 32%),
              radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.12), transparent 35%),
              url("../../1.png") center/cover no-repeat;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6), var(--bg));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero__text h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  margin: 6px 0 12px;
}

.lead {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  color: var(--text-muted);
}

.hero__bullets li {
  margin-bottom: 6px;
}

.text-accent {
  color: var(--primary);
}

.hero__card {
  background: rgba(10, 15, 27, 0.9);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
}

.label {
  margin: 0;
  color: var(--text-muted);
}

.phone {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.hero__stats {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero__stats li {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.section {
  padding: 80px 0;
  background: var(--bg);
}

.section--muted {
  background: var(--muted);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.section__header p {
  color: var(--text-muted);
}

.section__header h2 {
  margin: 8px 0;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 18px;
}

.services {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  padding: 18px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.regions {
  display: grid;
  gap: 20px;
}

.regions__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.regions h3 {
  margin-bottom: 6px;
}

.regions p {
  margin: 0;
  color: var(--text-muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 13px;
}

.benefits {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 24px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.step__number {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #0b0f19;
  font-weight: 700;
}

.gallery {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 8px;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--card);
  color: var(--text);
  box-shadow: var(--shadow);
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  outline: none;
}

.faq__item[open] summary {
  color: var(--primary);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item p {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(59, 130, 246, 0.05));
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--border);
}

.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: start;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  color: var(--text-muted);
}

.contact__list li {
  margin-bottom: 10px;
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0e1526;
  color: var(--text);
  font: inherit;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: 1px solid var(--primary);
}

.form__info {
  color: var(--text-muted);
  margin: 8px 0 0;
  font-size: 13px;
}

.footer {
  background: #0a0f1c;
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--text-muted);
}

.footer__links a:hover {
  color: var(--text);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  color: var(--text-muted);
}

.footer__bottom {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14px;
}

@media (max-width: 960px) {
  .hero__content {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .nav__toggle {
    display: flex;
  }
  .nav__list {
    position: absolute;
    top: 62px;
    right: 4vw;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 14px;
    min-width: 180px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav__list.is-open {
    display: flex;
  }
  .btn-call {
    width: 100%;
    justify-content: center;
  }
  .hero {
    padding-top: 96px;
  }
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

