* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #0d0d0f;
  --bg-soft: #17171b;
  --bg-card: #1b1b20;
  --text: #ffffff;
  --muted: #d2d2d2;
  --muted-2: #a9a9a9;
  --accent: #ff6a00;
  --accent-dark: #e85f00;
  --green: #1db954;
  --green-dark: #18a64b;
  --blue: #2f6bff;
  --blue-dark: #2458d4;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

.accent {
  color: var(--accent);
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(13, 13, 15, 0.92);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-wrap {
  color: var(--text);
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.logo-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted-2);
  margin-top: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-height: 52px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff8a33);
  color: white;
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 16px 34px rgba(255, 106, 0, 0.35);
}

.btn-secondary {
  border: 2px solid var(--accent);
  color: var(--text);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--accent);
  color: white;
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--green), #28cf67);
  color: white;
  box-shadow: 0 12px 30px rgba(29, 185, 84, 0.2);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 16px 34px rgba(29, 185, 84, 0.3);
}

.btn-email {
  background: linear-gradient(135deg, var(--blue), #5b8cff);
  color: white;
  box-shadow: 0 12px 30px rgba(47, 107, 255, 0.22);
}

.btn-email:hover {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 16px 34px rgba(47, 107, 255, 0.34);
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url("images/hero-bg.png") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.52)),
    linear-gradient(to top, rgba(13, 13, 15, 0.85), rgba(13, 13, 15, 0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  max-width: 760px;
  padding: 100px 0 80px;
}

.small-tag {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.03;
  margin-bottom: 24px;
  font-weight: 800;
  max-width: 11ch;
}

.hero-description {
  font-size: 20px;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-pill {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f2f2f2;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

/* GENERAL */
section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

/* SERVICES */
.services {
  background: linear-gradient(180deg, #111114 0%, #0d0d0f 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-body {
  padding: 24px;
}

.service-label {
  display: inline-block;
  background: rgba(255, 106, 0, 0.12);
  color: #ffb27d;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.service-body h3 {
  font-size: 25px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-body p {
  color: var(--muted);
  font-size: 16px;
}

/* WHY US */
.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.info-card h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 20px;
  line-height: 1.15;
}

.info-card ul {
  list-style: none;
}

.info-card ul li {
  color: var(--muted);
  margin-bottom: 16px;
  padding-left: 26px;
  position: relative;
  font-size: 17px;
}

.info-card ul li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 24px;
  line-height: 1;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 30px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.step-label {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-card h3 {
  font-size: 24px;
  margin: 12px 0;
}

.process-card p {
  color: var(--muted);
}

/* CONTACT */
.contact-section {
  padding-top: 40px;
  padding-bottom: 100px;
}

.contact-box {
  background:
    linear-gradient(135deg, rgba(27, 27, 32, 0.96), rgba(17, 17, 20, 0.96)),
    url("images/hero-bg.png") center/cover no-repeat;
  border-radius: 24px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-copy {
  max-width: 700px;
}

.contact-box h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 14px;
  line-height: 1.1;
}

.contact-box p {
  color: var(--muted);
  font-size: 18px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* FOOTER */
.footer {
  padding: 28px 0 38px;
  border-top: 1px solid var(--border);
  background: #0b0b0d;
}

.footer p {
  color: var(--muted-2);
  text-align: center;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-grid,
  .process-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-text {
    padding: 90px 0 70px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-content {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-buttons,
  .contact-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 72px 0;
  }

  .service-body,
  .info-card,
  .process-card,
  .contact-box {
    padding: 24px;
  }
}