:root {
  --white: #ffffff;
  --black: #090909;
  --silver: #c7ccd3;
  --silver-deep: #858d98;
  --blue: #165dff;
  --blue-soft: #edf3ff;
  --orange: #ff7a1a;
  --orange-soft: #fff1e7;
  --text: #111827;
  --muted: #667085;
  --line: #e7eaf0;
  --section: #f8fafc;
  --shadow: 0 20px 50px rgba(9, 9, 9, 0.08);
  --shadow-soft: 0 12px 30px rgba(22, 93, 255, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.top-contact-bar {
  background: linear-gradient(90deg, var(--black), #1f2c46, var(--orange));
  color: var(--white);
  font-size: 0.92rem;
}
.top-contact-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17,24,39,0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 18px;
  background: #000;
  box-shadow: var(--shadow);
}
.brand-copy strong,
.brand-copy span { display: block; }
.brand-copy strong {
  font-size: 1.08rem;
  font-weight: 800;
}
.brand-copy span {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 3px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-menu a {
  color: var(--muted);
  font-weight: 700;
}
.nav-menu a:hover { color: var(--blue); }
.menu-toggle {
  display: none;
  border: 0;
  background: var(--section);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 1.2rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 54px;
  background:
    radial-gradient(circle at 90% 10%, rgba(22,93,255,0.10), transparent 20%),
    radial-gradient(circle at 10% 30%, rgba(255,122,26,0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(17,24,39,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(17,24,39,0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.35), transparent 85%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: center;
}
.label-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.label-pill.dark {
  background: rgba(255,255,255,0.12);
  color: #d8e5ff;
}
.hero-copy h1,
.section-heading h2,
.highlight-copy h2,
.contact-panel h2 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.04;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  max-width: 720px;
}
.hero-text {
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 680px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 16px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #0b46cb);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--orange), #f26a0b);
  color: var(--white);
}
.btn-outline {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--line);
}
.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.hero-mini-grid article {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(199,204,211,0.55);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 18px;
}
.hero-mini-grid strong,
.hero-mini-grid span {
  display: block;
}
.hero-mini-grid strong {
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--black);
}
.hero-mini-grid span {
  color: var(--muted);
  font-weight: 600;
}
.hero-card {
  position: relative;
  background: linear-gradient(145deg, #09111f 0%, #122746 55%, #1d2430 100%);
  border-radius: var(--radius-xl);
  color: var(--white);
  padding: 34px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(9,17,31,0.22);
}
.hero-card-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -60px;
  top: -60px;
  background: radial-gradient(circle, rgba(255,122,26,0.38), transparent 60%);
  pointer-events: none;
}
.hero-logo {
  width: min(100%, 360px);
  margin: 0 auto 24px;
  border-radius: 26px;
  background: #000;
}
.hero-card-content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.18;
}
.hero-card-content p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  line-height: 1.72;
}

.services-section,
.features-section,
.contact-section {
  padding: 92px 0;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}
.section-heading h2,
.highlight-copy h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.service-box {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px 22px;
  min-height: 230px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-box h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.35;
}
.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--blue);
  background: linear-gradient(135deg, var(--blue-soft), #ffffff);
  border: 1px solid rgba(22,93,255,0.14);
}
.service-box.featured {
  background: linear-gradient(145deg, #0d1728 0%, #16335f 58%, #ff7a1a 140%);
  color: var(--white);
  border-color: transparent;
}
.service-box.featured .icon-badge {
  background: rgba(255,255,255,0.16);
  color: var(--white);
  border-color: rgba(255,255,255,0.12);
}

.highlight-section {
  padding: 0 0 20px;
}
.highlight-wrap {
  background: linear-gradient(90deg, rgba(22,93,255,0.08), rgba(255,122,26,0.10));
  border: 1px solid rgba(22,93,255,0.08);
  border-radius: 30px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.highlight-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
}

.features-section {
  background: var(--section);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--orange-soft), #ffffff);
  color: var(--orange);
  font-weight: 900;
}
.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.26rem;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 24px;
}
.contact-panel,
.social-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.contact-list li {
  padding: 15px 16px;
  border-radius: 18px;
  background: #fbfcfe;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}
.contact-list strong { color: var(--text); }
.contact-actions { margin-top: 26px; }
.social-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
}
.social-card {
  min-height: 120px;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
}
.social-card span {
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.social-card strong {
  font-size: 1.26rem;
  line-height: 1.3;
}
.social-instagram {
  background: linear-gradient(135deg, rgba(22,93,255,0.10), rgba(255,122,26,0.12));
  color: #143a8d;
}
.social-facebook {
  background: linear-gradient(135deg, rgba(9,9,9,0.92), rgba(29,36,48,0.92));
  color: var(--white);
}
.social-hours {
  background: linear-gradient(135deg, rgba(255,122,26,0.14), rgba(255,255,255,0.9));
  color: #8b3b06;
  border-color: rgba(255,122,26,0.16);
}

.site-footer {
  background: #0a0f17;
  color: var(--white);
  padding: 34px 0 92px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #000;
}
.footer-brand strong,
.footer-brand span {
  display: block;
}
.footer-brand strong { font-weight: 800; }
.footer-brand span { color: rgba(255,255,255,0.72); margin-top: 4px; }
.site-footer p { margin: 0; color: rgba(255,255,255,0.78); font-weight: 600; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--orange));
  box-shadow: 0 20px 45px rgba(22,93,255,0.26);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .features-grid,
  .contact-grid,
  .highlight-wrap {
    grid-template-columns: 1fr;
  }

  .highlight-wrap {
    display: grid;
    justify-content: stretch;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    top: 86px;
    left: 16px;
    right: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-menu.show { display: flex; }
}

@media (max-width: 640px) {
  .top-contact-inner {
    justify-content: center;
    text-align: center;
    padding: 8px 0;
  }

  .hero-section,
  .services-section,
  .features-section,
  .contact-section {
    padding: 72px 0;
  }

  .hero-copy h1 {
    font-size: 2.15rem;
  }

  .hero-mini-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .contact-panel,
  .social-panel,
  .feature-card,
  .service-box,
  .highlight-wrap {
    border-radius: 24px;
    padding: 24px;
  }

  .btn {
    width: 100%;
  }
}
