/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== VARIABLES ===== */
:root {
  --yellow: #f5b800;
  --yellow-dark: #d9a300;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --text-light: #ffffff;
  --text-gray: #cccccc;
  --blue-accent: #4a90d9;
  --card-border: #4a90d9;
  --section-pad: 80px 0;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #333;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--yellow); }

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
  padding: 2px 4px;
  border-radius: 4px;
  transition: color 0.2s;
}
.lang-btn.active, .lang-btn:hover { color: var(--yellow); }
.lang-sep { color: #999; }

/* Social icons header */
.social-icons { display: flex; gap: 8px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  transition: transform 0.2s, opacity 0.2s;
}
.social-btn:hover { transform: scale(1.1); opacity: 0.9; }
.social-btn.whatsapp { background: #25d366; }
.social-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  margin-top: 72px;
}
.slides-wrapper {
  position: relative;
  width: 100%; height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-1 { background-color: #111; }
.slide-2 { background-color: #111; }
.slide-3 { background-color: #111; }

/* Slide image — uses <img> so object-position works precisely */
.slide-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  z-index: 0;
  display: block;
}
@media (min-width: 1024px) {
  .slide-bg-img {
    /* On desktop shift image to the right — keeps illustration visible, text on dark left */
    object-position: 70% 15%;
  }
}

/* Add a subtle pattern overlay to simulate the illustrated look */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(245,184,0,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
  z-index: 0;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,0.88) 28%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.18) 85%);
  z-index: 1;
}
@media (max-width: 768px) {
  .slide-overlay {
    background: rgba(0,0,0,0.52);
  }
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 60px;
}

.services-tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  transition: border-color 0.2s;
}
.services-tag:hover { border-color: var(--yellow); color: var(--yellow); }

.slide-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.slide-content p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 500px;
}

/* Watermark */
.slide-watermark {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.07);
  letter-spacing: 2px;
  user-select: none;
  pointer-events: none;
}

/* Slider arrows */
.slide-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
}
.slide-arrow:hover { background: rgba(245,184,0,0.3); border-color: var(--yellow); }
.slide-arrow.prev { left: 20px; }
.slide-arrow.next { right: 20px; }

/* Dots */
.slide-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active { background: var(--yellow); transform: scale(1.3); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.3px;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-yellow {
  background: var(--yellow);
  color: #1a1a1a;
}
.btn-yellow:hover { background: var(--yellow-dark); }

/* ===== WHY US ===== */
.why-us {
  background: var(--dark2);
  padding: 80px 0;
}
.section-title {
  text-align: center;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.3;
}
.features-grid {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  flex: 0 0 160px;
  max-width: 160px;
}
.feature-item.feature-center .feature-circle {
  width: 110px; height: 110px;
  font-size: 2.2rem;
}
.feature-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  background: rgba(245,184,0,0.08);
  transition: background 0.3s, transform 0.3s;
}
.feature-circle:hover { background: rgba(245,184,0,0.18); transform: scale(1.06); }
.feature-item p {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ===== HOW WE WORK ===== */
.how-we-work {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.how-we-work::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at center, rgba(245,184,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.how-we-work .section-title { margin-bottom: 60px; }

.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  flex: 0 0 120px;
}
.step-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  font-size: 1.5rem;
  background: rgba(245,184,0,0.07);
}
.step p {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  max-width: 90px;
  line-height: 1.4;
}
.step-line {
  flex: 1;
  min-width: 24px;
  max-width: 60px;
  height: 2px;
  background: var(--yellow);
  opacity: 0.5;
  flex-shrink: 0;
  align-self: center;
  margin-top: -32px;
}

/* ===== PRODUCTS ===== */
.products {
  background: #f8f9fa;
  padding: 80px 0;
}
.products-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #111;
  margin-bottom: 48px;
  letter-spacing: 1px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.25s;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(74,144,217,0.18);
  transform: translateY(-3px);
}
.product-img-wrap {
  flex-shrink: 0;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4f8;
  border-radius: 10px;
  overflow: hidden;
  min-height: 120px;
}
.product-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.82rem;
  color: var(--blue-accent);
  line-height: 1.5;
  flex: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  gap: 12px;
}
.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111;
  white-space: nowrap;
}
.btn-buy {
  background: var(--yellow);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-buy:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.btn-info {
  background: transparent;
  border: 2px solid var(--blue-accent);
  color: var(--blue-accent);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.btn-info:hover { background: var(--blue-accent); color: #fff; transform: translateY(-1px); }
.product-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

/* Product placeholder image */
.product-placeholder {
  width: 100%;
  min-height: 70px;
  background: linear-gradient(135deg, #e8edf2 0%, #d0dae4 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #666;
  text-align: center;
  padding: 8px;
  letter-spacing: 0.3px;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--dark2);
  padding: 80px 0;
}
.contact-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.contact-sub {
  text-align: center;
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 40px;
}
.contact-form {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 60px;
  flex-wrap: wrap;
  justify-content: center;
}
.form-input {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 0.95rem;
  color: #fff;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.5); }
.form-input:focus {
  border-color: var(--yellow);
  background: rgba(255,255,255,0.16);
}

/* Contact divider */
.contact-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: var(--yellow);
  opacity: 0.5;
}
.divider-text {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
  max-width: 260px;
  line-height: 1.4;
}

/* Contact info row */
.contact-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hours {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-item i {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-item span, .contact-item a {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
}
.contact-item a:hover { color: var(--yellow); }
.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(245,184,0,0.3);
}
.map-responsive {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.map-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark2);
  padding: 0 0 24px;
}
.footer-divider {
  height: 1px;
  background: var(--yellow);
  opacity: 0.3;
  margin-bottom: 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-lang {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: left;
  padding: 0;
  transition: color 0.2s;
}
.footer-lang-btn.active, .footer-lang-btn:hover { color: #fff; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}
.footer-link {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-link:hover { color: #fff; }
.footer-copy {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  border: none;
  color: #111;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--yellow-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav { gap: 20px; }
  .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Header mobile */
  .nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
  }
  .nav.open { display: flex; }
  .nav-link { font-size: 1rem; }
  .hamburger { display: flex; }
  .header-right { display: none; }

  .hero { height: 80vh; }
  .slide-content { padding: 0 32px; }
  .slide-content h1 { font-size: 1.8rem; }

  .features-grid { gap: 20px; justify-content: center; }
  .feature-item { flex: 0 0 130px; }

  .steps-row { gap: 0; justify-content: flex-start; }
  .step { flex: 0 0 100px; }
  .step-line { min-width: 16px; max-width: 30px; }

  .contact-info-row { grid-template-columns: 1fr; }
  .contact-map { margin-top: 16px; }
  .divider-text { white-space: normal; }

  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-nav { text-align: left; }
}

@media (max-width: 480px) {
  .slide-content { padding: 0 20px; }
  .contact-form { flex-direction: column; align-items: stretch; }
  .form-input { min-width: 0; }
  .features-grid { gap: 16px; }
  .feature-item { flex: 0 0 calc(50% - 16px); max-width: calc(50% - 16px); }
  .feature-item.feature-center { flex: 0 0 100%; max-width: 160px; }
  .product-card { flex-direction: column; }
  .product-img-wrap { width: 100%; flex-direction: row; }
  .product-img-wrap img { max-width: 140px; }
  .product-footer { flex-wrap: wrap; }
}

/* ===== BLOG ===== */
.blog {
  background: #fff;
  padding: 80px 0;
}
.blog .section-title { color: #111; margin-bottom: 48px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border: 1px solid #e8edf2;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); transform: translateY(-3px); }
.blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #f0f4f8;
}
.blog-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--yellow);
}
.blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.blog-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue-accent);
}
.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
}
.blog-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--yellow);
  margin-top: 8px;
  transition: gap 0.2s;
}
.blog-link:hover { gap: 10px; color: var(--yellow-dark); }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ===== BRAND FILTERS ===== */
.brand-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  background: #fff;
  border: 2px solid #dde2e8;
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.83rem;
  font-weight: 700;
  color: #555;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover { border-color: var(--yellow); color: #111; }
.filter-btn.active { background: var(--yellow); border-color: var(--yellow); color: #111; }

/* ===== NAV MOBILE FOOTER ===== */
.nav-mobile-footer { display: none; }

@media (max-width: 768px) {
  .nav-mobile-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    width: 100%;
  }
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); color: #fff; }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}
[data-animate][data-delay="100"] { transition-delay: 0.1s; }
[data-animate][data-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-delay="300"] { transition-delay: 0.3s; }
[data-animate][data-delay="400"] { transition-delay: 0.4s; }
[data-animate][data-delay="500"] { transition-delay: 0.5s; }
