:root {
  --bg: #edf4fb;
  --surface: #ffffff;
  --ink: #1e2229;
  --muted: #4f5a6b;
  --line: #cfd8e6;
  --accent: #037ac7;
  --accent-deep: #063d7f;
  --accent-2: #f15a29;
  --accent-3: #2bb673;
  --charcoal: #414042;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(3, 122, 199, 0.17), transparent 38%),
    radial-gradient(circle at 90% 90%, rgba(241, 90, 41, 0.12), transparent 35%),
    var(--bg);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 40;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 2px 10px rgba(3, 122, 199, 0.35);
}

img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

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

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

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

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.55;
  z-index: -2;
  pointer-events: none;
}

.orb-a {
  width: 330px;
  height: 330px;
  background: rgba(3, 122, 199, 0.35);
  top: -120px;
  right: -80px;
}

.orb-b {
  width: 280px;
  height: 280px;
  background: rgba(43, 182, 115, 0.24);
  left: -120px;
  top: 50%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(207, 216, 230, 0.8);
  background: rgba(255, 255, 255, 0.75);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}

.logo-image {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(3, 122, 199, 0.22);
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(6, 61, 127, 0.2);
}

.logo-text {
  font-size: 0.98rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.88;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 6px auto;
  transition: transform 0.3s ease;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 span {
  color: var(--accent);
}

.company-line {
  margin: 0.35rem 0 0.65rem;
  font-weight: 700;
  color: var(--ink);
}

.hero-tagline {
  margin: 0.8rem 0 0.45rem;
  font-weight: 600;
  color: var(--accent-deep);
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin: 1.6rem 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(130deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 12px 24px rgba(3, 122, 199, 0.32);
}

.btn-outline {
  border-color: var(--ink);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.hero-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-3);
  display: inline-block;
  margin-right: 0.5rem;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: auto;
  min-height: 520px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.parallax-media {
  will-change: transform;
}

.floating-card {
  position: absolute;
  left: -24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  max-width: 260px;
  box-shadow: var(--shadow);
}

.section-head {
  margin-bottom: 1.6rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 6px 20px rgba(17, 17, 17, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(3, 122, 199, 0.45);
}

.process-section {
  background: linear-gradient(180deg, rgba(3, 122, 199, 0.06), rgba(255, 255, 255, 0.8));
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 2px dashed var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.8rem;
  padding: 0 0 1rem 1rem;
}

.timeline span {
  font-family: "Syne", sans-serif;
  color: var(--accent-2);
  font-size: 1.4rem;
}

.sales-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.sales-image img {
  width: 100%;
  height: auto;
  min-height: 430px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sales-copy ul {
  padding-left: 1rem;
  color: var(--muted);
}

.gallery-section {
  padding-top: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.site-footer {
  background: linear-gradient(135deg, var(--accent-deep), var(--charcoal));
  color: #ecf5f6;
}

.site-footer p {
  color: #dbe4f3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.3rem;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
  font-family: "Syne", sans-serif;
  letter-spacing: 0.01em;
}

.footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(219, 228, 243, 0.42);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.18rem;
}

.contact-card {
  border: 1px solid rgba(196, 216, 218, 0.36);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
}

.contact-card .btn-outline {
  border-color: #ecf5f6;
  margin-top: 0.8rem;
}

.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  display: inline-grid;
  place-items: center;
  background: #25d366;
  color: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.35);
  animation: waPulse 2.2s infinite;
}

.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.04);
}

.whatsapp-fab svg {
  width: 31px;
  height: 31px;
  fill: #ffffff;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.42), 0 14px 28px rgba(37, 211, 102, 0.25);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 14px 28px rgba(37, 211, 102, 0.25);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 14px 28px rgba(37, 211, 102, 0.25);
  }
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

@media (max-width: 980px) {
  .hero-grid,
  .process-grid,
  .sales-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media img,
  .sales-image img {
    min-height: 320px;
    aspect-ratio: 16 / 10;
  }

  .gallery-grid img {
    min-height: 220px;
  }

  .parallax-media {
    transform: none !important;
  }

  .floating-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 72px;
    right: 4vw;
    left: 4vw;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.85rem;
    display: grid;
    gap: 0.45rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.28s ease, transform 0.28s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: block;
  }

  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img,
  .sales-image img,
  .gallery-grid img {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .section-pad {
    padding: 4.2rem 0;
  }

  .logo-image {
    width: 38px;
    height: 38px;
  }

  .whatsapp-fab {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .whatsapp-fab,
  .btn,
  .service-card {
    transition: none;
    animation: none;
  }
}
