:root {
  --navy: #0E0F11;
  --navy-2: #2A2C30;
  --blue: #7C8894;
  --sky: #B7C0C9;
  --ink: #E7E8EA;
  --muted: #9199A3;
  --bg: #17181A;
  --bg-soft: #1C1D20;
  --card: #232428;
  --border: #34373B;
  --radius: 14px;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
section { padding: 72px 0; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 12px; color: var(--ink); font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: 30px; }
h3 { font-size: 19px; }
p { margin: 0 0 12px; }
.muted { color: var(--muted); }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #25D366; color: #fff; box-shadow: 0 6px 16px rgba(37,211,102,.35); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-light { background: #fff; color: var(--navy); }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(23,24,26,.86);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: 14.5px; color: var(--ink); }
.nav-links a:hover { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.logo-img { height: 40px; width: auto; }
.nav-phone { font-weight: 700; color: var(--ink); text-decoration: none; font-size: 14.5px; white-space: nowrap; }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--ink); }

/* Hero */
.hero {
  background: linear-gradient(180deg, #1B1C1F 0%, #17181A 100%);
  padding: 84px 0 60px;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { font-size: 42px; margin-bottom: 16px; }
.hero .sub { font-size: 17px; color: var(--muted); margin-bottom: 28px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-strip { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item { font-size: 14px; color: var(--muted); }
.trust-item strong { display: block; font-size: 22px; color: var(--ink); font-weight: 800; }
.hero-art {
  background: var(--navy);
  border-radius: 20px;
  aspect-ratio: 4/3.4;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.hero-art svg { width: 62%; height: 62%; }

/* Audience */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.audience-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.audience-card h3 { font-size: 16px; margin-bottom: 8px; }
.audience-card p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.audience-card a { font-size: 13.5px; font-weight: 700; color: var(--blue); text-decoration: none; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--card);
  transition: box-shadow .15s ease, transform .15s ease;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 26px; height: 26px; stroke: #fff; }
.service-quote { font-size: 13.5px; font-style: italic; color: var(--muted); margin-bottom: 10px; }
.service-desc { font-size: 14.5px; color: var(--ink); margin: 0; }

/* Why us */
.why-section { background: var(--bg-soft); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card { background: var(--card); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); }
.why-num { font-size: 13px; font-weight: 800; color: var(--sky); margin-bottom: 8px; }
.why-card h3 { font-size: 16px; }
.why-card p { font-size: 14px; color: var(--muted); margin: 0; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { text-align: center; padding: 0 12px; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: var(--navy); font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}

/* Brands — scrolling marquee */
.brands-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: brandsScroll 28s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes brandsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-badge {
  padding: 10px 22px; border: 1px solid var(--border); border-radius: 999px;
  font-weight: 700; color: var(--ink); font-size: 14px; background: var(--card);
  white-space: nowrap; flex-shrink: 0;
}
.brand-logo {
  height: 40px; width: auto; max-width: 140px; object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(1); opacity: 0.55;
  transition: filter .2s ease, opacity .2s ease;
}
.brand-logo:hover { filter: grayscale(0); opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .brands-track { animation: none; }
}

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; }
.gallery-caption { padding: 10px 14px; font-size: 13.5px; color: var(--muted); background: var(--card); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; font-size: 16px; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .plus { font-size: 22px; font-weight: 400; color: var(--blue); transition: transform .2s ease; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; font-size: 14.5px; color: var(--muted); }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* Contact */
.contact-section { background: var(--navy); color: var(--ink); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-section h2 { color: var(--ink); }
.contact-section .muted { color: var(--muted); }
.contact-list { list-style: none; padding: 0; margin: 24px 0; }
.contact-list li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 15px; }
.contact-list a { text-decoration: none; color: var(--ink); font-weight: 600; }
.contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 28px;
}

/* Footer */
footer.site {
  background: var(--navy); color: var(--muted); padding: 28px 0; font-size: 13px;
}
.footer-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
footer.site a { color: var(--ink); text-decoration: none; font-weight: 600; }

/* WhatsApp float button */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(37,211,102,.45);
  text-decoration: none;
}
.wa-float svg { width: 28px; height: 28px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 420px; margin: 0 auto; }
  .audience-grid, .services-grid, .why-grid, .steps, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-phone { display: none; }
  .menu-toggle { display: block; }
  .nav-links.mobile-open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--card); padding: 18px 20px; gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .hero h1 { font-size: 30px; }
  .audience-grid, .services-grid, .why-grid, .steps, .gallery-grid { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
}
