:root {
  --bg: #0a0a0c;
  --card-bg: #111114;
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --muted2: rgba(255, 255, 255, 0.35);
  --green: #b8f5a0;
  --green-btn: #c4f5a8;
  --radius: 16px;
  --radius-pill: 100px;
  --border-thin: rgba(255, 255, 255, 0.04);
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-light: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(255, 255, 255, 0.15);
  --border-lighter: 1px solid rgba(255, 255, 255, 0.04);
  --border-light-2: 1px solid rgba(255, 255, 255, 0.07);
  --text-muted: rgba(255, 255, 255, 0.65);
  --text-dim: rgba(255, 255, 255, 0.38);
  --text-lighter: rgba(255, 255, 255, 0.3);
  --text-lightest: rgba(255, 255, 255, 0.22);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 64px;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: calc(140vh - 64px);
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 64px 24px 80px;
    overflow: hidden;
    background-image: url("assets/hero-bg.webp");
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      linear-gradient(to right, rgba(10,10,12,0.85) 0%, rgba(10,10,12,0.3) 25%, rgba(10,10,12,0.3) 75%, rgba(10,10,12,0.85) 100%),
      linear-gradient(to bottom, rgba(10,10,12,0.5) 0%, rgba(10,10,12,0.2) 40%, rgba(10,10,12,0.5) 75%, rgba(10,10,12,1) 100%);
    z-index: 1;
  }
  /* ─── BLOB FLOAT ANIMATIONS ─── */
  @keyframes blobFloat1 {
    0%   { transform: translate(0px, 0px) scale(1); }
    25%  { transform: translate(30px, -20px) scale(1.05); }
    50%  { transform: translate(-20px, 30px) scale(0.97); }
    75%  { transform: translate(20px, 15px) scale(1.03); }
    100% { transform: translate(0px, 0px) scale(1); }
  }
  @keyframes blobFloat2 {
    0%   { transform: translate(0px, 0px) scale(1); }
    25%  { transform: translate(-25px, 20px) scale(1.04); }
    50%  { transform: translate(30px, -25px) scale(0.96); }
    75%  { transform: translate(-15px, -10px) scale(1.02); }
    100% { transform: translate(0px, 0px) scale(1); }
  }
  @keyframes blobFloat3 {
    0%   { transform: translateX(-50%) translate(0px, 0px) scale(1); }
    25%  { transform: translateX(-50%) translate(20px, -30px) scale(1.06); }
    50%  { transform: translateX(-50%) translate(-30px, 20px) scale(0.95); }
    75%  { transform: translateX(-50%) translate(15px, 25px) scale(1.04); }
    100% { transform: translateX(-50%) translate(0px, 0px) scale(1); }
  }

  /* blobs */
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    will-change: transform;
    z-index: 2;
  }
  .hero-blob-orange {
    width: 480px; height: 480px;
    background: radial-gradient(circle, #a0391a 0%, #7a1f0a 50%, transparent 70%);
    opacity: 0.55;
    top: 5%; left: -8%;
    animation: blobFloat1 10s ease-in-out infinite;
  }
  .hero-blob-green {
    width: 420px; height: 420px;
    background: radial-gradient(circle, #1a5c30 0%, #0d3a1c 50%, transparent 70%);
    opacity: 0.55;
    top: 0%; right: -5%;
    animation: blobFloat2 13s ease-in-out infinite;
  }
  .hero-blob-purple {
    width: 380px; height: 380px;
    background: radial-gradient(circle, #5a1580 0%, #380d50 50%, transparent 70%);
    opacity: 0.4;
    bottom: 5%; left: 30%;
    animation: blobFloat3 11s ease-in-out infinite;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-content { position: absolute; z-index: 3; bottom: 32%; left: 50%; transform: translateX(-50%); width: 100%; }
  .hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -1px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 0.9s ease forwards;
    animation-delay: 0.4s;
  }
  .hero-sub {
    font-size: clamp(13px, 1.3vw, 15px);
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
    max-width: 900px;
    white-space: nowrap;
    margin: -10px auto 28px;
    opacity: 0;
    animation: fadeInUp 0.9s ease forwards;
    animation-delay: 0.75s;
  }
  .hero-sub strong { color: #fff; font-weight: 700; }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.25); }
    70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  }
  .btn-hero {
    display: inline-block;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    padding: 13px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    animation: fadeInUp 0.9s ease forwards, pulse 2s ease-in-out 2s infinite;
    animation-delay: 1.1s, 2s;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-hero:hover { background: rgba(255,255,255,0.13); }

  /* ─── MOBILE ─── */
  @media (max-width: 768px) {

    /* TÍTULOS PADRONIZADOS */
    body .s-ecommerce h2,
    body .headline-central h2,
    body .s-team h2,
    body .proof-outer h2,
    body .s-contact h2 {
      font-size: 22px;
      line-height: 1.3;
      width: 85%;
      max-width: 85%;
      margin-left: auto;
      margin-right: auto;
      padding: 0;
      text-align: center;
    }
    body .hero h1 {
      font-size: 30px;
      line-height: 1.1;
    }

    /* NAV */
    nav {
      padding: 0 20px;
      height: 56px;
    }
    .nav-links { display: none; }
    .nav-logo img { height: 23px !important; width: auto !important; }
    .nav-cta {
      font-size: 11px;
      padding: 7px 12px;
      white-space: nowrap;
    }

    /* HERO */
    .hero {
      min-height: calc(100vh - 56px);
      margin-top: 56px;
      justify-content: center;
      background-image: url("assets/image-02.webp") !important;
      background-size: cover;
      background-position: center top;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hero::before {
      background: linear-gradient(to bottom,
        rgba(10,10,12,0.3) 0%,
        rgba(10,10,12,0.2) 20%,
        rgba(10,10,12,0.6) 50%,
        rgba(10,10,12,0.9) 75%,
        rgba(10,10,12,1) 100%);
    }
    .hero-content {
      position: relative;
      bottom: auto; left: auto;
      transform: none;
      width: 100%;
      padding: 24px 24px;
      background: transparent;
      text-align: center;
      z-index: 3;
    }
    .hero h1 {
      font-size: clamp(20px, 5.5vw, 28px);
      letter-spacing: -0.5px;
      margin-bottom: 12px;
      white-space: normal;
    }
    .hero-sub {
      font-size: 14px;
      margin-bottom: 24px;
      white-space: normal;
      max-width: 100%;
    }
    .btn-hero {
      display: block;
      width: fit-content;
      margin: 0 auto 0;
    }
    .logos-wrap {
      position: absolute;
      bottom: 24px;
      left: 0;
      width: 100%;
      padding: 0;
      background: transparent;
      margin-top: 0;
    }
    .logo-img { height: 3px; max-width: 10px; }
    .logos-track { gap: 8px; }
    .hero-blob-orange, .hero-blob-green, .hero-blob-purple { display: none; }

    /* ECOMMERCE */
    body .s-ecommerce { padding: 24px 0 24px; }
    .s-ecommerce .container {
      display: flex !important;
      flex-direction: column !important;
      grid-template-columns: unset !important;
      gap: 0px;
      padding: 0 20px;
    }
    .s-ecommerce .container > div:first-child {
      display: flex;
      flex-direction: column;
      order: 1;
      gap: 0;
      margin: 0;
      padding: 0;
    }
    .s-ecommerce h2 {
      font-size: 22px;
      line-height: 1.25;
      margin: 0;
      text-align: center;
      padding: 0;
      width: 95%;
      max-width: 95%;
    }
    .ecommerce-line1 { display: block; }
    .s-ecommerce h2 strong { display: block; margin: 0; }
    .s-ecommerce p {
      font-size: 14px;
      max-width: 100%;
      margin: 0;
      text-align: left;
      line-height: 1.7;
      color: rgba(255,255,255,0.7);
      order: unset;
    }
    .s-ecommerce .container > div:last-child {
      order: 2;
      width: 100%;
      margin: -36px 0 0 0;
    }
    .chart-card {
      padding: 16px 14px 20px;
      border-radius: 14px;
      width: 100%;
      box-sizing: border-box;
      overflow: hidden;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
    }
    .chart-area {
      min-height: 130px;
      overflow: visible;
      padding: 16px 8px 0 6px;
    }
    .bar-col { flex: 1; }
    .bar-pair { width: 100%; justify-content: center; }
    .bar-pair .bar { width: 100% !important; max-width: 28px; }
    .bar { width: 18px; }
    .chart-legend { gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
    .legend-item { font-size: 10px; }
    .bar-label { font-size: 9px; }

    /* HEADLINE CENTRAL */
    body .headline-central { padding: 24px 0 24px; }
    .headline-central h2 { font-size: 22px; padding: 0 24px; }

    /* SERVICES */
    body .s-services { padding: 24px 0 24px; }
    .s-services .container { padding: 0 20px; }
    .carousel-wrapper { overflow: visible; }
    .carousel-track {
      display: flex !important;
      flex-direction: column !important;
      transform: none !important;
      transition: none !important;
      gap: 16px;
    }
    .carousel-card {
      flex: 0 0 100% !important;
      min-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box;
      min-height: unset !important;
      height: auto !important;
      padding: 20px 20px 20px;
    }
    .carousel-card p.card-desc {
      font-size: 13px;
      margin-bottom: 16px;
      flex: unset;
    }
    .carousel-nav { display: none !important; }

    /* TEAM */
    body .s-team {
      min-height: auto;
      padding: 24px 0 24px;
    }
    .s-team h2 {
      font-size: 22px;
      padding: 0;
      width: 85%;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.3;
      text-align: center;
    }
    .mobile-br { display: block; }
    .s-team .team-sub1 {
      font-size: 14px;
      padding: 0;
      width: 85%;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
    .s-team .team-sub2 {
      font-size: 13px;
      padding: 0;
      width: 85%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 28px;
      text-align: center;
    }
    .team-blob-left, .team-blob-right, .team-blob-top { display: none; }
    .tag-pill { font-size: 12px; padding: 8px 14px; }

    /* SOCIAL PROOF */
    body .s-proof { padding: 24px 0; }
    .proof-outer {
      padding: 24px 0 20px;
      border-radius: 0;
      border: none;
      background: none;
      position: relative;
    }
    .proof-outer h2 { font-size: 20px; margin-bottom: 16px; padding: 0 16px; }
    .proof-title-br { display: none; }
    .proof-grid {
      display: flex !important;
      flex-direction: row !important;
      grid-template-columns: unset !important;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 0;
      scrollbar-width: none;
      padding: 0;
    }
    .proof-grid::-webkit-scrollbar { display: none; }
    .proof-grid > * {
      flex: 0 0 100%;
      scroll-snap-align: start;
      box-sizing: border-box;
    }
    .video-thumb { aspect-ratio: 9/16; min-height: unset; width: 100%; border-radius: 0; }
    .testimonial { padding: 20px; }
    .testimonial-text { font-size: 13px; line-height: 1.7; }
    .author-name { font-size: 13px; }
    .author-role { font-size: 11px; }
    .proof-nav-mobile { display: none; }
    .proof-arrow {
      display: flex;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(0,0,0,0.55);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      z-index: 10;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    #proofPrev { left: 12px; }
    #proofNext { right: 12px; }
    .btn-full-outline { font-size: 13px; padding: 11px 24px; margin-top: 16px; margin-left: auto; margin-right: auto; }
    .proof-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 14px;
    }
    .proof-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      transition: background 0.2s;
      cursor: pointer;
    }
    .proof-dot.active { background: rgba(255,255,255,0.85); }

    /* METRICS */
    body .s-metrics { padding: 24px 0 24px; }
    .s-metrics .container { padding: 0 20px; }
    body .metrics-top { display: flex; flex-direction: column; gap: 10px; }
    body .metrics-bottom { display: flex; flex-direction: column; gap: 10px; }
    .metric-card { padding: 24px 20px; width: 100%; box-sizing: border-box; overflow: hidden; }
    .metric-num { font-size: 42px; white-space: nowrap; }
    .metric-label { font-size: 12px; }
    .metric-num { font-size: 42px; line-height: 1; margin-bottom: 8px; }
    .metric-label { font-size: 12px; line-height: 1.4; }

    /* CONTACT */
    body .s-contact { padding: 24px 0 24px; }
    .s-contact h2 {
      font-size: 22px;
      padding: 0 24px;
      margin-bottom: 16px;
    }
    .s-contact .container { padding: 0 24px; }
    .s-contact p { font-size: 14px; }
    .s-contact a[href*="wa.me"] {
      font-size: 13px;
      padding: 11px 20px;
      width: auto;
      display: inline-flex;
    }

    /* FOOTER */
    footer {
      flex-direction: column;
      gap: 12px;
      padding: 24px 20px;
      align-items: center;
    }
    .footer-middle-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .footer-logo { display: flex !important; }
    .footer-social {
      position: static !important;
      transform: none !important;
      left: unset !important;
      display: flex !important;
      gap: 10px;
    }
    .footer-copy { font-size: 10px; text-align: center; width: 100%; }

    /* FLOATING WA BUTTON */
    #whatsapp-float {
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
    }
    #whatsapp-float svg { width: 24px; height: 24px; }
  }

  /* ─── SMALL MOBILE ─── */
  @media (max-width: 400px) {
    .hero h1 { font-size: 28px; }
    .metrics-top, .metrics-bottom { grid-template-columns: 1fr; }
    .metric-num { font-size: 48px; }
  }

  /* logos marquee */
  .logos-wrap {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    padding-bottom: 40px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  }
  .logos-track {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
    width: max-content;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .logo-img {
    height: 64px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.8;
    flex-shrink: 0;
    transition: opacity 0.2s;
  }
  .logo-img:hover { opacity: 1; }


  /* ─── SECTION BASE ─── */
  .section { position: relative; overflow: hidden; }
  .container { max-width: 85%; margin: 0 auto; padding: 0; }

  /* ─── ECOMMERCE MUDOU ─── */
  .s-ecommerce {
    padding: 120px 0 100px;
  }
  .s-ecommerce .container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: stretch;
  }
  .s-ecommerce h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
  }
  .s-ecommerce h2 em { font-style: normal; }
  .s-ecommerce p {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255,255,255,0.55);
    max-width: 360px;
  }

  /* chart card */
  .chart-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    padding: 28px 28px 36px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
  }
  .chart-blob-bg {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, #7a1520 0%, #4a0d15 50%, transparent 70%);
    opacity: 0.55;
    border-radius: 50%;
    top: -60px; right: -60px;
    filter: blur(60px);
    pointer-events: none;
    animation: blobFloat2 9s ease-in-out infinite;
  }
  .chart-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative; z-index: 2;
  }
  .legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
  }
  .legend-dot {
    width: 12px; height: 12px;
    border-radius: 3px;
  }
  .dot-green-chart { background: #6fcfa0; }
  .dot-red-chart { background: #b05040; }

  .chart-area {
    position: relative; z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 0;
    flex: 1;
    min-height: 170px;
    border-left: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 20px 20px 0 8px;
    margin-bottom: 0;
  }
  .chart-arrow-x {
    position: absolute;
    bottom: -5px; right: -8px;
    width: 0; height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid rgba(255,255,255,0.15);
  }
  .chart-arrow-y {
    position: absolute;
    top: -8px; left: -5px;
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid rgba(255,255,255,0.15);
  }
  .bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    padding-bottom: 0;
    gap: 0;
    position: relative;
  }
  .bar-pair {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    justify-content: center;
  }
  .bar {
    width: 22px;
    border-radius: 3px 3px 0 0;
    opacity: 0.85;
  }
  .bar-g { background: #6fcfa0; }
  .bar-r { background: #b05040; }
  .bar-label {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-top: 8px;
    text-align: center;
    letter-spacing: 0.5px;
  }
  .case-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
    position: relative; z-index: 2;
  }
  .case-badge {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .case-badge .brand { font-style: italic; font-weight: 700; font-size: 14px; }
  .case-badge .caso { font-size: 10px; color: rgba(255,255,255,0.5); margin-left: 4px; }
  .case-badge .real { font-weight: 700; }
  .case-text {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
  }

  /* ─── HEADLINE CENTRAL ─── */
  .headline-central {
    padding: 60px 0 0;
    text-align: center;
  }
  .headline-central h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 2.9vw, 40px);
    font-weight: 400;
    line-height: 1.2;
    max-width: 820px;
    margin: 0 auto;
  }
  .headline-central h2 strong { font-weight: 800; }
  .headline-central h2 em { font-style: normal; font-weight: 400; }

  /* ─── SERVICES ─── */
  /* ─── SERVICES CAROUSEL ─── */
  .s-services { padding: 60px 0 100px; }
  .carousel-wrapper {
    position: relative;
    overflow: hidden;
  }
  .carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
    will-change: transform;
  }
  .carousel-card {
    flex: 0 0 calc(25% - 12px);
    min-width: calc(25% - 12px);
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    box-sizing: border-box;
  }
  .carousel-card .card-blob {
    position: absolute;
    width: 260px; height: 260px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    top: -60px; right: -50px;
    pointer-events: none;
    animation: blobFloat1 12s ease-in-out infinite;
  }
  .carousel-card:nth-child(2) .card-blob { animation-duration: 14s; animation-delay: -3s; }
  .carousel-card:nth-child(3) .card-blob { animation-duration: 10s; animation-delay: -6s; }
  .carousel-card:nth-child(4) .card-blob { animation-duration: 16s; animation-delay: -9s; }
  /* icon always present and standardized */
  .carousel-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    position: relative; z-index: 2;
  }
  .carousel-card .card-icon {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.7);
  }
  .carousel-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    position: relative; z-index: 2;
  }
  .carousel-card .card-subtitle {
    font-size: 12px;
    color: rgba(255,255,255,0.38);
    margin-bottom: 10px;
    position: relative; z-index: 2;
    min-height: 0;
  }
  .carousel-card p.card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 24px;
    position: relative; z-index: 2;
  }
  .carousel-card .feat-list {
    margin-bottom: 24px;
  }
  /* nav hidden on desktop */
  .carousel-nav { display: none; }
  .carousel-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 16px;
    user-select: none;
  }
  .carousel-btn:hover { background: rgba(255,255,255,0.15); }
  .carousel-dots {
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .carousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .carousel-dot.active {
    background: rgba(255,255,255,0.7);
    transform: scale(1.3);
  }
  .featured-service {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 36px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .featured-blob-tl {
    position: absolute;
    width: 320px; height: 320px;
    background: radial-gradient(circle, #1a5530 0%, #0d3018 60%, transparent 80%);
    opacity: 0.4;
    border-radius: 50%;
    top: -80px; right: -60px;
    filter: blur(70px);
    pointer-events: none;
  }
  .featured-service h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    position: relative; z-index: 2;
  }
  .featured-service .subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.38);
    margin-bottom: 18px;
    position: relative; z-index: 2;
  }
  .featured-service .desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    max-width: 780px;
    margin-bottom: 24px;
    position: relative; z-index: 2;
    flex: 1;
  }
  .feat-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    position: relative; z-index: 2;
  }
  .feat-list p {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
  }
  .feat-list p em { font-style: normal; font-weight: 400; }
  .feat-list strong { font-weight: 800; }
  .btn-green-pill {
    display: inline-block;
    background: var(--green-btn);
    border: 1px solid var(--green-btn);
    color: #1a1a1a;
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
    position: relative; z-index: 2;
    align-self: flex-start;
  }
  .btn-green-pill:hover { opacity: 0.85; }

  .mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .mini-card {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 30px 28px 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .mini-card-blob {
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, #1a5530 0%, #0d3018 60%, transparent 80%);
    opacity: 0.3;
    border-radius: 50%;
    top: -40px; right: -40px;
    filter: blur(50px);
    pointer-events: none;
  }
  .mini-card-icon {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    margin-bottom: 18px;
    position: relative; z-index: 2;
    color: rgba(255,255,255,0.7);
  }
  .mini-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative; z-index: 2;
  }
  .mini-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 22px;
    position: relative; z-index: 2;
  }
  .btn-outline-pill {
    display: inline-block;
    background: var(--green-btn);
    border: 1px solid var(--green-btn);
    color: #1a1a1a;
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    align-self: flex-start;
    position: relative; z-index: 2;
  }
  .btn-outline-pill:hover {
    background: linear-gradient(135deg, #e8f5d0 0%, #c4f5a8 30%, #9ae87a 60%, #c4f5a8 100%);
    border-color: transparent;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), inset 0 -1px 0 rgba(0,0,0,0.15);
  }
  .btn-green-pill:hover {
    background: linear-gradient(135deg, #e8f5d0 0%, #c4f5a8 30%, #9ae87a 60%, #c4f5a8 100%);
    border-color: transparent;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), inset 0 -1px 0 rgba(0,0,0,0.15);
    opacity: 1;
  }
    border-radius: 100px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    align-self: flex-start;
    position: relative; z-index: 2;
  }

  /* ─── TEAM SECTION ─── */
  .s-team {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .team-blob-left, .team-blob-right, .team-blob-top { display: none; }
  .s-team h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 24px;
    text-align: center;
    position: relative; z-index: 2;
  }
  .mobile-br { display: none; }
  .s-team .team-sub1 {
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto 16px;
    line-height: 1.65;
    position: relative; z-index: 2;
    text-align: center;
  }
  .s-team .team-sub2 {
    font-size: 14px;
    color: rgba(255,255,255,0.3);
    max-width: 560px;
    margin: 0 auto 64px;
    position: relative; z-index: 2;
    text-align: center;
  }

  /* tags scroll */
  .tags-overflow {
    position: relative; z-index: 2;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  }
  .tags-track {
    display: flex;
    gap: 10px;
    align-items: center;
    animation: marquee 30s linear infinite;
    width: max-content;
  }
  .tag-pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 11px 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .tag-pill strong { color: #fff; font-weight: 700; }
  .tag-pill em { font-style: normal; }

  /* ─── SOCIAL PROOF ─── */
  .s-proof { padding: 60px 0 80px; }
  .proof-outer {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 44px 40px;
  }
  .proof-outer h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
  }
  .proof-outer h2 strong { font-weight: 800; }
  .proof-title-br { display: none; }

  .proof-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 16px;
    align-items: stretch;
  }
  /* video thumbnails */
  .video-thumb {
    background: #1a1a1e;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9/16;
    position: relative;
  }
  .video-thumb-inner {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #2a2a30 0%, #1a1a20 100%);
    display: flex; align-items: flex-end; padding: 12px;
    position: relative;
  }
  .video-thumb-inner::before {
    content: '▶';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -60%);
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    background: rgba(0,0,0,0.4);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding-left: 3px;
  }
  .video-caption {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
  }
  .video-thumb-1 .video-thumb-inner { background: linear-gradient(160deg, #2a3035 0%, #1e2530 100%); }
  .video-thumb-2 .video-thumb-inner { background: linear-gradient(160deg, #2e2828 0%, #1e1a1a 100%); }

  /* testimonial cards */
  .testimonial {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .stars { color: #f0a832; font-size: 12px; letter-spacing: 1px; margin-bottom: 10px; }
  .testimonial-text {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin-bottom: 14px;
    flex: 1;
    font-style: italic;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .author-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #2a2a30;
    flex-shrink: 0;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5);
  }
  .author-name { font-size: 12px; font-weight: 700; color: #fff; }
  .author-role { font-size: 10px; color: rgba(255,255,255,0.38); }

  .btn-full-outline {
    width: fit-content;
    margin: 0 auto;
    background: var(--green-btn);
    border: none;
    color: #0e0e0e;
    padding: 11px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 0 0 0 rgba(192, 90, 30, 0);
  }
  .btn-full-outline .btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    font-size: 12px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }
  .btn-full-outline:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #d4f57a 0%, #c4f5a8 50%, #a8f07a 100%);
    box-shadow: 0 6px 32px rgba(180, 80, 20, 0.45), 0 2px 8px rgba(180, 80, 20, 0.25);
  }
  .btn-full-outline:hover .btn-arrow {
    transform: translateX(3px);
  }

  /* ─── METRICS ─── */
  .s-metrics { padding: 0 0 100px; }
  .metrics-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }
  .metric-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 32px 36px;
  }
  .metric-num {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
  }
  .metric-label {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
  }
  .metrics-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .partner-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 28px 30px;
  }
  .partner-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
  }
  .partner-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
  }
  .partner-icon-g {
    width: 36px; height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 18px; color: #4285f4;
    flex-shrink: 0;
  }
  .partner-icon-m {
    width: 36px; height: 36px;
    background: #1877f2;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .partner-icon-m svg { width: 22px; height: 22px; fill: #fff; }
  .partner-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.42);
    line-height: 1.7;
  }

  /* ─── CONTACT ─── */
  .s-contact {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .contact-blob {
    position: absolute;
    width: 480px; height: 480px;
    background: radial-gradient(circle, #8b3a00 0%, #5a2200 50%, transparent 75%);
    opacity: 0.5;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(90px);
    pointer-events: none;
    animation: blobFloat1 14s ease-in-out infinite;
  }
  .s-contact h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    margin-bottom: 44px;
    position: relative; z-index: 2;
  }
  .form-wrap {
    max-width: 540px;
    margin: 0 auto;
    text-align: left;
    position: relative; z-index: 2;
  }
  .form-group { margin-bottom: 10px; }
  .form-label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 5px;
    letter-spacing: 0.3px;
  }
  .form-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 10px 0 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
  }
  .form-input:focus { border-bottom-color: rgba(255,255,255,0.5); }
  .form-input::placeholder { color: rgba(255,255,255,0.2); }
  textarea.form-input {
    resize: vertical;
    min-height: 80px;
    padding-top: 8px;
  }
  select.form-input {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("assets/select-arrow.svg");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
  }
  select.form-input option { background: #1a1a1e; }
  .btn-submit {
    width: 100%;
    background: #fff;
    color: #0a0a0c;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    margin-top: 12px;
    transition: opacity 0.2s;
  }
  .btn-submit:hover { opacity: 0.9; }

  /* ─── FOOTER ─── */
  footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 28px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
  }
  .footer-social {
    display: flex;
    gap: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .footer-middle-row {
    display: contents;
  }
  .footer-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
  }
  .footer-social a {
    width: 30px; height: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s;
  }
  .footer-social a:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
  .footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.22);
  }

  /* ─── DIVIDER ─── */
  .divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 0 48px;
  }

  /* ─── SCROLL OFFSET FOR FIXED NAV ─── */

/* Performance overrides */
.s-ecommerce,
.headline-central,
.s-services,
.s-team,
.s-proof,
.s-metrics,
.s-contact,
footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.hero {
  content-visibility: visible;
  background-size: cover;
  background-position: center;
}

.nav-logo-img {
  display: block;
  height: 36px;
  width: auto;
}

.footer-logo-img {
  display: block;
  height: 28px;
  width: auto;
}

.proof-media {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.proof-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.proof-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  background: rgba(0,0,0,0.35);
  transition: background 0.25s;
}

.proof-overlay.is-playing {
  background: transparent;
  pointer-events: all;
}

.proof-play-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s, transform 0.2s;
  flex-shrink: 0;
}

.proof-play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 20px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}

.proof-overlay:hover .proof-play-icon {
  transform: scale(1.08);
}

.proof-overlay.is-playing .proof-play-icon {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.contact-cta-group {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.contact-copy {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  text-align: center;
  max-width: 760px;
  margin-bottom: 8px;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-btn);
  color: #1a1a1a;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-cta-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #e8f5d0 0%, #c4f5a8 30%, #9ae87a 60%, #c4f5a8 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.contact-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── VIDEO EXPAND BUTTON ─── */
.video-expand-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 4;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.video-expand-btn:hover {
  background: rgba(255,255,255,0.18);
  transform: scale(1.08);
}

/* ─── VIDEO LIGHTBOX ─── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal[hidden] { display: none; }

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.video-modal-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.video-modal-close:hover { background: rgba(255,255,255,0.22); }

.video-modal-player {
  height: 80vh;
  max-height: 700px;
  width: auto;
  aspect-ratio: 9/16;
  border-radius: 16px;
  display: block;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}

.author-avatar-rr {
  background: #3a2a40;
}

.author-avatar-dd {
  background: #2a3040;
}

.carousel-btn,
.proof-arrow {
  -webkit-appearance: none;
  appearance: none;
}

.proof-nav-mobile.is-hidden,
.proof-arrow[hidden] {
  display: none !important;
}

.logos-track.is-paused,
.tags-track.is-paused {
  animation-play-state: paused;
}

#whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  z-index: 1001;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  animation: waPulse 2.5s ease-in-out infinite;
}

#whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
  animation: none;
}

#whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.35);
  }
  70% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .blob,
  .chart-blob-bg,
  .carousel-card .card-blob,
  .featured-blob-tl,
  .mini-card-blob,
  .contact-blob {
    filter: blur(48px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  #whatsapp-float {
    animation: none !important;
  }
}
