:root {
  --primary: #000000;
  --secondary: #111111;
  --accent: #f5b400;
  --text: #f5f5f5;
  --muted: #c7c7c7;
  --bg: #000000;
  --surface: #121212;
  --surface-soft: #1a1a1a;
  --border: #2a2a2a;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #000000;
}

.site-navbar {
  background: linear-gradient(90deg, #000000, #161616);
  border-bottom: 1px solid var(--border);
}

.navbar-brand,
.nav-link {
  letter-spacing: 0.2px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: block;
  background: #ffffff;
}

.brand-text-logo {
  height: 34px;
  width: auto;
  display: block;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.brand-name-text {
  color: #ffffff !important;
  font-size: 1.45rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.hero-section,
.page-hero {
  background: linear-gradient(135deg, #000000, #151515);
  color: #fff;
}

.hero-section {
  padding: 5.5rem 0;
}

.page-hero {
  padding: 4rem 0;
}

.hero-section h1,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.eyebrow,
.section-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow,
.section-tag {
  color: var(--accent);
}

.section-tag-light {
  color: #ffd66b;
}

.hero-card,
.service-card,
.info-panel,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  padding: 1.4rem;
}

.hero-card {
  color: var(--text);
}

.hero-card h2,
.service-card h3,
.contact-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.service-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: #0f0f0f;
}

.hero-copy {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.logo-marquee {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scrollLogos 26s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  padding: 1rem;
}

.logo-slide {
  min-width: 210px;
  flex: 0 0 210px;
}

.client-logo-card img {
  max-width: 100%;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero-card ul,
.check-list {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.section-block {
  padding: 4.5rem 0;
  background: #000000;
}

.section-block.bg-light {
  background: #090909 !important;
}

.section-block h2,
.section-block h3,
.section-block strong,
.contact-card label,
.contact-card h2 {
  color: #ffffff;
}

.section-heading {
  margin-bottom: 2rem;
}

.info-panel {
  display: grid;
  gap: 1rem;
  height: 100%;
  background: var(--surface-soft);
}

.info-panel p,
.service-card p,
.site-footer p,
.section-block p,
.section-block li {
  color: var(--muted);
  margin-bottom: 0;
}

.seo-support-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #000000, #171717);
  color: #fff;
  border-top: 1px solid var(--border);
}

.site-footer {
  background: #050505;
  color: #fff;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.site-footer h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
  color: #fff;
  opacity: 0.92;
}

.form-control {
  background: #0f0f0f;
  color: #ffffff;
  border: 1px solid var(--border);
}

.form-control:focus {
  background: #0f0f0f;
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(245, 180, 0, 0.15);
}

.form-control::placeholder {
  color: #a3a3a3;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .hero-section,
  .page-hero,
  .section-block,
  .cta-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .brand-text-logo {
    height: 28px;
  }

  .logo-slide {
    min-width: 170px;
    flex-basis: 170px;
  }
}
