/* PPC Control — Lite Static Rewrite
 * Dark theme matching the live homepage exactly.
 * Edit CSS variables in :root to globally tune colors / sizing.
 */

:root {
  /* Palette (from live homepage Tailwind config) */
  --bg-deep:   #161B30;
  --bg:        #1B2139;
  --bg-card:   #2B2F4A;
  --bg-input:  #364264;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);

  --gold:      #D9992B;
  --gold-2:    #F0B429;

  --green:     #16A34A;
  --green-2:   #15803D;

  --text:      #F4F4F4;
  --muted:     #A2ABCD;
  --muted-2:   #747DA1;
  --muted-3:   #8A91B3;

  --container: 1024px;     /* Tailwind max-w-5xl */
  --pad-x:     20px;
  --pad-x-md:  32px;

  --radius:    8px;
  --radius-lg: 8px;
  --shadow:    0 10px 30px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; padding: 0; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-2); text-decoration: none; }
a:hover { color: var(--gold); }
button { font: inherit; cursor: pointer; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
@media (min-width: 640px) {
  .container { padding-left: var(--pad-x-md); padding-right: var(--pad-x-md); }
}
.narrow { max-width: var(--container); }
.center { text-align: center; }

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(27,33,57,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 2px solid #D7982B;
}
@media (min-width: 768px) {
  .site-header { border-bottom-width: 4px; }
}
.header-inner {
  width: 100%;
  padding: 12px;
  display: flex; align-items: center; justify-content: flex-start;
}
@media (min-width: 640px) { .header-inner { padding: 12px 16px; } }
@media (min-width: 1024px){ .header-inner { padding: 12px 24px; } }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); flex-shrink: 0; }
.brand-logo { height: 40px; width: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,.4)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 700; font-size: 20px; color: #F4F4F4; text-transform: uppercase; letter-spacing: 0; }
@media (min-width: 768px) { .brand-name { font-size: 24px; } }
.brand-tag { font-size: 12px; color: #D9992B; font-weight: 500; margin-top: -2px; }

/* HERO */
.hero {
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 96px;
  padding-bottom: 80px;
  min-height: calc(100vh - 60px);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 0;
}
.hero-bottom-bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px; background: var(--gold-2);
  z-index: 5;
}
.hero-text {
  position: relative; z-index: 10;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .hero-text { margin-top: 0; } }
.hero-eyebrow {
  font-size: 18px; font-weight: 500; color: var(--text);
  margin: 0 0 6px;
}
@media (min-width: 768px) { .hero-eyebrow { font-size: 20px; } }
@media (min-width: 1024px){ .hero-eyebrow { font-size: 24px; } }
.hero-eyebrow span { color: var(--gold-2); }
.hero-title {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  margin: 8px auto;
  color: var(--text);
}
@media (min-width: 768px)  { .hero-title { font-size: 30px; } }
@media (min-width: 1024px) { .hero-title { font-size: 36px; } }
@media (min-width: 1280px) { .hero-title { font-size: 48px; } }
.hero-sub {
  font-size: 16px;
  margin: 0;
}
@media (min-width: 768px) { .hero-sub { font-size: 18px; } }
@media (min-width: 1024px){ .hero-sub { font-size: 20px; } }
.hero-sub span { color: var(--gold-2); font-weight: 500; }

/* HERO CARD */
.hero-card-wrap {
  position: relative; z-index: 10;
  display: flex; justify-content: center;
  padding: 0 16px;
}
.hero-card {
  width: 100%;
  max-width: 384px;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.5);
  overflow: hidden;
}
@media (min-width: 768px) { .hero-card { padding: 20px; } }

/* Reply pill */
.reply-pill-wrap {
  display: flex; justify-content: center;
  margin-bottom: 12px;
  position: relative;
}
.reply-pill {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: rgba(16,185,129,.20);
  border: 1px solid rgba(52,211,153,.25);
  border-radius: 8px;
  font-size: 11px; font-weight: 500;
  color: #6ee7b7;
  box-shadow: 0 6px 14px rgba(16,185,129,.18);
  overflow: hidden;
  animation: pill-breath 3.6s ease-in-out infinite;
}
.reply-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981;
  animation: pulse 2s ease-in-out infinite;
}
.reply-pill .shimmer {
  position: absolute;
  top: -40%; bottom: -40%; left: 0; width: 45%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.5), rgba(255,255,255,0));
  opacity: .3;
  animation: shimmer 4.2s ease-in-out infinite;
  pointer-events: none;
}
.reply-pill-wrap .ripple {
  position: absolute; left: 50%; top: 50%;
  width: 200px; height: 26px;
  margin-left: -100px; margin-top: -13px;
  border-radius: 8px;
  border: 1px solid rgba(52,211,153,.4);
  animation: ripple 2.4s ease-out infinite;
  pointer-events: none;
}
.reply-pill-wrap .ripple-2 { animation-delay: 1.2s; }
@keyframes pill-breath { 0%,100% { transform: scale(1); } 50% { transform: scale(1.02); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
@keyframes shimmer { 0% { transform: translateX(-140%) rotate(18deg); } 100% { transform: translateX(240%) rotate(18deg); } }
@keyframes ripple { 0% { transform: scale(1); opacity: .25; } 100% { transform: scale(1.6); opacity: 0; } }

/* Hero video */
.hero-video {
  position: relative; width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--gold-2);
  background: #000;
  margin-bottom: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.4);
}
.hero-video video,
.hero-video img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Avatars */
.avatar-row {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 16px;
}
@media (min-width: 768px) { .avatar-row { gap: 16px; } }
.avatar { position: relative; display: flex; flex-direction: column; align-items: center; }
.avatar img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 3px solid var(--muted-2);
  position: relative; z-index: 2;
}
.avatar-active img { border-color: var(--gold-2); }
.avatar .ping {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%) scale(1.1);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(34,197,94,.3);
  animation: avatar-ping 2s cubic-bezier(0,0,.2,1) infinite;
  z-index: 1;
}
.avatar .online-dot {
  position: absolute;
  top: 48px; left: calc(50% + 18px);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #fff;
  z-index: 3;
}
@keyframes avatar-ping { 75%,100% { transform: translateX(-50%) scale(1.6); opacity: 0; } }
@keyframes ping { 75%,100% { transform: scale(2); opacity: 0; } }
.avatar-name { margin-top: 4px; font-size: 14px; font-weight: 700; color: var(--text); }
.avatar-status { font-size: 10px; font-weight: 500; color: #6b7280; }
.avatar-status.online { color: #4ade80; }

/* Form */
.hero-form {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 12px;
}
.hero-form input[type="text"],
.hero-form input[type="email"] {
  width: 100%;
  height: 40px;
  border-radius: var(--radius);
  background: var(--bg-input);
  border: 1px solid var(--muted-2);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 0 16px;
  text-align: center;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.hero-form input::placeholder { color: var(--muted-3); text-align: center; }
.hero-form input[type="email"]::placeholder { color: var(--muted-3); text-align: center; }
.hero-form input:focus { border-color: var(--gold-2); box-shadow: 0 0 0 1px var(--gold-2); outline: none; }

/* Buttons (h-10 = 40px, text-sm = 14px, rounded-lg = 8px) */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border: 0; border-radius: var(--radius);
  font-weight: 700; font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn:active { transform: translateY(0); }
.btn-gold {
  width: 100%;
  background: var(--gold-2);
  color: #1B2139;
  border: 1px solid var(--gold-2);
  box-shadow: 0 8px 20px rgba(240,180,41,.24);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(240,180,41,.38); }
.btn-green {
  width: 100%;
  background: linear-gradient(to right, var(--green), var(--green-2));
  color: #fff;
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(22,163,74,.38); }
.btn-lg { height: 48px; font-size: 15px; padding: 0 24px; width: auto; }
.btn-sm { height: 36px; font-size: 13px; padding: 0 12px; gap: 6px; }
.btn-sm svg { width: 14px; height: 14px; }

/* OR divider */
.or-divider {
  display: flex; align-items: center; gap: 8px;
  padding: 2px 0;
}
.or-divider span { flex: 1; height: 1px; background: rgba(240,180,41,.18); }
.or-divider p {
  margin: 0; font-size: 13px; font-weight: 500;
  color: #7E86A8;
  text-align: center;
}

/* Stars row */
.stars-row {
  display: flex; align-items: center; justify-content: center;
  gap: 2px; margin-top: 12px;
}
.star { color: var(--gold-2); font-size: 14px; line-height: 1; }
.stars-meta { color: #A0A8C0; font-size: 11px; font-weight: 500; margin-left: 6px; }

/* Trust pills */
.trust-pills {
  display: flex; gap: 8px;
  margin-top: 16px;
  flex-wrap: nowrap;
}
.trust-pill {
  display: flex; align-items: center; gap: 6px;
  flex: 1;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(240,180,41,.35);
  border-radius: var(--radius);
  padding: 8px 12px;
  justify-content: center;
}
.trust-pill svg { width: 14px; height: 14px; color: var(--gold-2); flex-shrink: 0; }
.trust-pill span { color: var(--gold-2); font-size: 13px; font-weight: 500; line-height: 1; white-space: nowrap; }

/* SECTIONS */
.section {
  padding: 72px 0;
}
@media (min-width: 768px) { .section { padding: 96px 0; } }
.section-dark   { background: var(--bg); }
.section-deeper { background: var(--bg-deep); }
.section-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  margin: 0 0 10px;
  text-align: center;
  letter-spacing: -.01em;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 40px;
  max-width: 640px;
  font-size: 15px;
}
.eyebrow {
  text-align: center;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--gold-2);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  text-align: center;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.svc-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217,153,43,.45);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.svc-icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(217,153,43,.12);
  color: var(--gold-2);
}
.svc-icon svg { width: 22px; height: 22px; stroke: currentColor; }
.svc-name { font-weight: 700; font-size: 15px; margin: 0 0 4px; }
.svc-tag  { font-size: 12px; color: var(--muted-2); letter-spacing: .05em; }

/* DETAILED OFFERINGS */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 18px;
}
@media (min-width: 768px) { .offerings-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.offering-card {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.offering-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217,153,43,.4);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.offering-head { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.offering-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(240,180,41,.12);
  border: 1px solid rgba(240,180,41,.24);
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.offering-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.offering-summary {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.offering-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.offering-point {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}

/* 2-col image grid */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0,1fr));
  gap: 16px;
}
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; } }
.grid-2 .tile {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.grid-2 .tile img { width: 100%; height: auto; display: block; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left;
  background: transparent; color: var(--text);
  border: 0;
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; font-size: 15px; font-weight: 600;
}
.faq-q .icon {
  width: 22px; height: 22px; flex: 0 0 22px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  display: grid; place-items: center;
  font-size: 14px; line-height: 1;
  transition: transform .2s ease;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .25s ease;
  color: var(--muted);
  font-size: 14px;
  padding: 0 20px;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 20px 18px;
}

/* MAP SECTION */
.map-full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-top: 3px solid var(--gold-2);
  aspect-ratio: 21 / 9;
  margin-top: 40px;
}
.map-section {
  padding-bottom: 0;
}
.map-full-width iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* FOOTER */
.site-footer {
  background: var(--bg-deep);
  border-top: 4px solid var(--gold-2);
  padding: 56px 0 28px;
}
.footer-inner { text-align: center; }
.footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 18px;
}
.footer-brand img { width: 40px; height: 40px; }
.footer-contact {
  color: var(--muted);
  font-size: 14px;
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 18px;
}
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 10px; font-size: 14px; margin-bottom: 22px;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--gold-2); }
.footer-links span { color: var(--muted-2); }
.footer-tag { color: var(--muted); font-size: 13px; margin: 8px 0; }
.footer-copy { color: var(--muted-2); font-size: 12px; margin: 6px 0 0; }

/* ============================================================
   STICKY MINI WIDGET (bottom-left, slides up after scroll, docks above footer)
   ============================================================ */
.sticky-mini {
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: 50;
  animation: slide-up .35s ease both;
  transition: bottom 120ms linear;
}
@media (min-width: 768px) {
  .sticky-mini { right: auto; width: 540px; }
}
@keyframes slide-up { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.sticky-mini-inner {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  background: #364264;
  border: 1px solid rgba(116,125,161,.3);
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.7);
  overflow: hidden;
}
.sticky-mini-avatar {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  display: flex; flex-direction: column; align-items: center;
}
.sticky-mini-avatar img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2.5px solid #4ade80;
  box-shadow: 0 6px 14px rgba(74,222,128,.2);
  position: relative; z-index: 2;
}
.sticky-mini-avatar .ping {
  position: absolute; top: 0; left: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(34,197,94,.2);
  transform: scale(1.1);
  animation: ping 2s cubic-bezier(0,0,.2,1) infinite;
}
.sticky-mini-avatar .online-dot {
  position: absolute;
  top: 46px; left: 44px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #4ade80;
  border: 2px solid #fff;
  z-index: 3;
}
.sticky-mini-name { color: #fff; font-size: 10px; font-weight: 600; margin-top: 2px; }
.sticky-mini-role { color: #4ade80; font-size: 9px; }
.sticky-mini-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.sticky-mini-headline {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}
@media (min-width: 768px) { .sticky-mini-headline { font-size: 14px; } }
.sticky-mini-body input {
  width: 100%; height: 36px;
  background: #2B2F4A;
  border: 1px solid #747DA1;
  border-radius: 8px;
  padding: 0 12px;
  color: #F4F4F4; font-size: 12px;
  outline: none;
  text-align: center;
  transition: border-color .15s ease;
}
.sticky-mini-body input::placeholder { color: #8A91B3; text-align: center; }
.sticky-mini-body input:focus { border-color: #F0B429; box-shadow: 0 0 0 1px #F0B429; }
.sticky-mini-actions { display: flex; gap: 8px; }
.sm-btn {
  flex: 1;
  height: 32px;
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 8px;
  font-size: 12px; font-weight: 600;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  padding: 0 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,.2);
  transition: background-color .15s ease;
}
.sm-btn svg { width: 14px; height: 14px; flex: none; }
.sm-btn-green  { background: #16a34a; }
.sm-btn-green:hover  { background: #15803d; }
.sm-btn-orange { background: #ea580c; }
.sm-btn-orange:hover { background: #c2410c; }
@media (max-width: 480px) {
  .sm-btn span { font-size: 11px; }
}

/* ============================================================
   WHATSAPP LAUNCHER (bottom-right floating button) — matches original
   ============================================================ */
.whatsapp-launcher {
  position: fixed;
  bottom: 16px; right: 16px;
  z-index: 9998;
  display: flex; align-items: center; gap: 12px;
  height: 56px;
  padding: 8px 16px 8px 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: 0;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37,211,102,.45);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-launcher:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37,211,102,.6);
}
.whatsapp-launcher .wave-1,
.whatsapp-launcher .wave-2 {
  position: absolute; inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(37,211,102,.55);
  animation: wa-wave 2s ease-out infinite;
  pointer-events: none;
}
.whatsapp-launcher .wave-2 { animation-delay: 1s; border-color: rgba(37,211,102,.35); }
@keyframes wa-wave {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.5); opacity: 0;  }
}
.whatsapp-launcher .notification-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  background: #ef4444;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff; font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
  z-index: 4;
  animation: pulse 2s ease-in-out infinite;
}
.whatsapp-launcher .status-dot {
  position: absolute;
  bottom: 8px; left: 38px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #4ade80;
  border: 2px solid #fff;
  z-index: 3;
  animation: pulse 2s ease-in-out infinite;
}
.whatsapp-launcher .icon-container {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  flex: none;
  z-index: 2;
}
.whatsapp-launcher .icon-container .wa-icon { width: 22px; height: 22px; }
.whatsapp-launcher .text-container {
  position: relative;
  height: 18px;
  min-width: 130px;
  overflow: hidden;
  flex: 1;
  text-align: left;
  z-index: 2;
}
.whatsapp-launcher .text-slide {
  position: absolute; inset: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}
.whatsapp-launcher .text-slide.active {
  opacity: 1; transform: translateY(0);
}
.whatsapp-launcher .profile-carousel {
  position: relative;
  width: 36px; height: 36px;
  flex: none;
  z-index: 2;
}
.whatsapp-launcher .profile-carousel img {
  position: absolute; inset: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  opacity: 0;
  transition: opacity .4s ease;
}
.whatsapp-launcher .profile-carousel img.active { opacity: 1; }

@media (max-width: 480px) {
  .whatsapp-launcher .text-container { display: none; }
  .whatsapp-launcher { padding: 6px; gap: 8px; }
}

/* ============================================================
   WHATSAPP CHAT PANEL (expanded)
   ============================================================ */
.wa-panel {
  position: fixed;
  bottom: 90px; right: 16px;
  z-index: 40;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.4);
  overflow: hidden;
  display: flex; flex-direction: column;
  animation: slide-up .25s ease both;
}
.wa-panel-head {
  background: #075E54;
  color: #fff;
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.wa-panel-head-info { display: flex; align-items: center; gap: 12px; }
.wa-panel-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2px solid rgba(255,255,255,.2);
}
.wa-panel-name { font-size: 14px; font-weight: 600; }
.wa-panel-status {
  font-size: 11px;
  display: flex; align-items: center; gap: 4px;
  color: #bbf7d0;
}
.wa-panel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #86efac;
  animation: pulse 2s ease-in-out infinite;
}
.wa-panel-close {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: transparent;
  border: 0;
  color: #fff;
  border-radius: 6px;
  transition: background-color .15s ease;
}
.wa-panel-close:hover { background: rgba(255,255,255,.1); }
.wa-panel-close svg { width: 18px; height: 18px; }
.wa-panel-body {
  padding: 16px;
  height: 320px;
  overflow-y: auto;
  background-color: #ECE5DD;
}
.wa-msg { display: flex; align-items: flex-end; gap: 8px; }
.wa-msg-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  object-fit: cover; object-position: top;
  flex: none;
}
.wa-msg-bubble {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  border-bottom-left-radius: 2px;
  max-width: 240px;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.wa-msg-bubble p {
  margin: 0;
  font-size: 13px;
  color: #1f2937;
  line-height: 1.4;
}
.wa-msg-bubble p strong { font-weight: 700; }
.wa-msg-cta { margin-top: 10px; padding-top: 8px; border-top: 1px solid #e5e7eb; }
.wa-msg-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 0;
  color: #2563eb;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  animation: pulse 4s ease-in-out infinite;
}
.wa-msg-cta-btn:hover { color: #1e40af; }
.wa-msg-cta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2563eb;
  animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite;
}
.wa-msg-time {
  margin: 8px 0 0;
  font-size: 11px;
  color: #6b7280;
}
.wa-panel-foot {
  padding: 12px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  display: flex; align-items: center; gap: 8px;
}
.wa-panel-input {
  flex: 1;
  height: 40px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 13px;
  outline: none;
  color: #111827;
}
.wa-panel-input:focus { border-color: #075E54; box-shadow: 0 0 0 1px #075E54; }
.wa-panel-send {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #075E54;
  color: #fff;
  border: 0;
  display: grid; place-items: center;
  cursor: pointer;
  flex: none;
}
.wa-panel-send:hover { background: #064A42; }
.wa-panel-send svg { width: 16px; height: 16px; transform: rotate(45deg); }

/* ============================================================
   CREDENTIALS / ABOUT SECTION
   ============================================================ */
.section-card-bg { background: var(--bg-card); }

.creds-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 640px) { .creds-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .creds-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.cred-card {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: transform .15s ease, border-color .15s ease;
}
.cred-card:hover { transform: translateY(-2px); border-color: rgba(217,153,43,.4); }

.cred-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(217,153,43,.12);
  display: grid; place-items: center;
  color: var(--gold-2);
  margin-bottom: 14px;
}
.cred-icon svg { width: 22px; height: 22px; }
.cred-title { font-weight: 700; font-size: 16px; margin: 0 0 8px; color: var(--text); }
.cred-desc  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

.creds-upwork-link {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.upwork-logo { height: 28px; width: auto; }

.btn-upwork {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0 20px;
  border: 0; border-radius: var(--radius);
  font-weight: 700; font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  background: #6FDA44;
  color: #111;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-upwork:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(111,218,68,.3); color: #111; }

.btn-fiverr {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 20px;
  border: 0; border-radius: var(--radius);
  font-weight: 700; font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  background: #1DBF73;
  color: #fff;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-fiverr:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(29,191,115,.3); background: #18a864; color: #fff; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.tcard {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .15s ease, border-color .15s ease;
}
.tcard:hover { transform: translateY(-2px); border-color: rgba(217,153,43,.35); }

.tcard-header {
  display: flex; align-items: flex-start; gap: 14px;
}
.tcard-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2px solid var(--gold-2);
  flex-shrink: 0;
}
.tcard-meta { flex: 1; min-width: 0; }
.tcard-name { font-weight: 700; font-size: 15px; margin: 0 0 2px; color: var(--text); }
.tcard-role { font-size: 12px; color: var(--muted); margin: 0 0 4px; }
.tcard-stars { font-size: 14px; color: var(--gold-2); letter-spacing: 1px; }
.tcard-badge {
  flex-shrink: 0;
  background: rgba(111,218,68,.12);
  border: 1px solid rgba(111,218,68,.3);
  color: #6FDA44;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 8px;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 2px;
}
.tcard-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.review-embed-placeholder {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(240,180,41,.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(240,180,41,.08), rgba(15,36,69,.62)),
    var(--bg-card);
  display: grid;
  gap: 18px;
}

@media (min-width: 900px) {
  .review-embed-placeholder {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    align-items: center;
  }
}

.review-embed-topline {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(240,180,41,.14);
  border: 1px solid rgba(240,180,41,.2);
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-embed-title {
  margin: 12px 0 8px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.3;
}

.review-embed-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.review-embed-frame {
  min-height: 220px;
  border: 1px dashed rgba(240,180,41,.4);
  border-radius: var(--radius-lg);
  background: rgba(8,15,29,.66);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
}

.review-embed-frame span {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.review-embed-frame small {
  display: block;
  max-width: 300px;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.6;
}

/* SUCCESS STORIES */
.story-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
}
@media (min-width: 1024px) { .story-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.story-card {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.story-kicker {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(111,218,68,.12);
  border: 1px solid rgba(111,218,68,.24);
  color: #6FDA44;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.story-title {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.story-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.story-metric {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(240,180,41,.1);
  border: 1px solid rgba(240,180,41,.22);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
}
.story-copy,
.story-proof {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.story-copy strong { color: var(--text); }
.story-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.story-list li { line-height: 1.6; }
.story-proof {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
}

/* ============================================================
   DATA COMPLIANCE SECTION
   ============================================================ */
.compliance-box {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.compliance-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.compliance-item:last-child { border-bottom: 0; }
.compliance-item svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.compliance-ok { background: rgba(22,163,74,.06); }
.compliance-ok svg { stroke: #4ade80; }
.compliance-no { background: rgba(239,68,68,.06); }
.compliance-no svg { stroke: #f87171; }
.compliance-label {
  font-weight: 700; font-size: 15px;
  color: var(--text); margin: 0 0 4px;
}
.compliance-detail {
  font-size: 14px; color: var(--muted);
  margin: 0; line-height: 1.65;
}
.compliance-footer {
  font-size: 13px; color: var(--muted-2);
  text-align: center; margin: 0;
  max-width: 720px; margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

/* utility */
.muted { color: var(--muted); }
.small { font-size: 13px; }
.mt    { margin-top: 12px; }
