/* ══════════════════════════════════════════════
   ESHTYHAR — BRAND CSS
   Colors: #ff66c4 (pink) | #b7d42a (green) | #0a0a0a (black)
   Fonts: Bebas Neue (display) | Syne (headings) | DM Sans (body)
═══════════════════════════════════════════════ */

:root {
  --pink: #ff66c4;
  --green: #b7d42a;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #181818;
  --dark3: #222222;
  --white: #ffffff;
  --gray: #888888;
  --light-gray: #333333;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ═══ CUSTOM CURSOR ═══ */
.cursor {
  width: 12px; height: 12px;
  background: var(--pink);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
}
.cursor-trail {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255, 102, 196, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 20px; height: 20px; background: var(--green); }

/* ═══ TYPOGRAPHY ═══ */
.accent-pink { color: var(--pink); }
.accent-green { color: var(--green); font-style: italic; }

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.08; }

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.section-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(255, 102, 196, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
  margin: 0 auto;
  margin-top: 1rem;
}
.section-header { text-align: center; margin-bottom: 4rem; }

/* ═══ LAYOUT ═══ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--pink);
  color: var(--black);
  box-shadow: 0 0 30px rgba(255, 102, 196, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(255, 102, 196, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.9rem 2.5rem;
}
.nav-logo img { height: 150px; filter: brightness(1); }
.nav-links { display: flex; gap: 2.5rem; }
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--pink);
  transition: width 0.25s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--pink);
  color: var(--black);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  transition: var(--transition);
}
.nav-cta:hover { box-shadow: 0 0 30px rgba(255, 102, 196, 0.5); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-link {
  font-family: 'Montserrat', sans-serif; font-weight: 900; letter-spacing: -0.02em;
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--pink); }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
  width: 600px; height: 600px;
  background: var(--pink);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--green);
  bottom: -100px; left: -50px;
  animation-delay: 3s;
}
.blob-3 {
  width: 500px; height: 500px;
  background: var(--pink);
  bottom: -150px; right: -100px;
  animation-delay: 1.5s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(183, 212, 42, 0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(183, 212, 42, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(183, 212, 42, 0); }
}
.hero-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900; letter-spacing: -0.02em;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.hero-title .line { display: block; }
.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Ticker */
.hero-ticker {
  position: absolute;
  bottom: 80px;
  left: 0; right: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.85rem 0;
  z-index: 1;
}
.ticker-track {
  display: flex;
  gap: 2rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ticker-track .sep { color: var(--pink); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  opacity: 0.4;
}
.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(var(--white), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
}

/* ═══ STATS BAR ═══ */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 4rem;
  flex: 1;
  min-width: 180px;
}
.stat-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900; letter-spacing: -0.02em;
  font-size: 3.5rem;
  color: var(--pink);
  line-height: 1;
}
.stat-plus {
  font-family: 'Montserrat', sans-serif; font-weight: 900; letter-spacing: -0.02em;
  font-size: 2.5rem;
  color: var(--green);
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.5rem;
}
.stat-divider {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.08);
}

/* ═══ SERVICES ═══ */
.services {
  padding: 8rem 0;
  background: var(--black);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--green));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(255, 102, 196, 0.2); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.service-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(183, 212, 42, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

/* ═══ ABOUT ═══ */
.about {
  padding: 8rem 0;
  background: var(--dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  height: 420px;
}
.about-logo-big {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 3rem;
  z-index: 2;
  width: 320px;
}
.about-logo-big img { width: 100%; }
.about-accent-box {
  position: absolute;
  top: 30px; right: 0;
  width: 180px; height: 180px;
  background: linear-gradient(135deg, var(--pink), transparent);
  border-radius: var(--radius-lg);
  opacity: 0.15;
  z-index: 1;
}
.about-dot-grid {
  position: absolute;
  bottom: 20px; left: 0;
  width: 120px; height: 120px;
  background-image: radial-gradient(rgba(183, 212, 42, 0.3) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  z-index: 1;
}
.about-body {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--dark2);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
}
.pillar-icon {
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.pillar strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.25rem;
}
.pillar p { font-size: 0.8rem; color: var(--gray); margin: 0; }

/* ═══ PROMOTIONS ═══ */
.promotions {
  padding: 8rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.promo-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.promotions .container { position: relative; z-index: 1; }

.promo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.promo-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
}
.promo-card:hover { transform: translateY(-6px); }
.promo-featured {
  border-color: var(--pink);
  background: rgba(255, 102, 196, 0.04);
  transform: translateY(-10px);
}
.promo-featured:hover { transform: translateY(-16px); }
.promo-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.promo-platform {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.platform-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}
.platform-icon.meta { background: linear-gradient(135deg, #0668E1, #1A77F2); }
.platform-icon.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.platform-icon.google { background: var(--white); color: #4285F4; }
.platform-icon.multi { background: linear-gradient(135deg, var(--pink), var(--green)); color: var(--black); font-size: 1.2rem; }

.promo-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.promo-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.promo-list {
  margin-bottom: 2rem;
}
.promo-list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.promo-list li::before {
  content: '✓';
  color: var(--green);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ═══ WHY US ═══ */
.why-us {
  padding: 8rem 0;
  background: var(--dark);
}
.why-header { text-align: center; margin-bottom: 4rem; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-item {
  padding: 2rem;
  border-left: 2px solid rgba(255, 102, 196, 0.2);
  transition: var(--transition);
}
.why-item:hover { border-left-color: var(--pink); }
.why-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900; letter-spacing: -0.02em;
  font-size: 3rem;
  color: rgba(255, 102, 196, 0.15);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.why-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.why-item p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }

/* ═══ CONTACT ═══ */
.contact {
  padding: 8rem 0;
  background: var(--black);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.contact-icon { font-size: 1.1rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); }
.form-group select option { background: var(--dark2); }

.form-success {
  display: none;
  text-align: center;
  font-size: 0.85rem;
  color: var(--green);
  padding: 0.75rem;
  background: rgba(183, 212, 42, 0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(183, 212, 42, 0.2);
}
.form-success.show { display: block; }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 5rem 2rem 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-logo img { height: 100 px; margin-bottom: 1rem; }
.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  height: 200px;   /* reduce size */
  width: auto;
}
.footer-logo p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; max-width: 260px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .promo-cards { grid-template-columns: 1fr; }
  .promo-featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; gap: 0; }
  .stat-divider { width: 60px; height: 1px; }
  .stat-item { padding: 1.5rem 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: clamp(3.5rem, 16vw, 6rem); }
}

/* ═══ WHATSAPP FLOATING WIDGET ═══ */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-fab {
  width: 60px; height: 60px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0); }
}

.wa-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: var(--pink);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: badgeBounce 1s ease-in-out infinite alternate;
}
@keyframes badgeBounce {
  from { transform: scale(1); }
  to { transform: scale(1.2); }
}

.wa-popup {
  width: 300px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.85) translateY(10px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wa-popup.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.wa-popup-header {
  background: #25D366;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wa-avatar {
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.wa-info { flex: 1; }
.wa-info strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
}
.wa-info span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
}
.wa-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.wa-close:hover { color: white; }

.wa-popup-body {
  padding: 1.25rem;
}
.wa-bubble {
  background: var(--dark3);
  border-radius: 12px 12px 12px 3px;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.wa-bubble::before {
  content: '';
  position: absolute;
  bottom: -1px; left: -8px;
  width: 12px; height: 12px;
  background: var(--dark3);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.wa-start-btn {
  display: block;
  margin: 0 1.25rem 1.25rem;
  background: #25D366;
  color: white;
  text-align: center;
  padding: 0.85rem;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.wa-start-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}