:root {
  --primary: #2563eb;
  --secondary: #0f172a;
  --accent: #06b6d4;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.14);
  --text: #e2e8f0;
  --text-soft: #94a3b8;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 20px 40px rgba(2, 6, 23, 0.35);
  --glow: 0 0 0 1px rgba(56, 189, 248, 0.2), 0 0 35px rgba(37, 99, 235, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 20%, #1d4ed8 0%, rgba(29, 78, 216, 0.25) 24%, transparent 50%),
    radial-gradient(circle at 80% 12%, #0891b2 0%, rgba(8, 145, 178, 0.2) 20%, transparent 45%),
    linear-gradient(160deg, #020617 0%, #0f172a 45%, #111827 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.page-main {
  padding-top: 96px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
  pointer-events: none;
  z-index: -2;
}

.section {
  padding: 72px 0;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  margin: 0 0 12px;
}

.section-subtitle {
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 0 28px;
}

.glass {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 94vw);
  z-index: 99;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45);
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 21px;
  height: 21px;
  fill: #f8fafc;
}

.brand h1,
.brand p {
  margin: 0;
  line-height: 1.1;
}

.brand h1 {
  font-size: 0.98rem;
  font-family: "Poppins", sans-serif;
}

.brand p {
  font-size: 0.7rem;
  color: var(--text-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-weight: 500;
  color: #cbd5e1;
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-size: 0.9rem;
  font-weight: 600;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 0;
  background: rgba(148, 163, 184, 0.2);
  color: #fff;
  font-size: 1.2rem;
}

.hero {
  min-height: 96vh;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2, 6, 23, 0.75), rgba(15, 23, 42, 0.45)),
    url("https://images.unsplash.com/photo-1588702547919-26089e690ecc?auto=format&fit=crop&w=1800&q=80") center/cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(6, 182, 212, 0.32), transparent 45%);
  z-index: -1;
}

.hero-panel {
  padding: clamp(22px, 3vw, 44px);
  max-width: 760px;
  text-align: center;
}

.kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.hero h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.15;
}

.hero p {
  margin: 16px auto 26px;
  color: #dbeafe;
  max-width: 620px;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  color: #f8fafc;
  background: linear-gradient(130deg, #2563eb, #06b6d4);
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.45);
}

.btn-soft {
  color: #eff6ff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.65s linear;
  background: rgba(255, 255, 255, 0.45);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.trust-bar {
  margin-top: -46px;
  padding: 16px 20px;
  text-align: center;
  font-weight: 600;
  box-shadow: var(--glow);
}

.grid {
  display: grid;
  gap: 18px;
}

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

.card {
  padding: 24px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.65);
  box-shadow: 0 20px 35px rgba(8, 145, 178, 0.22);
}

.card h3 {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
}

.card p {
  margin: 0;
  color: var(--text-soft);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(6, 182, 212, 0.24));
  box-shadow: inset 0 0 0 1px rgba(147, 197, 253, 0.22);
}

.brand-pill {
  padding: 16px 14px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.brand-pill img {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 10px 20px rgba(37, 99, 235, 0.28));
}

.brand-pill span {
  font-size: 0.95rem;
  color: #e2e8f0;
}

.two-col {
  display: grid;
  gap: 22px;
  align-items: center;
}

.media {
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bullet-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
}

.bullet {
  display: flex;
  gap: 10px;
  align-items: start;
  color: #dbeafe;
}

.bullet span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(6, 182, 212, 0.28);
  margin-top: 2px;
}

.testimonial-wrap {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial {
  min-width: 100%;
  padding: 26px;
}

.testimonial p {
  margin: 0 0 14px;
  color: #dbeafe;
}

.testimonial strong {
  font-family: "Poppins", sans-serif;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.4);
  border: 0;
  padding: 0;
}

.dot.active {
  background: var(--accent);
  box-shadow: 0 0 14px rgba(6, 182, 212, 0.7);
}

.cta-box {
  padding: clamp(22px, 3vw, 40px);
  text-align: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(6, 182, 212, 0.2));
  box-shadow: var(--glow);
}

.contact-preview {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.form {
  display: grid;
  gap: 12px;
}

.input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(203, 213, 225, 0.3);
  background: rgba(15, 23, 42, 0.55);
  color: #f8fafc;
  padding: 12px 14px;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.floating-wrap {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 10px;
  z-index: 120;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.4);
}

.float-btn svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.float-call {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.float-wa {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.footer {
  padding: 30px 0 40px;
  text-align: center;
  color: var(--text-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.page-hero {
  padding: 54px 0 10px;
}

.page-hero .hero-panel {
  text-align: left;
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
}

.map-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

@media (min-width: 740px) {
  .services-grid,
  .why-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .two-col,
  .contact-preview {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

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

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

@media (max-width: 900px) {
  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 16px;
    display: none;
    background: rgba(15, 23, 42, 0.9);
    z-index: 120;
  }

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

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 150px;
  }
}

@media (max-width: 580px) {
  .navbar {
    padding: 10px 12px;
  }

  .hero {
    min-height: 92vh;
  }

  .trust-bar {
    margin-top: -24px;
  }

  .section {
    padding: 60px 0;
  }
}
