/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Base */
  --color-white: #ffffff;

  /* Brand Colors */
  --color-navy: #00068F;
  --color-navy-deep: #0000A5;
  --color-teal: #00BBAF;
  --color-teal-dark: #00ACA5;
  --color-pink: #FF007C;
  --color-pink-alt: #FB0D80;

  /* Service Channel Colors */
  --color-magenta: #E91E8C;
  --color-emerald: #25D366;
  --color-emerald-dark: #128C7E;
  --color-cobalt: #1A73E8;
  --color-sky: #0EA5E9;
  --color-azure: #3B82F6;
  --color-violet: #7C3AED;

  /* Neutrals & Surfaces */
  --color-bg: var(--color-white);
  --color-bg-alt: #FDFDFD;
  --color-bg-dark: #222732;
  --color-bg-code: #16191D;
  --color-bg-counter: #292E39;
  --color-surface: #f1f5f9;
  --color-surface-light: #f8fafc;
  --color-border: #e2e8f0;
  --color-slate: #1e293b;

  /* Text */
  --color-text: #212121;
  --color-text-muted: #63686C;
  --color-text-secondary: #64748b;
  --color-text-tertiary: #94a3b8;
  --color-text-white: var(--color-white);
  --color-text-service: #494B78;

  /* Status Colors */
  --color-red: #ef4444;
  --color-amber: #f59e0b;

  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(0, 6, 143, 0.1);

  /* Dimensions */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --max-width: 1440px;

  /* Typography Scale */
  --font-size-micro: 10px;
  --font-size-xs: 11px;
  --font-size-2xs: 12px;
  --font-size-sm: 13px;
  --font-size-caption: 14px;
  --font-size-base: 15px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-heading-sm: 28px;
  --font-size-3xl: 32px;

  /* Fonts */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Components: Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--font-size-md);
  cursor: pointer;
  border: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  font-family: var(--font-main);
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--color-navy);
  color: var(--color-text-white);
  box-shadow: 0 4px 14px rgba(0, 6, 143, 0.3);
}

.btn--primary:hover {
  background: var(--color-navy-deep);
  box-shadow: 0 6px 20px rgba(0, 6, 143, 0.4);
}

.btn--outline {
  background: var(--color-white);
  border: 2px solid rgba(0, 6, 143, 0.25);
  color: var(--color-navy);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn--outline:hover {
  background: var(--color-surface-light);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.btn--sm {
  padding: 10px 24px;
  font-size: var(--font-size-caption);
}

.btn--nav {
  padding: 10px 24px;
  font-size: var(--font-size-caption);
}

/* ── Components: Glass ────────────────────────────────────────────────────── */
/* ── Site Header ──────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
}

.site-nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 95%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: -1;
}

.site-nav__logo {
  height: 36px;
}

.mobile-menu-toggle,
.mobile-menu-btn {
  display: none;
}

.site-nav__menu {
  display: flex;
  flex: 1;
  align-items: center;
}

.site-nav__links {
  display: flex;
  gap: 32px;
  margin: 0 auto;
  list-style: none;
}

.site-nav__link {
  font-weight: 600;
  font-size: var(--font-size-base);
  color: var(--color-text);
  opacity: 0.7;
}

.site-nav__link:hover,
.site-nav__link--active {
  opacity: 1;
  color: var(--color-pink);
}

/* Ensure smooth transition for all chameleon-glass changes */
.site-nav,
.site-nav__logo,
.site-nav__link,
.lang-selector__label,
.lang-selector__dot {
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ── Cinematic Scroll Animations ──────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

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

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

.delay-3 {
  transition-delay: 0.2s;
}

.site-nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Lang Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-sm);
  font-weight: 700;
}

.lang-selector__label {
  opacity: 0.4;
}

.lang-selector__label--active {
  opacity: 1;
}

.lang-selector__toggle {
  width: 34px;
  height: 18px;
  background: var(--color-pink);
  border-radius: 9px;
  position: relative;
}

.lang-selector__dot {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lang-selector__toggle--es .lang-selector__dot {
  transform: translateX(16px);
}

/* ── Lang Selector Full (3-language dropdown) ───────────────────────────── */
.lang-selector-full {
  position: relative;
}

.lang-selector-full__trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-slate);
  cursor: pointer;
  list-style: none;
  padding: 4px 2px;
  user-select: none;
}

.lang-selector-full__trigger::-webkit-details-marker {
  display: none;
}

.lang-selector-full__code {
  letter-spacing: 0.03em;
}

.lang-selector-full__chevron {
  font-size: 11px;
  transition: transform 0.2s ease;
  opacity: 0.6;
}

.lang-selector-full[open] .lang-selector-full__chevron {
  transform: rotate(180deg);
}

.lang-selector-full__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 148px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 4px;
  z-index: 200;
  overflow: hidden;
}

.lang-selector-full__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 7px;
  text-decoration: none;
  color: var(--color-slate);
  font-size: var(--font-size-sm);
  transition: background 0.15s ease;
}

.lang-selector-full__option:hover {
  background: var(--color-surface-light);
}

.lang-selector-full__option--active {
  background: var(--color-surface-light);
  font-weight: 700;
}

.lang-selector-full__option-code {
  font-weight: 700;
  font-size: 12px;
  color: var(--color-slate);
  min-width: 22px;
}

.lang-selector-full__option--active .lang-selector-full__option-code {
  color: var(--color-primary);
}

.lang-selector-full__option-name {
  color: var(--color-text-muted);
  font-size: var(--font-size-caption);
}

/* ── Hero Section ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 650px;
  height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Fixes flying bubbles stretching the body */
  background:
    linear-gradient(120deg, rgba(0, 187, 175, 0.08) 0%, transparent 50%),
    linear-gradient(-120deg, rgba(251, 13, 128, 0.08) 0%, transparent 50%),
    radial-gradient(circle at center, rgba(0, 6, 143, 0.05) 0%, transparent 70%),
    var(--color-bg);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero__content {
  padding-top: 0;
  position: relative;
  z-index: 10;
}

.hero__title {
  font-size: clamp(28px, 8vw, 72px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__title-accent {
  color: var(--color-teal);
}

.hero__description {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.4;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  width: 100%;
  height: 600px;
  z-index: 1;
}

.hero__network {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Home Hero
   ═══════════════════════════════════════════════════════════════════════════ */
.home-hero {
  background: #020412;
  color: var(--color-white);
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 110px;
  height: auto;
}

.home-hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.home-hero__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.home-aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
}

.home-aurora-blob--teal {
  width: 60vw;
  height: 60vw;
  background: rgba(0, 187, 175, 0.22);
  top: -25%;
  right: -15%;
  animation: homeAuroraTeal 16s ease-in-out infinite alternate;
}

.home-aurora-blob--navy {
  width: 55vw;
  height: 55vw;
  background: rgba(0, 6, 143, 0.32);
  bottom: -20%;
  left: -10%;
  animation: homeAuroraNavy 20s ease-in-out infinite alternate;
}

@keyframes homeAuroraTeal {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(5vw, 3vh) scale(1.10);
  }
}

@keyframes homeAuroraNavy {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-4vw, -3vh) scale(1.08);
  }
}

.home-hero__container {
  position: relative;
  z-index: 5;
}

.home-hero .hero__title {
  color: var(--color-white);
}

.home-hero .hero__description {
  color: rgba(255, 255, 255, 0.65);
}

.home-hero__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  height: 660px;
}

/* ── Home hero checklist (right of phone, matches service page style) ─────── */
.hp-ext-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 215px;
  min-height: 210px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}


.hp-ext-checklist--visible {
  opacity: 1;
}


.hp-ext-cl__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hp-ext-cl__svc-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.hp-ext-cl__svc-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hp-ext-cl__name {
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.hp-ext-cl__divider {
  display: none;
}


.hp-ext-cl__items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hp-ext-cl__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hp-ext-cl__item--visible {
  opacity: 1;
  transform: translateX(0);
}

.hp-ext-cl__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chk, #00BBAF);
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.hp-ext-cl__icon svg {
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.35s ease 0.08s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s;
}

.hp-ext-cl__item--checked .hp-ext-cl__icon {
  border-color: var(--chk, #00BBAF);
  background: color-mix(in srgb, var(--chk, #00BBAF) 18%, transparent);
}

.hp-ext-cl__item--checked .hp-ext-cl__icon svg {
  opacity: 1;
  transform: scale(1);
}

.hp-ext-cl__text {
  font-size: var(--font-size-md);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.5s ease;
}

.hp-ext-cl__item--checked .hp-ext-cl__text {
  color: var(--color-white);
}

@media (max-width: 1280px) {
  .hp-ext-checklist {
    display: none;
  }

  .home-hero__visual {
    gap: 0;
  }
}



@media (min-resolution: 1.1dppx) and (min-width: 1025px) {
  .home-phone-wrapper {
    zoom: 0.9;
  }
}

.home-phone-with-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.home-phone-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: homePhoneLevitate 7s ease-in-out infinite;
  transform-style: preserve-3d;
}

.hp-scene-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.hp-scene-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
}

.hp-scene-dot--active {
  background: var(--color-teal);
  transform: scale(1.4);
}

.hp-scene-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

@keyframes homePhoneLevitate {
  0% {
    transform: perspective(1200px) rotateY(-3deg) rotateX(0.2deg) translateX(3px);
  }

  50% {
    transform: perspective(1200px) rotateY(3deg) rotateX(-0.2deg) translateX(-3px);
  }

  100% {
    transform: perspective(1200px) rotateY(-3deg) rotateX(0.2deg) translateX(3px);
  }
}

.home-phone-wrapper::before {
  content: '';
  position: absolute;
  width: 472px;
  height: 692px;
  background: radial-gradient(ellipse at 50% 40%,
      rgba(0, 187, 175, 0.40) 0%,
      rgba(0, 6, 143, 0.22) 45%,
      transparent 72%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.home-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  overflow: visible;
}

/* ── Physical side buttons ─────────────────────────────────────────────────── */
.home-phone__btns-left,
.home-phone__btns-right {
  position: absolute;
  top: 0;
  width: 4px;
  height: 656px;
  pointer-events: none;
  z-index: 2;
}

.home-phone__btns-left {
  left: -4px;
}

.home-phone__btns-right {
  right: -4px;
}

/* Volume up */
.home-phone__btns-left::before {
  content: '';
  position: absolute;
  top: 118px;
  left: 0;
  width: 4px;
  height: 29px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.10) 100%);
  border-radius: 2px 0 0 2px;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.28);
}

/* Volume down */
.home-phone__btns-left::after {
  content: '';
  position: absolute;
  top: 162px;
  left: 0;
  width: 4px;
  height: 29px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.10) 100%);
  border-radius: 2px 0 0 2px;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.28);
}

/* Power button */
.home-phone__btns-right::before {
  content: '';
  position: absolute;
  top: 136px;
  right: 0;
  width: 4px;
  height: 50px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.22) 100%);
  border-radius: 0 2px 2px 0;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.28);
}

.home-phone__frame {
  width: 320px;
  height: 656px;
  border-radius: 16px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 35%,
      rgba(255, 255, 255, 0.05) 65%,
      rgba(255, 255, 255, 0.09) 100%);
  backdrop-filter: blur(60px) saturate(1.6);
  -webkit-backdrop-filter: blur(60px) saturate(1.6);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 32px 80px rgba(0, 0, 0, 0.50),
    0 8px 24px rgba(0, 0, 0, 0.32),
    0 0 80px rgba(0, 187, 175, 0.22),
    0 0 140px rgba(0, 6, 143, 0.18),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12),
    inset 1px 0 0 rgba(255, 255, 255, 0.18),
    inset -1px 0 0 rgba(255, 255, 255, 0.18);
  transition: box-shadow 0.7s ease;
}

/* ── Scene-specific glow colors ─────────────────────────────────────────── */
.home-phone--sms .home-phone__frame {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 32px 80px rgba(0, 0, 0, 0.50),
    0 8px 24px rgba(0, 0, 0, 0.32),
    0 0 80px rgba(56, 189, 248, 0.30),
    0 0 140px rgba(168, 85, 247, 0.20),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12),
    inset 1px 0 0 rgba(255, 255, 255, 0.18),
    inset -1px 0 0 rgba(255, 255, 255, 0.18);
}

.home-phone-wrapper:has(.home-phone--sms)::before {
  background: radial-gradient(ellipse at 50% 40%,
      rgba(56, 189, 248, 0.40) 0%,
      rgba(168, 85, 247, 0.20) 45%,
      transparent 72%);
}

.home-phone--rcs .home-phone__frame {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 32px 80px rgba(0, 0, 0, 0.50),
    0 8px 24px rgba(0, 0, 0, 0.32),
    0 0 80px rgba(91, 159, 255, 0.30),
    0 0 140px rgba(99, 102, 241, 0.20),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12),
    inset 1px 0 0 rgba(255, 255, 255, 0.18),
    inset -1px 0 0 rgba(255, 255, 255, 0.18);
}

.home-phone-wrapper:has(.home-phone--rcs)::before {
  background: radial-gradient(ellipse at 50% 40%,
      rgba(91, 159, 255, 0.40) 0%,
      rgba(99, 102, 241, 0.20) 45%,
      transparent 72%);
}

.home-phone--wa .home-phone__frame {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 32px 80px rgba(0, 0, 0, 0.50),
    0 8px 24px rgba(0, 0, 0, 0.32),
    0 0 80px rgba(37, 211, 102, 0.28),
    0 0 140px rgba(0, 187, 175, 0.18),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12),
    inset 1px 0 0 rgba(255, 255, 255, 0.18),
    inset -1px 0 0 rgba(255, 255, 255, 0.18);
}

.home-phone-wrapper:has(.home-phone--wa)::before {
  background: radial-gradient(ellipse at 50% 40%,
      rgba(37, 211, 102, 0.40) 0%,
      rgba(0, 187, 175, 0.22) 45%,
      transparent 72%);
}

.home-phone--connect .home-phone__frame {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 32px 80px rgba(0, 0, 0, 0.50),
    0 8px 24px rgba(0, 0, 0, 0.32),
    0 0 80px rgba(0, 100, 255, 0.28),
    0 0 140px rgba(0, 187, 175, 0.18),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12),
    inset 1px 0 0 rgba(255, 255, 255, 0.18),
    inset -1px 0 0 rgba(255, 255, 255, 0.18);
}

.home-phone-wrapper:has(.home-phone--connect)::before {
  background: radial-gradient(ellipse at 50% 40%,
      rgba(0, 100, 255, 0.35) 0%,
      rgba(0, 187, 175, 0.18) 45%,
      transparent 72%);
}

/* ── Home Phone Screen & Scenes ─────────────────────────────────────────── */
.home-phone__screen {
  flex: 1;
  min-height: 0;
  background: transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hp-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Scene 1 — Lock Screen */
.hp-lock {
  background: linear-gradient(165deg, #0a0a24 0%, #04113a 50%, #00068F 100%);
  align-items: center;
  justify-content: center;
  padding: 48px 20px 80px;
  gap: 4px;
}

.hp-lock__statusbar {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  font-family: -apple-system, var(--font-main);
}

.hp-lock__statusbar-indicators {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--font-size-sm);
}

.hp-lock__bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 178px;
  height: 178px;
  object-fit: contain;
  opacity: 0.30;
  pointer-events: none;
  z-index: 0;
}

.hp-lock__notif {
  position: absolute;
  top: -77px;
  left: 14px;
  right: 14px;
  background: rgba(28, 28, 40, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: top 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hp-lock__notif.hp-notif--visible {
  top: 31px;
}

.hp-lock__notif.hp-lock__notif--open {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: rgba(16, 18, 38, 0.99);
  align-items: flex-start;
  padding-top: 56px;
  z-index: 10;
  transition:
    top 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    right 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    bottom 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    padding-top 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-lock__app-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
  background: var(--color-white);
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  transition: opacity 0.22s ease 0.32s;
  font-family: -apple-system, var(--font-main);
}

.hp-lock__app-bar--visible {
  opacity: 1;
}

.hp-lock__app-bar-back {
  font-size: var(--font-size-xl);
  color: var(--color-text-secondary);
}

.hp-lock__app-bar-logo {
  height: 22px;
  width: auto;
}

.hp-lock__notif-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #007AFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  color: var(--color-white);
  flex-shrink: 0;
}

.hp-lock__notif-app {
  font-size: var(--font-size-micro);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-family: var(--font-main);
}

.hp-lock__notif-text {
  font-size: var(--font-size-sm);
  color: var(--color-white);
  margin-top: 2px;
  font-family: var(--font-main);
}

.hp-lock__time {
  font-size: 61px;
  font-weight: 200;
  color: var(--color-white);
  letter-spacing: -3px;
  line-height: 1;
  font-family: var(--font-main);
  position: relative;
  z-index: 1;
}

.hp-lock__date {
  font-size: var(--font-size-caption);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-main);
}

.hp-lock__icon {
  margin-top: 17px;
  font-size: var(--font-size-2xl);
  color: rgba(255, 255, 255, 0.70);
}

.hp-lock__ripple {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.7);
}

.hp-lock__ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  animation: hpRipple 1.6s ease-out infinite;
}

@keyframes hpRipple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Scenes 2–4 — transparent so service phone CSS classes render on glass frame */
.hp-sms,
.hp-rcs,
.hp-wa {
  background: transparent;
}


/* Announce screen */
.hp-announce {
  background: transparent;
  align-items: center;
  justify-content: center;
}

.hp-announce__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hp-announce__content--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hp-announce__badge {
  width: 61px;
  height: 61px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.5px;
  font-family: var(--font-main);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hp-announce__badge--sms {
  background: linear-gradient(135deg, #007AFF 0%, #5ac8fa 100%);
}

.hp-announce__badge--rcs {
  background: linear-gradient(135deg, var(--color-cobalt) 0%, #4285F4 100%);
}

.hp-announce__badge--wa {
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-dark) 100%);
}

.hp-announce__badge--email {
  background: linear-gradient(135deg, #FF007C 0%, #00068F 100%);
}

.hp-announce__label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.40);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-main);
}

.hp-announce__name {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.5px;
  font-family: var(--font-main);
  text-align: center;
  margin-top: -4px;
}

.hp-announce__tag {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-main);
  text-align: center;
}

.hp-announce__divider {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-top: 2px;
}

.hp-announce__checklist {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
  max-width: 265px;
  margin-top: 4px;
}

.hp-announce__check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.hp-announce__check-item--visible {
  opacity: 1;
  transform: translateX(0);
}

.hp-announce__check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--chk, #00BBAF);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.hp-announce__check-icon svg {
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.28s ease 0.06s, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) 0.06s;
}

.hp-announce__check-item--checked .hp-announce__check-icon {
  border-color: var(--chk, #00BBAF);
  background: rgba(255, 255, 255, 0.08);
}

.hp-announce__check-item--checked .hp-announce__check-icon svg {
  opacity: 1;
  transform: scale(1);
}

.hp-announce__check-text {
  font-size: var(--font-size-2xs);
  color: rgba(255, 255, 255, 0.30);
  line-height: 1.35;
  font-family: var(--font-main);
  transition: color 0.38s ease;
}

.hp-announce__check-item--checked .hp-announce__check-text {
  color: rgba(255, 255, 255, 0.85);
}

/* Scene 5 — Email (Gmail dark-mode style) */
.hp-email {
  background: #121212;
}

.hp-email__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px 4px;
  font-size: var(--font-size-2xs);
  font-weight: 700;
  color: var(--color-white);
  font-family: -apple-system, var(--font-main);
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.hp-email__statusbar-right {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-white);
  font-size: var(--font-size-caption);
}

.hp-email__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.hp-email__back-btn {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.70);
  line-height: 1;
}

.hp-email__nav-icons {
  display: flex;
  gap: 18px;
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.55);
}

.hp-email__subject-line {
  padding: 12px 16px 4px;
  font-size: var(--font-size-md);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  font-family: var(--font-main);
  flex-shrink: 0;
}

.hp-email__sender-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  flex-shrink: 0;
}

.hp-email__sender-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00BBAF 0%, #00068F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
  font-family: var(--font-main);
}

.hp-email__sender-avatar--japifon {
  background: var(--color-white);
  padding: 2px;
  overflow: hidden;
}

.hp-email__sender-meta {
  flex: 1;
  min-width: 0;
}

.hp-email__sender-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.90);
  font-family: var(--font-main);
}

.hp-email__sender-date {
  font-size: var(--font-size-xs);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.38);
}

.hp-email__sender-to {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.38);
  margin-top: 2px;
  font-family: var(--font-main);
}

.hp-email__star {
  color: rgba(255, 255, 255, 0.28);
  font-size: var(--font-size-lg);
}

.hp-email__scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: none;
}

.hp-email__scroll::-webkit-scrollbar {
  display: none;
}

.hp-email__hero {
  height: 119px;
  background:
    linear-gradient(135deg,
      rgba(0, 6, 143, 0.95) 0%,
      rgba(0, 187, 175, 0.75) 50%,
      rgba(255, 0, 124, 0.70) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-email__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 55%, rgba(0, 187, 175, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(255, 0, 124, 0.35) 0%, transparent 50%);
}

.hp-email__hero-brand {
  position: relative;
  text-align: center;
}

.hp-email__hero-logo {
  font-size: 25px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.5px;
  font-family: var(--font-main);
  line-height: 1;
}

.hp-email__hero-sub {
  font-size: var(--font-size-2xs);
  color: rgba(255, 255, 255, 0.70);
  margin-top: 6px;
  font-family: var(--font-main);
  letter-spacing: 0.3px;
}

.hp-email__text {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hp-email__text--visible {
  opacity: 1;
  transform: translateY(0);
}

.hp-email__headline {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.35;
  font-family: var(--font-main);
}

.hp-email__body-text {
  font-size: var(--font-size-2xs);
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.6;
  font-family: var(--font-main);
}

.hp-email__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  margin: 0;
}

.hp-email__list li {
  font-size: var(--font-size-2xs);
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-main);
  display: flex;
  align-items: center;
  gap: 7px;
}

.hp-email__list li::before {
  content: '•';
  color: #00BBAF;
  font-weight: 700;
  font-size: var(--font-size-caption);
}

.hp-email__actions {
  display: flex;
  gap: 10px;
  padding: 12px 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  background: #121212;
}

.hp-email__action-btn {
  flex: 1;
  background: #e9e1d5;
  border: none;
  border-radius: 24px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #1f1f1f;
  font-family: var(--font-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s ease;
}

.hp-email__action-btn i {
  font-size: 14px;
}

/* Subject badge */
.hp-email__badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  background: #f3b73e;
  color: #000000;
  border: none;
  vertical-align: middle;
  font-family: var(--font-main);
}

/* Verified checkmark in sender row */
.hp-email__verified {
  font-size: 11px;
  color: #4285F4;
}

/* Translation suggestion bar */
.hp-email__translate {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "icon msg close"
    "icon link close";
  gap: 2px 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin: 8px 12px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  flex-shrink: 0;
  font-family: var(--font-main);
}

.hp-email__translate>i:first-child {
  grid-area: icon;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  align-self: center;
}

.hp-email__translate>span:nth-child(2) {
  grid-area: msg;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.hp-email__translate-link {
  grid-area: link;
  font-size: 12px;
  color: #f3b73e;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.hp-email__translate-x {
  grid-area: close;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  align-self: center;
  cursor: pointer;
}

/* CTA pills row */
.hp-email__pills {
  display: flex;
  gap: 7px;
  padding: 10px 14px;
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.hp-email__pills::-webkit-scrollbar {
  display: none;
}

.hp-email__pill {
  flex: 0 0 auto;
  background: transparent;
  border: 1px solid rgba(138, 180, 248, 0.45);
  border-radius: 16px;
  padding: 5px 12px;
  font-size: var(--font-size-2xs);
  font-weight: 600;
  color: #8ab4f8;
  cursor: default;
  white-space: nowrap;
  font-family: var(--font-main);
}

/* Email body card container */
.hp-email__body-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin: 12px 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.hp-email__body-header {
  background: #152238;
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hp-email__menu-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.hp-email__menu-row span {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-white);
  cursor: pointer;
}

.hp-email__track-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 14px;
  font-family: var(--font-main);
  text-align: center;
}

/* Progress tracker */
.hp-email__tracker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 4px;
}

.hp-email__track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hp-email__track-step span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-family: var(--font-main);
  line-height: 1.2;
  margin-top: 6px;
  max-width: 54px;
  white-space: normal;
  word-wrap: break-word;
}

.hp-email__track-step--done span {
  color: var(--color-white);
  font-weight: 600;
}

.hp-email__track-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #555;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: transparent;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.hp-email__track-step--done .hp-email__track-dot {
  background: #00e5ff;
  border-color: #00e5ff;
  color: #000;
}

.hp-email__track-line {
  flex: 1;
  height: 3px;
  background: #555;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.hp-email__track-line--done {
  background: #00e5ff;
}

.hp-email__body-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  width: 100%;
}

/* Shipping info */
.hp-email__ship-info {
  background: #121212;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hp-email__ship-arrival {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-main);
}

.hp-email__ship-addr {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-main);
  line-height: 1.4;
}

.hp-email__ship-order {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-main);
  margin-top: 2px;
}

/* 3-button action bar */
.hp-email__action-btn--icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}

/* Bottom Gmail-style tab bar */
.hp-email__tabs {
  display: flex;
  justify-content: space-around;
  padding: 10px 40px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #121212;
  flex-shrink: 0;
}

.hp-email__tab {
  position: relative;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  cursor: pointer;
}

.hp-email__tab--active {
  color: var(--color-white);
}

.hp-email__tab-badge {
  position: absolute;
  top: -4px;
  left: 12px;
  background: #ea4335;
  color: var(--color-white);
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 8px;
  font-family: var(--font-main);
  line-height: 1.2;
}

/* ── Email Welcome Card ───────────────────────────────────────────────────── */
.hp-email__card {
  background: #16132A;
}

.hp-email__header-banner {
  background: var(--color-navy);
  padding: 16px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.hp-email__logo-full {
  height: 28px;
  width: auto;
}

.hp-email__welcome-badge {
  background: #22C55E;
  color: var(--color-white);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-main);
}

.hp-email__body-content {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hp-email__greeting {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #E879A8;
  font-family: var(--font-main);
}

.hp-email__welcome-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
  font-family: var(--font-main);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hp-email__welcome-title--visible {
  opacity: 1;
  transform: translateY(0);
}

.hp-email__welcome-body {
  font-size: 10px;
  color: #8B8C9E;
  line-height: 1.5;
  font-family: var(--font-main);
}

.hp-email__welcome-cta {
  background: #0F0D1A;
  color: var(--color-white);
  font-size: 11px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-main);
  transition: box-shadow 0.3s ease;
}

.hp-email__welcome-cta--pulse {
  box-shadow: 0 0 0 3px rgba(107, 63, 191, 0.4);
}

.hp-email__feat-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4A4865;
  margin-top: 2px;
  font-family: var(--font-main);
}

.hp-email__feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hp-email__feat-grid--visible {
  opacity: 1;
  transform: translateY(0);
}

.hp-email__feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.hp-email__feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--color-white);
  flex-shrink: 0;
}

.hp-email__feat-icon--dark {
  background: #1E1B30;
}

.hp-email__feat-icon--pink {
  background: #3A1028;
  color: #E879A8;
}

.hp-email__feat-name {
  font-size: 9px;
  font-weight: 600;
  color: #E0DEFA;
  font-family: var(--font-main);
}

.hp-email__feat-desc {
  font-size: 8px;
  color: #6B6882;
  line-height: 1.3;
  font-family: var(--font-main);
}

.hp-email__alert-box {
  background: #0F0D1A;
  border-left: 3px solid #22C55E;
  border-radius: 0 6px 6px 0;
  padding: 10px 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hp-email__alert-box--visible {
  opacity: 1;
  transform: translateY(0);
}

.hp-email__alert-title {
  font-size: 10px;
  font-weight: 700;
  color: #22C55E;
  margin-bottom: 4px;
  font-family: var(--font-main);
}

.hp-email__alert-body {
  font-size: 9px;
  color: #8B8C9E;
  line-height: 1.4;
  font-family: var(--font-main);
}

.hp-email__alert-link {
  color: #8B6FD4;
  font-weight: 600;
}

.hp-email__footer-bar {
  background: #0F0D1A;
  color: #3A3855;
  font-size: 9px;
  text-align: center;
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-family: var(--font-main);
}

/* ── JapiConnect Scene ────────────────────────────────────────────────────── */
.hp-connect {
  display: flex;
  flex-direction: column;
  background: #0d1421;
  color: var(--color-white);
  height: 100%;
}

.hp-connect__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px 4px;
  font-size: var(--font-size-2xs);
  font-weight: 700;
  color: var(--color-white);
  font-family: -apple-system, var(--font-main);
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.hp-connect__statusbar-right {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-white);
  font-size: var(--font-size-caption);
}

.hp-connect__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0 10px;
  background: transparent;
}

.hp-connect__header-content {
  width: 90%;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-connect__app-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hp-connect__app-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.hp-connect__header-title {
  flex: 1;
  text-align: center;
}

.hp-connect__app-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.hp-connect__app-sub {
  font-size: 11px;
  color: #00BBAF;
  font-weight: 500;
  margin-top: 1px;
}

.hp-connect__header-icon {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.hp-connect__body {
  flex: 1;
  overflow: hidden;
  padding: 12px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hp-connect__section-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hp-connect__nav {
  display: flex;
  gap: 4px;
}

.hp-connect__nav-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  cursor: default;
  line-height: 1;
}

.hp-connect__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hp-connect__card--visible {
  opacity: 1;
  transform: translateY(0);
}

.hp-connect__card-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.hp-connect__avatar {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #00BBAF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--color-white);
  flex-shrink: 0;
}

.hp-connect__card-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
}

.hp-connect__card-role {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.hp-connect__btn {
  width: 100%;
  background: #00BBAF;
  border: none;
  border-radius: 20px;
  padding: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  cursor: default;
  font-family: var(--font-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.3s ease, transform 0.15s ease;
}

.hp-connect__btn--pulse {
  transform: scale(0.97);
}

.hp-connect__btn--connected {
  background: rgba(0, 187, 175, 0.35);
}

.hp-connect__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hp-connect__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 8px 10px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hp-connect__item--visible {
  opacity: 1;
  transform: translateX(0);
}

.hp-connect__item-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-white);
  flex-shrink: 0;
}

.hp-connect__item-avatar--1 {
  background: #3b82f6;
}

.hp-connect__item-avatar--2 {
  background: #8b5cf6;
}

.hp-connect__item-avatar--3 {
  background: #0d9488;
}

.hp-connect__item-avatar--4 {
  background: #dc2626;
}

.hp-connect__item-info {
  flex: 1;
  min-width: 0;
}

.hp-connect__item-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hp-connect__item-role {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1px;
}

.hp-connect__item-chat {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.hp-connect__bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 8px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: auto;
}

.hp-connect__bottom-nav i {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
}

.hp-connect__bottom-nav .hp-connect__nav-active {
  color: #00BBAF;
}

/* ── Services Section ─────────────────────────────────────────────────────── */
/* ── Service Showcase (Nuestros Servicios) ────────────────────────────────── */
.svc-show {
  padding: 96px 0;
  background: var(--color-white);
}

.svc-show__container {
  display: flex;
  flex-direction: column;
  gap: 52px;
  width: 96%;
  max-width: 1600px;
}

.svc-show__header {
  text-align: center;
}

.svc-show__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0d1b2a;
  text-transform: uppercase;
}

.svc-show__sub {
  margin-top: 10px;
  font-size: 1.05rem;
  color: var(--color-text-secondary);
}

.svc-show__inner {
  display: flex;
  flex-direction: column;
  gap: 52px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.svc-show__body {
  display: flex;
  gap: 40px;
  align-items: start;
}

/* ── List (left) ── */
.svc-show__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 310px;
  flex-shrink: 0;
}

.svc-show__timeline {
  position: absolute;
  left: 59px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: var(--color-border);
  border-radius: 1px;
  z-index: 0;
}

.svc-show__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 14px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.22s ease, box-shadow 0.22s ease;
  width: calc(100% - 76px);
  margin-left: 76px;
  height: 72px;
  z-index: 1;
}

.svc-show__year {
  position: absolute;
  left: -70px;
  width: 44px;
  text-align: right;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-tertiary);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.3px;
}

.svc-show__item--active .svc-show__year {
  color: var(--color-magenta);
}

.svc-show__item--active {
  background: rgba(233, 30, 140, 0.06);
}

.svc-show__item:hover {
  box-shadow: inset 0 0 0 1.5px rgba(0, 0, 0, 0.10);
}

.svc-show__item:hover .svc-show__name {
  color: #0d1b2a;
}

.svc-show__item:hover .svc-show__icon {
  animation: svcIconPulse 1.4s ease-in-out infinite;
}

.svc-show__item--active:hover .svc-show__icon {
  animation: svcIconPulseActive 1.4s ease-in-out infinite;
}

@keyframes svcIconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

@keyframes svcIconPulseActive {

  0%,
  100% {
    transform: scale(1.06);
  }

  50% {
    transform: scale(1.2);
  }
}


.svc-show__dot {
  position: absolute;
  left: -21px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  z-index: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}

.svc-show__item--active .svc-show__dot {
  background: var(--color-magenta);
  transform: translateY(-50%) scale(1.4);
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.15);
}

.svc-show__icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--font-size-2xl);
  color: var(--color-white);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.svc-show__item--active .svc-show__icon {
  transform: scale(1.06);
}

.svc-show__icon i {
  font-size: var(--font-size-2xl);
  line-height: 1;
}

.svc-show__icon img,
.svc-panel__icon img,
.svc-acc__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-show__icon--connect img,
.svc-panel__icon--connect img,
.svc-acc__icon--connect img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}


.svc-show__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.svc-show__name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-slate);
  letter-spacing: 0.01em;
  transition: color 0.22s ease;
}

.svc-show__item--active .svc-show__name {
  color: var(--color-magenta);
}

.svc-show__item[data-svc="connect"] .svc-show__name {
  letter-spacing: 0.04em;
}

.svc-show__desc {
  font-size: 12.5px;
  color: var(--color-text-tertiary);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* ── Right panel ── */
.svc-show__panel {
  flex: 1;
  min-width: 0;
  background: var(--color-white);
  border-radius: 20px;
  height: 720px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  --panel-accent: var(--color-border);
  transition: box-shadow 0.3s ease;
}

.svc-show__panel:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* Spinning conic-gradient border */
.svc-show__panel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: conic-gradient(from 0deg,
      transparent 0deg,
      var(--panel-accent) 20deg,
      transparent 40deg);
  animation: panelBorderSpin 4s linear infinite;
  z-index: 0;
}

/* White interior fill — reveals only the 4px border strip */
.svc-show__panel::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--color-white);
  border-radius: 16px;
  z-index: 1;
}

/* Panel content must sit above pseudo-elements */
.svc-show__panel>.svc-panel {
  position: relative;
  z-index: 2;
}

@keyframes panelBorderSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ── Per-service accent color ── */
.svc-show__panel--sms {
  --panel-accent: #1A73E8;
}

.svc-show__panel--rcs {
  --panel-accent: #1A73E8;
}

.svc-show__panel--email {
  --panel-accent: var(--color-magenta);
}

.svc-show__panel--wa {
  --panel-accent: #25D366;
}

.svc-show__panel--voice {
  --panel-accent: #3B82F6;
}

.svc-show__panel--bots {
  --panel-accent: #7C3AED;
}

.svc-show__panel--connect {
  --panel-accent: #6366f1;
}

.svc-show__panel--sms .svc-panel__benefits li i {
  color: #1A73E8;
  background: rgba(26, 115, 232, 0.08);
}

.svc-show__panel--rcs .svc-panel__benefits li i {
  color: var(--color-cobalt);
  background: rgba(26, 115, 232, 0.08);
}

.svc-show__panel--email .svc-panel__benefits li i {
  color: var(--color-magenta);
  background: rgba(233, 30, 140, 0.08);
}

.svc-show__panel--wa .svc-panel__benefits li i {
  color: var(--color-emerald-dark);
  background: rgba(37, 211, 102, 0.08);
}

.svc-show__panel--voice .svc-panel__benefits li i {
  color: var(--color-azure);
  background: rgba(59, 130, 246, 0.08);
}

.svc-show__panel--bots .svc-panel__benefits li i {
  color: var(--color-violet);
  background: rgba(124, 58, 237, 0.08);
}

.svc-show__panel--connect .svc-panel__benefits li i {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.08);
}

.svc-show__panel--sms .svc-panel__more {
  color: var(--color-magenta);
  border-color: rgba(233, 30, 140, 0.25);
  background: rgba(233, 30, 140, 0.04);
}

.svc-show__panel--rcs .svc-panel__more {
  color: var(--color-cobalt);
  border-color: rgba(26, 115, 232, 0.25);
  background: rgba(26, 115, 232, 0.04);
}

.svc-show__panel--email .svc-panel__more {
  color: var(--color-sky);
  border-color: rgba(14, 165, 233, 0.25);
  background: rgba(14, 165, 233, 0.04);
}

.svc-show__panel--wa .svc-panel__more {
  color: var(--color-emerald-dark);
  border-color: rgba(37, 211, 102, 0.25);
  background: rgba(37, 211, 102, 0.04);
}

.svc-show__panel--voice .svc-panel__more {
  color: var(--color-azure);
  border-color: rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.04);
}

.svc-show__panel--bots .svc-panel__more {
  color: var(--color-violet);
  border-color: rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.04);
}

.svc-show__panel--connect .svc-panel__more {
  color: var(--color-slate);
  border-color: rgba(30, 41, 59, 0.25);
  background: rgba(30, 41, 59, 0.04);
}

/* ── Panel inner structure ── */
.svc-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: opacity 0.18s ease;
}

.svc-panel--switching {
  opacity: 0;
}

.svc-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 32px 20px;
  border-bottom: 1px solid var(--color-surface);
}

.svc-panel__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-panel__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  color: var(--color-white);
  flex-shrink: 0;
  overflow: hidden;
}

.svc-panel__title {
  font-size: 26px;
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.01em;
}

.svc-panel__more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #16a34a;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #dcfce7;
  background: #f0fdf4;
  transition: background 0.2s ease;
}

.svc-panel__more:hover {
  background: #dcfce7;
}

.svc-panel__more-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
}

.svc-panel__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  flex: 1;
  min-height: 0;
  border-bottom: 1px solid var(--color-surface);
}

.svc-panel__preview-col {
  padding: 0;
  border-right: 1px solid var(--color-surface);
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.svc-panel__preview-inner {
  width: 80%;
  margin: 0 auto;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.svc-panel__preview {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.svc-preview--email {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
}

.svc-preview__demo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.svc-preview--email .hp-email__scroll {
  overflow: hidden;
}

.svc-preview--email .hp-email__statusbar,
.svc-preview--email .hp-email__topbar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.svc-preview--email .hp-email__statusbar,
.svc-preview--email .hp-email__statusbar-right {
  color: #1f2937;
}

.svc-preview--email .hp-email__back-btn,
.svc-preview--email .hp-email__nav-icons {
  color: var(--color-text-secondary);
}

.svc-preview--email .hp-email__subject-line {
  color: #0f172a;
}

.svc-preview--email .hp-email__sender-name-row {
  color: #1e293b;
}

.svc-preview--email .hp-email__sender-date,
.svc-preview--email .hp-email__sender-to {
  color: var(--color-text-tertiary);
}

.svc-preview--email .hp-email__star {
  color: #cbd5e1;
}

.svc-preview--email .hp-email__scroll {
  background: #f1f3f4;
}

.svc-preview--email .hp-email__translate {
  background: rgba(0, 0, 0, 0.03);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  margin: 0;
  color: var(--color-text-secondary);
}

.svc-preview--email .hp-email__translate>i:first-child {
  color: var(--color-text-tertiary);
}

.svc-preview--email .hp-email__translate-link {
  color: #1a73e8;
}

.svc-preview--email .hp-email__actions {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.svc-preview--email .hp-email__action-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: #475569;
}

.svc-preview--email .hp-email__tabs {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.svc-preview--email .hp-email__tab {
  color: rgba(0, 0, 0, 0.35);
}

.svc-preview--email .hp-email__tab--active {
  color: #1a73e8;
}

.svc-preview--email .hp-email__subject-line {
  font-size: var(--font-size-sm);
}

.svc-preview--email .hp-email__body-card {
  margin: 12px 12px 0;
}

/* ── Promo email card ─────────────────────────────────────────────────────── */
.svc-email-promo__banner {
  background: linear-gradient(135deg, #fff0f3 0%, #ffe4e8 100%);
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 8px 8px 0 0;
}

.svc-email-promo__banner-content {
  flex: 1;
  min-width: 0;
}

.svc-email-promo__banner-title {
  font-size: var(--font-size-sm);
  font-weight: 800;
  color: #c0392b;
  line-height: 1.3;
  margin-bottom: 4px;
}

.svc-email-promo__banner-desc {
  font-size: var(--font-size-2xs);
  color: #555;
  margin-bottom: 8px;
  line-height: 1.4;
}

.svc-email-promo__cta {
  background: #e74c3c;
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: var(--font-size-2xs);
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-main);
}

.svc-email-promo__banner-icon {
  position: relative;
  font-size: 36px;
  color: #e74c3c;
  flex-shrink: 0;
}


.svc-email-promo__badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: #e74c3c;
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
}

.svc-email-promo__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid #f0e0e0;
  background: #fff8f8;
  border-radius: 0 0 8px 8px;
}

.svc-email-promo__feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px;
  font-size: 10px;
  color: #555;
  text-align: center;
  border-right: 1px solid #f0e0e0;
  line-height: 1.3;
}

.svc-email-promo__feat:last-child {
  border-right: none;
}

.svc-email-promo__feat i {
  font-size: 16px;
  color: #e74c3c;
}

/* Preview: SMS — phone frame light mode */
.svc-preview--sms {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.svc-preview--sms .sms-phone__screen {
  border-radius: 12px;
  background: #f5f5f5;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.svc-preview--sms .sms-phone__header {
  background: var(--color-white);
  border-bottom: 1px solid #e0e0e0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.svc-preview--sms .sms-phone__clock,
.svc-preview--sms .sms-phone__indicators,
.svc-preview--sms .sms-phone__indicators i {
  color: #1f2937;
}

.svc-preview--sms .sms-phone__back {
  color: #1a73e8;
  font-size: 24px;
}

.svc-preview--sms .sms-phone__contact-avatar {
  background: #1a73e8;
  color: var(--color-white);
}

.svc-preview--sms .sms-phone__contact-name {
  color: #202124;
}

.svc-preview--sms .sms-phone__nav-icon {
  color: #5f6368;
}

.svc-preview--sms .sms-phone__messages {
  background: #f5f5f5;
}

.svc-preview--sms .sms-phone__datelabel {
  color: #80868b;
}

.svc-preview--sms .sms-phone__bubble--in {
  background: var(--color-white);
  border: none;
  color: #202124;
  backdrop-filter: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.svc-preview--sms .sms-phone__ts {
  color: #80868b;
}

.svc-preview--sms .sms-phone__sender-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border: 1px solid #e8eaed;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 8px 12px;
  font-size: 12px;
}

.svc-preview--sms .sms-phone__sender-banner>i {
  color: #34a853;
  font-size: 18px;
}

.svc-preview--sms .sms-phone__sender-name {
  display: block;
  font-weight: 700;
  color: #202124;
  font-size: 12px;
}

.svc-preview--sms .sms-phone__sender-type {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #5f6368;
  font-size: 11px;
}

.svc-preview--sms .sms-phone__sender-type i {
  color: #34a853;
  font-size: 11px;
}

.svc-preview--sms .sms-phone__inputbar {
  background: var(--color-white);
  border-top: 1px solid #e0e0e0;
}

.svc-preview--sms .sms-phone__add-btn {
  color: #5f6368;
}

.svc-preview--sms .sms-phone__input-pill {
  background: #f1f3f4;
}

.svc-preview--sms .sms-phone__placeholder {
  color: #80868b;
}

.svc-preview--sms .sms-phone__mic-btn {
  background: #1a73e8;
  color: var(--color-white);
}

.svc-panel__benefits-col {
  padding: 28px 70px 28px 28px;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.svc-panel__col-title {
  font-size: var(--font-size-caption);
  font-weight: 700;
  color: var(--color-slate);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

/* Preview: SMS bubble */
.svc-preview__bubble {
  background: var(--color-surface);
  border-radius: 16px 16px 16px 4px;
  padding: 11px 14px;
  font-size: var(--font-size-2xs);
  line-height: 1.55;
  color: #334155;
  position: relative;
  margin-bottom: 10px;
}

.svc-preview__bubble p {
  margin: 0;
}

.svc-preview__link {
  color: #2563eb;
  font-weight: 500;
}

.svc-preview__time {
  display: block;
  font-size: var(--font-size-micro);
  color: var(--color-text-tertiary);
  text-align: right;
  margin-top: 6px;
}

.svc-preview__sender {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--color-surface-light);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  font-size: var(--font-size-sm);
}

.svc-preview__sender>i {
  font-size: var(--font-size-2xl);
  color: var(--color-text-secondary);
  flex-shrink: 0;
}

.svc-preview__sender-name {
  display: block;
  font-weight: 600;
  color: #334155;
  font-size: var(--font-size-sm);
}

.svc-preview__sender-type {
  display: block;
  color: var(--color-text-secondary);
  margin-top: 2px;
  font-size: var(--font-size-2xs);
}

.svc-preview__sender-type i {
  color: #16a34a;
  vertical-align: middle;
  font-size: var(--font-size-sm);
}

/* Preview: WIP state */
.svc-preview__wip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  font-size: 36px;
  color: #cbd5e1;
}

/* Preview: JapiConnect */
.svc-preview--connect {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.svc-conn-greeting {
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-conn-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-base);
  color: var(--color-white);
  flex-shrink: 0;
}

.svc-conn-avatar--a {
  background: linear-gradient(135deg, var(--color-magenta), #ff4d9d);
}

.svc-conn-avatar--e {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.svc-conn-greeting__name {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-slate);
}

.svc-conn-greeting__msg {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.svc-conn-session {
  display: flex;
  gap: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.svc-conn-session__img {
  width: 72px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #312e81 0%, var(--color-violet) 50%, var(--color-magenta) 100%);
}

.svc-conn-session__body {
  padding: 9px 10px 9px 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.svc-conn-session__title {
  font-size: var(--font-size-2xs);
  font-weight: 700;
  color: var(--color-slate);
  line-height: 1.3;
}

.svc-conn-session__stage {
  font-size: 10.5px;
  color: var(--color-text-secondary);
}

.svc-conn-session__time {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--font-size-micro);
  color: #475569;
  flex-wrap: wrap;
  margin-top: 2px;
}

.svc-conn-session__time i {
  color: var(--color-magenta);
}

.svc-conn-session__badge {
  background: #fce4f3;
  color: var(--color-magenta);
  font-size: 9.5px;
  font-weight: 600;
  border-radius: 20px;
  padding: 1px 7px;
}

.svc-conn-actions {
  display: flex;
  gap: 6px;
}

.svc-conn-action {
  flex: 1;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  color: #475569;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.svc-conn-action i {
  font-size: var(--font-size-lg);
  color: var(--color-magenta);
}

.svc-conn-request {
  display: flex;
  gap: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.svc-conn-request__body {
  flex: 1;
  min-width: 0;
}

.svc-conn-request__top {
  font-size: var(--font-size-xs);
  color: #334155;
  line-height: 1.4;
}

.svc-conn-request__time {
  font-size: var(--font-size-micro);
  color: var(--color-text-tertiary);
  display: block;
  margin-top: 1px;
}

.svc-conn-request__role {
  font-size: var(--font-size-micro);
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.svc-conn-request__btns {
  display: flex;
  gap: 8px;
}

.svc-conn-btn {
  flex: 1;
  text-align: center;
  padding: 6px 8px;
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  cursor: default;
}

.svc-conn-btn--primary {
  background: var(--color-magenta);
  color: var(--color-white);
}

.svc-conn-btn--ghost {
  background: transparent;
  color: var(--color-slate);
  border: 1px solid var(--color-border);
}

/* Preview: Voice */
.svc-preview--voice {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Voice preview — phone shell (light theme) ── */
.svc-preview--voice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.svc-preview--voice .sms-phone__screen {
  flex: 1;
  border-radius: 12px;
  background: #f5f7ff;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.svc-preview--voice .sms-phone__header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.svc-preview--voice .sms-phone__clock,
.svc-preview--voice .sms-phone__indicators,
.svc-preview--voice .sms-phone__indicators i {
  color: #1f2937;
}

.svc-preview--voice .sms-phone__back {
  color: var(--color-azure);
  font-size: 22px;
}

.svc-preview--voice .sms-phone__contact-name {
  color: #0f172a;
  font-weight: 600;
}

.svc-preview--voice .sms-phone__nav-icon {
  color: var(--color-azure);
}

.svc-preview--voice .svc-voice-japi-avatar {
  width: 28px;
  height: 28px;
  padding: 0;
  overflow: hidden;
}

.svc-voice-japi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.svc-voice-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.svc-voice-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
  padding: 16px 16px 20px;
  justify-content: center;
}

.svc-voice-ring__avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-border);
  margin-bottom: 6px;
}

.svc-voice-ring__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-voice-ring__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-slate);
}

.svc-voice-ring__label {
  font-size: 12px;
  color: var(--color-text-muted);
}

.svc-voice-ring__num {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.svc-voice-ring__btns {
  display: flex;
  gap: 52px;
  margin-top: 12px;
}

.svc-voice-ring__btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.svc-voice-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 0 10px;
  width: 100%;
}

.svc-voice-ring__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-border);
  margin-bottom: 4px;
}

.svc-voice-ring__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-voice-ring__name {
  font-size: var(--font-size-md);
  font-weight: 700;
  color: var(--color-slate);
}

.svc-voice-ring__label {
  font-size: var(--font-size-caption);
  color: var(--color-text-muted);
}

.svc-voice-ring__num {
  font-size: var(--font-size-caption);
  color: var(--color-text-secondary);
}

.svc-voice-ring__btns {
  display: flex;
  gap: 48px;
  margin-top: 16px;
}

.svc-voice-ring__decline,
.svc-voice-ring__answer {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-white);
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.svc-voice-ring__decline {
  background: #ef4444;
}

.svc-voice-ring__answer {
  background: #22c55e;
  position: relative;
}

.svc-voice-ring__decline:hover {
  opacity: 0.85;
}

.svc-voice-ring__answer:hover {
  transform: scale(1.08);
}

.svc-voice-ring__answer::before,
.svc-voice-ring__answer::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  opacity: 0;
  animation: voiceRingPulse 1.8s ease-out infinite;
}

.svc-voice-ring__answer::after {
  animation-delay: 0.9s;
}

@keyframes voiceRingPulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

.svc-voice-ring__hint {
  font-size: 9.5px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 3px;
}

.svc-voice-steps {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.svc-voice-step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-voice-step__head {
  display: flex;
  align-items: center;
  gap: 6px;
}

.svc-voice-step__num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-azure);
  color: var(--color-white);
  font-size: var(--font-size-2xs);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-voice-step__title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-slate);
  line-height: 1.3;
}

.svc-voice-step__desc {
  font-size: 10.5px;
  color: var(--color-text-secondary);
  line-height: 1.4;
  margin: 0;
}

.svc-voice-arrow {
  font-size: var(--font-size-md);
  color: var(--color-text-tertiary);
  flex-shrink: 0;
  align-self: center;
}

.svc-voice-phone {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  height: 120px;
  margin-top: auto;
}

.svc-voice-phone__label {
  font-size: 9.5px;
  color: var(--color-text-tertiary);
}

.svc-voice-phone__name {
  font-size: var(--font-size-2xs);
  font-weight: 700;
  color: var(--color-slate);
}

.svc-voice-phone__num {
  font-size: var(--font-size-micro);
  color: var(--color-text-secondary);
}

.svc-voice-phone__btn {
  width: 32px;
  height: 32px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--font-size-caption);
  margin-top: 4px;
}

.svc-voice-player {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  height: 120px;
  margin-top: auto;
}

.svc-voice-player--clickable {
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.svc-voice-player--clickable:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
}

.svc-voice-player__hint {
  font-size: 10px;
  color: var(--color-azure);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  opacity: 0.75;
  animation: voiceHintPulse 2s ease-in-out infinite;
  transition: opacity 0.2s ease;
}

.svc-voice-player__hint--hidden {
  display: none;
}

@keyframes voiceHintPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.svc-voice-player__top {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--font-size-micro);
  color: var(--color-azure);
}

.svc-voice-player__top i {
  font-size: var(--font-size-lg);
}

.svc-voice-play-btn {
  animation: voicePlayPulse 1.8s ease-in-out infinite;
}

@keyframes voicePlayPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.75;
  }
}

.svc-voice-player__wave--active span {
  animation: voiceWaveBar 0.8s ease-in-out infinite alternate;
}

.svc-voice-player__wave--active span:nth-child(odd) {
  animation-delay: 0.15s;
}

@keyframes voiceWaveBar {
  from {
    opacity: 0.4;
    transform: scaleY(0.6);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

.svc-voice-player__title {
  font-size: var(--font-size-2xs);
  font-weight: 700;
  color: var(--color-slate);
}

.svc-voice-player__wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 20px;
}

.svc-voice-player__wave span {
  flex: 1;
  background: var(--color-red);
  border-radius: 2px;
  opacity: 0.7;
}

.svc-voice-player__wave span:nth-child(1) {
  height: 30%;
}

.svc-voice-player__wave span:nth-child(2) {
  height: 60%;
}

.svc-voice-player__wave span:nth-child(3) {
  height: 90%;
}

.svc-voice-player__wave span:nth-child(4) {
  height: 50%;
}

.svc-voice-player__wave span:nth-child(5) {
  height: 100%;
}

.svc-voice-player__wave span:nth-child(6) {
  height: 70%;
}

.svc-voice-player__wave span:nth-child(7) {
  height: 45%;
}

.svc-voice-player__wave span:nth-child(8) {
  height: 85%;
}

.svc-voice-player__wave span:nth-child(9) {
  height: 55%;
}

.svc-voice-player__wave span:nth-child(10) {
  height: 30%;
}

.svc-voice-player__wave span:nth-child(11) {
  height: 20%;
}

.svc-voice-player__wave span:nth-child(12) {
  height: 15%;
}

.svc-voice-player__time {
  font-size: 9.5px;
  color: var(--color-text-tertiary);
  text-align: right;
}

/* ── Status bar only (no navbar) — scoped to voice preview for specificity ── */
.svc-preview--voice .svc-voice-statusbar-only {
  border-bottom: none;
  padding-bottom: 0;
  background: #f5f7ff;
}

.svc-voice-statusbar-only .sms-phone__statusbar {
  padding-bottom: 4px;
}

/* ── Active call screen (same light theme as ringing) ── */
.svc-voice-active {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px 24px;
  background: #f5f7ff;
}

.svc-voice-active__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-slate);
  letter-spacing: -0.01em;
}

.svc-voice-active__timer {
  font-size: 13px;
  color: #22c55e;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.svc-voice-active__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 240px;
  margin: 16px 0;
}

.svc-voice-active__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.svc-voice-active__btn i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-azure);
}

.svc-voice-active__btn span {
  font-size: 9px;
  color: var(--color-text-muted);
  text-align: center;
}

.svc-voice-active__hangup {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ef4444;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-white);
  transition: opacity 0.15s ease;
}

.svc-voice-active__hangup:hover {
  opacity: 0.85;
}

.svc-voice-tag {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 10px 12px;
}

.svc-voice-tag>i {
  font-size: var(--font-size-md);
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 1px;
}

.svc-voice-tag strong {
  display: block;
  font-size: var(--font-size-2xs);
  color: #166534;
}

.svc-voice-tag span {
  font-size: 10.5px;
  color: #4ade80;
  line-height: 1.4;
}

/* Preview: AI Bots */
.svc-preview--bots {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
  height: 100%;
}

.svc-bots-topbar {
  background: var(--color-white);
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e8eaed;
}

.svc-bots-topbar__info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-bots-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  color: var(--color-cobalt);
  flex-shrink: 0;
  overflow: hidden;
}

.svc-bots-avatar--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-bots-topbar__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.svc-bots-topbar__name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #202124;
}

.svc-bots-topbar__badge {
  color: var(--color-cobalt);
  font-size: var(--font-size-xs);
  vertical-align: middle;
}

.svc-bots-topbar__sub {
  font-size: 10.5px;
  color: #34a853;
  font-weight: 500;
}

.svc-bots-topbar__dots {
  color: #5f6368;
  font-size: var(--font-size-md);
}

.svc-bots-body {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.svc-bots-sent,
.svc-bots-recv {
  max-width: 85%;
  border-radius: 10px;
  padding: 5px 8px;
  font-size: var(--font-size-xs);
  line-height: 1.4;
}

.svc-bots-sent {
  align-self: flex-end;
  background: #d2e3fc;
  border-radius: 10px 10px 0 10px;
  color: #202124;
}

.svc-bots-recv {
  align-self: flex-start;
  background: var(--color-white);
  border-radius: 0 10px 10px 10px;
  color: #202124;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.svc-bots-sent p,
.svc-bots-recv p {
  margin: 0 0 1px;
}

.svc-bots-time {
  display: block;
  font-size: 9px;
  color: #80868b;
  text-align: right;
}

.svc-bots-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin: 4px 0 3px;
}

.svc-bots-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 9.5px;
  color: var(--color-cobalt);
  background: #e8f0fe;
  border-radius: 12px;
  padding: 2px 7px;
  white-space: nowrap;
}

.svc-bots-link {
  display: block;
  font-size: 10.5px;
  color: var(--color-cobalt);
  font-weight: 500;
  margin: 2px 0 1px;
}

.svc-bots-inputbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: var(--color-white);
  border-top: 1px solid #e8eaed;
  flex-shrink: 0;
}

.svc-bots-inputbar__field {
  flex: 1;
  font-size: var(--font-size-xs);
  color: #80868b;
  background: #f1f3f4;
  border-radius: 20px;
  padding: 5px 12px;
}

.svc-bots-inputbar__send {
  font-size: var(--font-size-md);
  color: var(--color-cobalt);
  flex-shrink: 0;
}

/* Preview: WhatsApp */
.svc-preview--wa {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.svc-preview--wa .wa-phone__screen {
  border-radius: 12px;
  background: #E5DDD5;
}

.svc-preview--wa .wa-phone__header {
  background: #075E54;
}

.svc-preview--wa .wa-phone__clock {
  color: var(--color-white);
}

.svc-preview--wa .wa-phone__indicators {
  color: var(--color-white);
}

.svc-preview--wa .wa-phone__messages {
  background: #E5DDD5;
}

.svc-preview--wa .wa-phone__datelabel {
  background: rgba(255, 255, 255, 0.8);
  color: #667781;
}

.svc-preview--wa .wa-security-notice {
  background: #FFF8E1;
  color: #7A5F00;
  border-color: #FFE082;
}

.svc-preview--wa .wa-security-notice i {
  color: #7A5F00;
}

.svc-preview--wa .wa-msg__bubble {
  background: var(--color-white);
  color: #111b21;
}

.svc-preview--wa .wa-msg--outgoing .wa-msg__bubble {
  background: #DCF8C6;
  color: #111b21;
}

.svc-preview--wa .wa-msg__time {
  color: #8696A0;
}

.svc-preview--wa .wa-msg__read {
  color: #53BDEB;
}

.svc-preview--wa .wa-business-notice {
  color: #007BFC;
}

.svc-preview--wa .wa-quick-replies {
  background: transparent;
}

.svc-preview--wa .wa-qr__btn {
  background: var(--color-white);
  color: #007BFC;
  border-top: 1px solid #e0e0e0;
}

.svc-preview--wa .wa-phone__inputbar {
  background: #F0F2F5;
}

.svc-preview--wa .wa-phone__input-pill {
  background: var(--color-white);
  color: #667781;
}

.svc-preview--wa .wa-phone__placeholder {
  color: #8696A0;
}

.svc-preview--wa .wa-inputbar__emoji,
.svc-preview--wa .wa-inputbar__right i {
  color: #54656F;
}

.svc-preview--wa .wa-phone__mic-btn {
  background: #25D366;
  color: var(--color-white);
}

.svc-wa-topbar {
  background: #008069;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.svc-wa-topbar__back,
.svc-wa-topbar__dots {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  flex-shrink: 0;
}

.svc-wa-topbar__info {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
}

.svc-wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-emerald), var(--color-emerald-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--font-size-md);
  flex-shrink: 0;
}

.svc-wa-topbar__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.svc-wa-topbar__name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-white);
}

.svc-wa-topbar__badge {
  color: var(--color-white);
  font-size: var(--font-size-2xs);
  vertical-align: middle;
}

.svc-wa-topbar__sub {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.75);
}

.svc-wa-body {
  flex: 1;
  min-height: 0;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.svc-wa-date {
  font-size: var(--font-size-xs);
  color: #667781;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  padding: 3px 10px;
  align-self: center;
}

.svc-wa-bubble {
  background: var(--color-white);
  border-radius: 0 10px 10px 10px;
  padding: 9px 12px;
  max-width: 88%;
  color: #111b21;
  font-size: var(--font-size-2xs);
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.10);
}

.svc-wa-bubble p {
  margin: 0;
}

.svc-wa-time {
  display: block;
  font-size: var(--font-size-micro);
  color: #8696a0;
  text-align: right;
  margin-top: 4px;
}

.svc-wa-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  max-width: 88%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.10);
}

.svc-wa-card__img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.svc-wa-card__body {
  padding: 9px 12px 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.svc-wa-card__name {
  font-size: var(--font-size-2xs);
  font-weight: 700;
  color: #111b21;
}

.svc-wa-card__price {
  font-size: var(--font-size-2xs);
  font-weight: 600;
  color: var(--color-emerald);
}

.svc-wa-card__cta {
  display: block;
  text-align: center;
  padding: 8px;
  font-size: var(--font-size-2xs);
  color: #008069;
  font-weight: 500;
  border-top: 1px solid #f0f2f5;
}

.svc-wa-inputbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #f0f2f5;
}

.svc-wa-inputbar>i {
  font-size: var(--font-size-xl);
  color: #8696a0;
  flex-shrink: 0;
}

.svc-wa-inputbar__field {
  flex: 1;
  background: var(--color-white);
  border-radius: 20px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.svc-wa-inputbar__placeholder {
  flex: 1;
  font-size: var(--font-size-2xs);
  color: #8696a0;
}

.svc-wa-inputbar__icons {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-lg);
  color: #8696a0;
}

.svc-wa-inputbar__mic {
  width: 36px;
  height: 36px;
  background: #008069;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-md);
  color: var(--color-white);
  flex-shrink: 0;
}

/* Preview: RCS chat */
.svc-preview--rcs {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.svc-preview--rcs .rcs-phone__screen {
  border-radius: 12px;
  background: #f8f9fa;
}

/* ── RCS SVC panel preview ── */
.rcs-svc__verified-icon {
  font-size: 12px;
  color: var(--color-cobalt);
}

.rcs-svc__verified-sub {
  font-size: 11px;
  color: var(--color-text-muted);
}

.rcs-svc__messages {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.rcs-svc__carousel {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
  flex-shrink: 0;
  min-height: 130px;
}

.rcs-svc__carousel::-webkit-scrollbar {
  display: none;
}

.rcs-svc__card {
  flex: 0 0 108px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rcs-svc__card-header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rcs-svc__card-header img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.rcs-svc__card-header--voice {
  background: linear-gradient(135deg, #0f2652, #2563eb);
}

.rcs-svc__card-header--email {
  background: linear-gradient(135deg, #9b1c1c, #e74c3c);
}

.rcs-svc__card-header--wa {
  background: linear-gradient(135deg, #065f46, #25d366);
}

.rcs-svc__card-header--sms {
  background: linear-gradient(135deg, #1f2937, #4b5563);
}

.rcs-svc__card-body {
  padding: 7px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.rcs-svc__card-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-slate);
}

.rcs-svc__card-desc {
  font-size: 10.5px;
  color: var(--color-text-muted);
  line-height: 1.35;
  flex: 1;
}

.rcs-svc__card-cta {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-cobalt);
  margin-top: 4px;
}

.rcs-svc__web-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-cobalt);
  cursor: default;
}

.rcs-svc__stop {
  font-size: 10.5px;
  color: var(--color-text-muted);
  text-align: center;
}

.rcs-svc__time {
  font-size: 10px;
  color: var(--color-text-muted);
  text-align: right;
}

.svc-preview--rcs .rcs-phone__header {
  background: var(--color-white);
  border-bottom: 1px solid #e0e0e0;
}

.svc-preview--rcs .rcs-phone__clock,
.svc-preview--rcs .rcs-phone__indicators,
.svc-preview--rcs .rcs-phone__indicators i {
  color: #202124;
}

.svc-preview--rcs .rcs-phone__back {
  color: #1a73e8;
}

.svc-preview--rcs .rcs-phone__contact-name {
  color: #202124;
}

.svc-preview--rcs .rcs-phone__nav-icon {
  color: #5f6368;
}

.svc-preview--rcs .rcs-verified-icon {
  color: #1a73e8;
}

.svc-preview--rcs .rcs-phone__messages {
  background: #f8f9fa;
}

.svc-preview--rcs .rcs-sender-card {
  background: var(--color-white);
  border-bottom: 1px solid #e8eaed;
}

.svc-preview--rcs .rcs-sender-card__text {
  color: #5f6368;
}

.svc-preview--rcs .rcs-sender-divider {
  background: #e8eaed;
}

.svc-preview--rcs .rcs-phone__datelabel {
  color: #5f6368;
}

.svc-preview--rcs .rcs-msg__bubble {
  background: var(--color-white);
  color: #202124;
  border: 1px solid #e8eaed;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.svc-preview--rcs .rcs-msg__time {
  color: #80868b;
}

.svc-preview--rcs .rcs-msg__read-icon {
  color: #1a73e8;
}

.svc-preview--rcs .rcs-rich-card__title {
  color: #202124;
}

.svc-preview--rcs .rcs-rich-card__desc {
  color: #5f6368;
}

.svc-preview--rcs .rcs-suggestions {
  background: var(--color-white);
  border-top: 1px solid #e8eaed;
}

.svc-preview--rcs .rcs-japi-btn {
  background: var(--color-white);
  color: #1a73e8;
  border: 1px solid #dadce0;
}

.svc-preview--rcs .rcs-phone__inputbar {
  background: var(--color-white);
  border-top: 1px solid #e8eaed;
}

.svc-preview--rcs .rcs-phone__input-pill {
  background: #f1f3f4;
}

.svc-preview--rcs .rcs-phone__placeholder {
  color: #80868b;
}

.svc-preview--rcs .rcs-inputbar__left i,
.svc-preview--rcs .rcs-inputbar__right i {
  color: #5f6368;
}

.svc-rcs-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--color-white);
  border-bottom: 1px solid #e8eaed;
}

.svc-rcs-topbar__back {
  font-size: 17px;
  color: #5f6368;
  width: 48px;
  flex-shrink: 0;
}

.svc-rcs-topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 48px;
  justify-content: flex-end;
  flex-shrink: 0;
}

.svc-rcs-topbar__verified {
  font-size: 16px;
  color: var(--color-cobalt);
}

.svc-rcs-topbar__dots {
  font-size: 17px;
  color: #5f6368;
}

.svc-rcs-topbar__info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex: 1;
}

.svc-rcs-topbar__name {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #202124;
}

.svc-rcs-avatar {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-cobalt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--font-size-caption);
  flex-shrink: 0;
}

.svc-rcs-avatar__badge {
  position: absolute;
  bottom: -3px;
  right: -3px;
  font-size: var(--font-size-sm);
  color: var(--color-cobalt);
  background: var(--color-white);
  border-radius: 50%;
  line-height: 1;
}

.svc-rcs-banner {
  background: #e8f0fe;
  padding: 8px 14px;
  text-align: center;
}

.svc-rcs-banner p {
  font-size: var(--font-size-xs);
  color: #3c4043;
  margin: 0;
  line-height: 1.45;
}

.svc-rcs-body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-rcs-date {
  font-size: var(--font-size-xs);
  color: #80868b;
  text-align: center;
}

.svc-rcs-bubble {
  background: var(--color-white);
  border-radius: 4px 14px 14px 14px;
  padding: 10px 13px;
  color: #202124;
  font-size: var(--font-size-2xs);
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.svc-rcs-bubble p {
  margin: 0;
}

.svc-rcs-time {
  display: block;
  font-size: var(--font-size-micro);
  color: #80868b;
  text-align: right;
  margin-top: 4px;
}

.svc-rcs-card {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10);
}

.svc-rcs-card__img {
  height: 90px;
  overflow: hidden;
}

.svc-rcs-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-rcs-card__body {
  padding: 10px 12px 12px;
}

.svc-rcs-card__title {
  display: block;
  font-size: var(--font-size-2xs);
  font-weight: 700;
  color: #202124;
  margin-bottom: 4px;
}

.svc-rcs-card__desc {
  font-size: var(--font-size-xs);
  color: #5f6368;
  line-height: 1.4;
  margin: 0 0 7px;
}

.svc-rcs-card__url {
  font-size: var(--font-size-xs);
  color: var(--color-cobalt);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Benefits list */
.svc-panel__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-panel__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: #334155;
  line-height: 1.45;
  padding: 5px 6px;
  border-radius: 10px;
  transition: background 0.15s;
}

.svc-panel__benefits li.svc-benefit--with-desc {
  align-items: flex-start;
}

.svc-panel__benefits li.svc-benefit--with-desc div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.svc-panel__benefits li.svc-benefit--with-desc strong {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.svc-benefit__desc {
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.svc-benefit__img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 10px;
}

.svc-panel__benefits li.svc-benefit--featured {
  background: color-mix(in srgb, var(--panel-accent) 8%, white);
  border: 1.5px solid color-mix(in srgb, var(--panel-accent) 22%, white);
  border-radius: 12px;
  padding: 12px 14px;
  align-items: flex-start;
  gap: 12px;
}

.svc-panel__benefits li.svc-benefit--featured span {
  color: color-mix(in srgb, var(--panel-accent) 55%, #000);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.svc-panel__benefits li.svc-benefit--featured:hover {
  background: color-mix(in srgb, var(--panel-accent) 14%, white);
}

.svc-panel__benefits li:hover {
  background: rgba(0, 0, 0, 0.03);
}

.svc-panel__benefits li i {
  font-size: 17px;
  color: var(--color-text-secondary);
  background: var(--color-surface);
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  transition: color 0.3s, background 0.3s;
}

.svc-panel__cta {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  font-size: 13.5px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  background: var(--color-surface-light);
  border-top: 1px solid var(--color-surface);
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

.svc-panel__cta:hover {
  padding-left: 36px;
}

.svc-panel__cta i {
  font-size: var(--font-size-caption);
  color: currentColor;
  opacity: 0.55;
  transition: opacity 0.18s, transform 0.18s;
}

.svc-panel__cta:hover i {
  transform: translateX(4px);
  opacity: 1;
}

.svc-show__panel--sms .svc-panel__cta {
  color: var(--color-magenta);
  background: rgba(233, 30, 140, 0.03);
}

.svc-show__panel--rcs .svc-panel__cta {
  color: var(--color-cobalt);
  background: rgba(26, 115, 232, 0.03);
}

.svc-show__panel--email .svc-panel__cta {
  color: var(--color-sky);
  background: rgba(14, 165, 233, 0.03);
}

.svc-show__panel--wa .svc-panel__cta {
  color: var(--color-emerald-dark);
  background: rgba(18, 140, 126, 0.03);
}

.svc-show__panel--voice .svc-panel__cta {
  color: var(--color-azure);
  background: rgba(59, 130, 246, 0.03);
}

.svc-show__panel--bots .svc-panel__cta {
  color: var(--color-violet);
  background: rgba(124, 58, 237, 0.03);
}

.svc-show__panel--connect .svc-panel__cta {
  color: var(--color-slate);
  background: rgba(30, 41, 59, 0.03);
}

.svc-show__panel--sms .svc-panel__cta:hover {
  background: rgba(233, 30, 140, 0.07);
}

.svc-show__panel--rcs .svc-panel__cta:hover {
  background: rgba(26, 115, 232, 0.07);
}

.svc-show__panel--email .svc-panel__cta:hover {
  background: rgba(14, 165, 233, 0.07);
}

.svc-show__panel--wa .svc-panel__cta:hover {
  background: rgba(18, 140, 126, 0.07);
}

.svc-show__panel--voice .svc-panel__cta:hover {
  background: rgba(59, 130, 246, 0.07);
}

.svc-show__panel--bots .svc-panel__cta:hover {
  background: rgba(124, 58, 237, 0.07);
}

.svc-show__panel--connect .svc-panel__cta:hover {
  background: rgba(30, 41, 59, 0.07);
}

/* ── Bottom flow (standalone, outside panel) ── */
.svc-show__flow {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 32px;
  background: var(--color-surface-light);
  border-radius: 16px;
  border: 1px solid var(--color-border);
}

/* ── Panel flow — no background: the ::after white fill behind the panel provides it,
   keeping the 4px border strip visible at the bottom edge for the spin animation ── */
.svc-panel__flow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 32px 24px;
  position: relative;
  z-index: 2;
}

.svc-flow__steps {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: space-between;
}

.svc-flow__step {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.svc-flow__text {
  font-size: var(--font-size-caption);
  color: #475569;
  line-height: 1.4;
  font-weight: 500;
}

.svc-flow__arrow {
  font-size: var(--font-size-md);
  color: var(--color-magenta);
  flex-shrink: 0;
  opacity: 0.5;
}

.svc-accordion {
  display: none;
}

@media (min-width: 901px) and (max-width: 1280px) {
  .svc-show__body {
    gap: 20px;
  }

  .svc-show__list {
    width: 270px;
  }

  .svc-show__timeline {
    left: 53px;
  }

  .svc-show__item {
    width: calc(100% - 70px);
    margin-left: 70px;
  }

  .svc-show__year {
    left: -64px;
    width: 38px;
  }

  .svc-show__panel {
    width: auto;
    flex: 1;
    min-width: 0;
    height: 680px;
  }

  .svc-show__item {
    height: 64px;
  }

  .svc-show__name {
    font-size: var(--font-size-sm);
  }

  .svc-show__desc {
    font-size: var(--font-size-xs);
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .svc-show__flow {
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
  }

  .svc-flow__steps {
    width: 100%;
    flex: unset;
    gap: 0;
    justify-content: flex-start;
  }

  .svc-flow__step {
    flex: 1 1 calc(50% - 1px);
    padding: 12px 16px;
    gap: 10px;
    border-bottom: 1px solid var(--color-surface-light);
  }

  .svc-flow__step:nth-of-type(odd) {
    border-right: 1px solid var(--color-surface);
  }

  .svc-flow__step:nth-last-of-type(-n+2) {
    border-bottom: none;
  }

  .svc-flow__arrow {
    display: none;
  }

  .svc-flow__text {
    font-size: var(--font-size-2xs);
  }

  /* WA preview col adjustments */
  .svc-panel__preview-col {
    padding: 18px 16px 18px 20px;
  }

  .svc-panel__benefits-col {
    padding: 18px 20px 18px 18px;
  }

  .svc-panel__col-title {
    font-size: var(--font-size-2xs);
    margin-bottom: 12px;
  }

  .svc-preview--wa {
    height: 100%;
  }

  .svc-wa-topbar {
    padding: 8px 10px;
  }

  .svc-wa-body {
    padding: 8px 10px;
    gap: 7px;
  }

  .svc-wa-bubble {
    font-size: var(--font-size-2xs);
    padding: 7px 10px;
  }

  .svc-wa-card__img {
    height: 80px;
  }

  .svc-wa-card__body {
    padding: 7px 10px 5px;
  }

  .svc-wa-card__name {
    font-size: var(--font-size-xs);
  }

  .svc-wa-card__price {
    font-size: var(--font-size-xs);
  }

  .svc-wa-card__cta {
    font-size: var(--font-size-2xs);
    padding: 6px;
  }

  .svc-wa-inputbar {
    padding: 6px 8px;
    gap: 6px;
  }

  .svc-wa-inputbar>i {
    font-size: var(--font-size-lg);
  }

  .svc-wa-inputbar__mic {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 900px) {
  .svc-show__inner {
    width: 100%;
  }

  .svc-show__body {
    display: none;
  }

  .svc-accordion {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding-left: 24px;
  }

  .svc-accordion::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 35px;
    bottom: 35px;
    width: 2px;
    background: var(--color-border);
    border-radius: 1px;
    z-index: 0;
  }

  .svc-acc__item {
    position: relative;
    background: var(--color-white);
    border-radius: 16px;
    border: 1px solid var(--color-surface);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: visible;
    transition: box-shadow 0.2s ease;
  }

  .svc-acc__item::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 35px;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    z-index: 1;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }

  .svc-acc__item.is-expanded::before {
    background: var(--color-magenta);
    transform: translate(-50%, -50%) scale(1.4);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.15);
  }

  details.svc-acc__item[open] {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  }

  .svc-acc__header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    list-style: none;
  }

  .svc-acc__header::-webkit-details-marker {
    display: none;
  }

  .svc-acc__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-white);
  }

  .svc-acc__icon i {
    font-size: var(--font-size-lg);
    line-height: 1;
  }

  .svc-acc__name {
    flex: 1;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-slate);
  }

  .svc-acc__chevron {
    font-size: var(--font-size-caption);
    color: var(--color-text-tertiary);
    transition: transform 0.25s ease;
  }

  details.svc-acc__item.is-expanded .svc-acc__chevron {
    transform: rotate(180deg);
  }

  .svc-acc__body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 18px;
  }

  details.svc-acc__item.is-expanded .svc-acc__body {
    opacity: 1;
    padding: 0 18px 16px;
    /* max-height is set inline by JS to match exact scrollHeight */
  }

  .svc-acc__body .svc-panel__benefits {
    gap: 8px;
    margin-bottom: 14px;
  }

  .svc-acc__body .svc-panel__benefits li {
    font-size: var(--font-size-sm);
    padding: 4px 6px;
  }

  .svc-acc__body .svc-panel__benefits li i {
    width: 30px;
    height: 30px;
    font-size: var(--font-size-base);
  }

  .svc-acc__body .svc-panel__cta {
    border-radius: 10px;
    border-top: none;
    padding: 13px 16px;
    margin-top: 4px;
  }

  .svc-acc__body .svc-panel__cta:hover {
    padding-left: 20px;
  }

  .svc-show__flow {
    display: none;
    border-radius: 20px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  }

  .svc-flow__steps {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    flex: unset;
    justify-content: flex-start;
    width: 100%;
    position: relative;
    padding: 12px 0;
  }

  .svc-flow__steps::before {
    content: '';
    position: absolute;
    left: 42px;
    /* 20px padding-left of step + 22px (half of 44px icon) */
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-magenta), #ff6db0);
    opacity: 0.25;
    z-index: 0;
  }

  .svc-flow__arrow {
    display: none;
  }

  .svc-flow__step {
    display: flex;
    align-items: center;
    flex: none;
    width: 100%;
    padding: 16px 20px;
    gap: 16px;
    border-bottom: none;
    position: relative;
    z-index: 1;
  }

  .svc-flow__step:last-child {
    border-bottom: none;
  }

  .svc-flow__text {
    font-size: var(--font-size-caption);
    color: #475569;
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
    text-align: left;
  }
}

/* ── Connectivity Section (Clean Build) ───────────────────────────────────── */
.connectivity {
  position: relative;
  padding: 120px 0;
  background: #020412;
  color: var(--color-white);
  overflow: hidden;
}

.text-teal {
  color: var(--color-teal);
}

.text-pink {
  color: var(--color-pink);
}

/* Auroras */
.connectivity__auroras {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.aurora-blob {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
}

.aurora-blob--teal {
  background: var(--color-teal);
  top: -20%;
  left: -20%;
}

.aurora-blob--pink {
  background: var(--color-pink);
  bottom: -20%;
  right: -20%;
}

.connectivity__flex-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 5;
  width: 100%;
}

.connectivity__col-visual {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-width: 0;
  /* IMPEDIR BLOWOUT DEL GRID */
}

.planet-container {
  width: 100%;
  aspect-ratio: 1/1;
  /* Respetara el ancho de su columna y creara un cuadrado perfecto */
  position: relative;
}

.planet-canvas {
  width: 100%;
  height: 100%;
  transform: scale(1.3);
  /* Lo hacemos 30% mas grande pero anclado al centro de la columna */
}

.connectivity__col-content {
  grid-column: 2;
  position: relative;
  z-index: 10;
  padding-left: 20px;
  min-width: 0;
  /* IMPEDIR BLOWOUT DEL GRID */
}

.connectivity__title {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  text-wrap: balance;
}

.connectivity__description {
  font-size: 19px;
  line-height: 1.5;
  opacity: 0.8;
  margin-bottom: 40px;
}

/* Connectivity Flow - Striking Pulse! */
.flow-system {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.node-circle {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 30, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.node-circle svg {
  width: 32px;
  height: 32px;
}

.node-circle i {
  font-size: var(--font-size-3xl);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.node-circle__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.node-circle--pink {
  background: rgba(20, 20, 30, 0.8);
  border: 2px solid var(--color-pink);
  box-shadow: 0 0 25px rgba(251, 13, 128, 0.35);
}

.node-circle--teal {
  background: rgba(20, 20, 30, 0.8);
  border: 2px solid var(--color-teal);
  box-shadow: 0 0 25px rgba(0, 187, 175, 0.35);
}


.node-label {
  font-size: var(--font-size-sm);
  font-weight: 700;
  opacity: 0.9;
}

.node-logo {
  height: 90px;
  background: rgba(0, 0, 0, 0.4);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.flow-path {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  /* Dark base line */
  position: relative;
  overflow: hidden;
  max-width: 150px;
  margin-top: -24px;
}

.flow-path__pulse {
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  /* Neon glow effect with gradient! */
  background: linear-gradient(90deg, transparent, var(--color-pink), var(--color-teal), transparent);
  box-shadow: 0 0 15px var(--color-pink), 0 0 5px var(--color-teal);
  animation: dataFlow 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes dataFlow {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}

/* Glass Card Counter */
.connectivity-counter-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin: 50px auto 0;
  /* Lo centra horizontalmente en su columna */
  width: 100%;
  max-width: 550px;
  /* Suficiente espacio para el numero enorme */
  box-sizing: border-box;
  /* Previene el overflow nativo */
}

.counter-label {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  opacity: 0.6;
  margin-bottom: 8px;
}

.counter-value {
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 900;
  color: var(--color-teal);
  letter-spacing: -2px;
  line-height: 1;
  margin: 15px 0;
  text-shadow: 0 0 35px rgba(0, 187, 175, 0.5);
}

.counter-sub {
  font-size: var(--font-size-caption);
  opacity: 0.7;
}

/* ── Strategic Partners ─────────────────────────────────────────────────────── */
.partners {
  padding: 40px 0;
  background: var(--color-bg-alt);
  text-align: center;
  border-bottom: 1px solid #eaeaea;
  border-top: 1px solid #eaeaea;
}

.partners__title {
  font-size: var(--font-size-caption);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 30px;
  font-weight: 700;
}


.partners__mobile-ticker {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 8px 0;
}

.partners__mobile-ticker::before,
.partners__mobile-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.partners__mobile-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-alt) 0%, transparent 100%);
}

.partners__mobile-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-alt) 0%, transparent 100%);
}

.partners__mobile-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee 28s linear infinite;
  padding-right: 80px;
}

.partners__mobile-track:hover {
  animation-play-state: paused;
}

.partners__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partners__tooltip {
  position: fixed;
  background: rgba(13, 27, 42, 0.92);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
}

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

.partners__logo-wrap:hover .partners__logo {
  transform: scale(1.12) translateY(-2px);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.12));
}

.partners__mobile-track .partners__logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), filter 0.35s;
}

.partners__mobile-track .partners__logo--google {
  height: 44px;
}

.partners__mobile-track .partners__logo--stp {
  height: 100px;
}

.partners__mobile-track .partners__logo--us {
  height: 105px;
  max-width: 260px;
}

.partners__mobile-track .partners__logo--britcham {
  height: 150px;
}

.partners__mobile-track .partners__logo--ced {
  height: 80px;
}


.partners__mobile-track .partners__logo--latinia {
  height: 140px;
}

.partners__mobile-track .partners__logo--china {
  height: 100px;
}

/* ── Trust Banner (Marquee) ───────────────────────────────────────────────── */
.trust-banner {
  padding: 40px 0;
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: none;
}

.trust-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 3px;
  background: linear-gradient(90deg,
      var(--color-pink) 0%,
      var(--color-teal) 12.5%,
      var(--color-pink) 25%,
      var(--color-teal) 37.5%,
      var(--color-pink) 50%,
      var(--color-teal) 62.5%,
      var(--color-pink) 75%,
      var(--color-teal) 87.5%,
      var(--color-pink) 100%);
  box-shadow: 0 0 12px rgba(251, 13, 128, 0.7), 0 0 6px rgba(0, 187, 175, 0.6);
  animation: trustBorderFlow 2s linear infinite;
}

@keyframes trustBorderFlow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.trust-banner__title {
  text-align: center;
  font-size: var(--font-size-caption);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.trust-banner__marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.trust-banner__marquee-wrapper::before,
.trust-banner__marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15rem;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.trust-banner__marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-alt) 0%, transparent 100%);
}

.trust-banner__marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-alt) 0%, transparent 100%);
}

.trust-banner__track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee 35s linear infinite;
  padding-right: 80px;
  /* Perfect seamless loop gap padding */
}

.trust-banner__track:hover {
  animation-play-state: paused;
}

.trust-banner__logo {
  height: 48px;
  /* Slightly larger for more pop/punch */
  object-fit: contain;
  filter: none;
  /* Keep original brand colors */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s;
  opacity: 0.9;
}

.trust-banner__logo:hover {
  transform: scale(1.15) translateY(-2px);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50%));
  }
}

/* ── Integration Section ──────────────────────────────────────────────────── */
.integration {
  padding: 120px 0;
  background: var(--color-bg-alt);
}

.integration__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.integration__title {
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 40px;
}

.section-tagline {
  font-size: var(--font-size-caption);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.integration__description {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.integration__features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.integration__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  text-align: left;
}

.integration__docs-btn {
  margin-top: 32px;
  align-self: flex-start;
}

.integration__feature-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  flex-shrink: 0;
  background: var(--color-teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-caption);
}

/* Code Card */
.code-card {
  background: var(--color-bg-code);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.code-card__header {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.code-card__dots {
  display: flex;
  gap: 8px;
}

.code-card__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-card__dot--red {
  background: #ff5f56;
}

.code-card__dot--yellow {
  background: #ffbd2e;
}

.code-card__dot--green {
  background: #27c93f;
}

.code-card__filename {
  font-family: var(--font-mono);
  font-size: var(--font-size-2xs);
  color: #777;
}

.code-card__content {
  padding: 30px;
  font-family: var(--font-mono);
  font-size: var(--font-size-caption);
  color: #e5e7eb;
  overflow-x: auto;
}

.code-card__kw {
  color: #c792ea;
}

.code-card__fn {
  color: #82aaff;
}

.code-card__str {
  color: #c3e88d;
}

.code-card__cm {
  color: #546e7a;
}

/* ── NOC Section ──────────────────────────────────────────────────────────── */
.noc-section {
  padding: 120px 0;
  background: #0B0E14;
  /* Extremely dark navy/black for NOC feel */
  color: white;
  position: relative;
  overflow: hidden;
}

.noc-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 187, 175, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.noc-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.noc-section__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 20px;
}

.noc-section__desc {
  font-size: var(--font-size-lg);
  color: #a0aec0;
  line-height: 1.6;
}

.noc-section__split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .noc-section__split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .noc-section__split {
    display: none;
  }
}

.noc-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 187, 175, 0.15);
  border: 1px solid rgba(0, 187, 175, 0.2);
  display: flex;
}

.noc-visual__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.noc-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.noc-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, background 0.3s ease;
}

.noc-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.noc-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
}

.noc-card__icon svg {
  width: 30px;
  height: 30px;
}

.noc-card__icon i {
  font-size: var(--font-size-heading-sm);
  line-height: 1;
}

.noc-card__icon--teal {
  color: var(--color-teal);
  box-shadow: inset 0 0 0 1px var(--color-teal);
}

.noc-card__icon--pink {
  color: var(--color-pink);
  box-shadow: inset 0 0 0 1px var(--color-pink);
}

.noc-card__icon--blue {
  color: var(--color-cobalt);
  box-shadow: inset 0 0 0 1px var(--color-cobalt);
}

.noc-card__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 12px;
}

.noc-card__desc {
  font-size: var(--font-size-base);
  color: #8f9ba8;
}

.noc-card--highlight {
  background: linear-gradient(135deg, rgba(0, 187, 175, 0.1) 0%, rgba(251, 13, 128, 0.1) 100%);
  border: 1px solid rgba(0, 187, 175, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px clamp(15px, 5vw, 30px);
}

.noc-card__uptime-value {
  display: block;
  font-size: clamp(36px, 10vw, 56px);
  font-weight: 900;
  color: white;
  text-shadow: 0 0 30px rgba(0, 187, 175, 0.5);
  line-height: 1.1;
  margin-bottom: 12px;
}

.noc-card__uptime-label {
  font-size: var(--font-size-md);
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── NOC Dado 3D pentagonal (Desktop & Mobile) ─────────────────────────── */
.noc-dice {
  --cube-w: 360px;
  --cube-h: 360px;
  --cube-r: calc(var(--cube-w) * 0.6882);

  display: none;
  /* Hide on desktop */
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 0;
  z-index: 10;
}

@media (max-width: 768px) {
  .noc-dice {
    display: flex;
    /* Show on mobile */
    --cube-w: 285px;
    --cube-h: 285px;
    padding: 20px 0;
  }
}

/* Escena: da la perspectiva al prisma */
.noc-cube-scene {
  width: 100%;
  height: calc(var(--cube-h) + 80px);
  perspective: 1200px;
  perspective-origin: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* El prisma: rota sobre Y and X */
.noc-cube {
  width: var(--cube-w);
  height: var(--cube-h);
  position: relative;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: rotateX(90deg) rotateY(0deg);
  transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
}

.noc-cube:active {
  cursor: grabbing;
}

/* Caras: posicionadas en 3D */
.noc-cube__face {
  position: absolute;
  width: var(--cube-w);
  height: var(--cube-h);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: visible;
  /* Let the border glow bleed out slightly */
  transition: opacity 0.6s ease, filter 0.6s ease, transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.3;
  filter: blur(2px) grayscale(60%);
  pointer-events: none;
}

/* Posiciones del dodecaedro 3D */
.noc-cube__face--0 {
  transform: rotateY(0deg) rotateX(-90deg) translateZ(var(--cube-r));
}

.noc-cube__face--1 {
  transform: rotateY(0deg) rotateX(-26.57deg) translateZ(var(--cube-r));
}

.noc-cube__face--2 {
  transform: rotateY(72deg) rotateX(-26.57deg) translateZ(var(--cube-r));
}

.noc-cube__face--3 {
  transform: rotateY(144deg) rotateX(-26.57deg) translateZ(var(--cube-r));
}

.noc-cube__face--4 {
  transform: rotateY(216deg) rotateX(-26.57deg) translateZ(var(--cube-r));
}

.noc-cube__face--5 {
  transform: rotateY(288deg) rotateX(-26.57deg) translateZ(var(--cube-r));
}

.noc-cube__face--6 {
  transform: rotateY(36deg) rotateX(26.57deg) translateZ(var(--cube-r));
}

.noc-cube__face--7 {
  transform: rotateY(108deg) rotateX(26.57deg) translateZ(var(--cube-r));
}

.noc-cube__face--8 {
  transform: rotateY(180deg) rotateX(26.57deg) translateZ(var(--cube-r));
}

.noc-cube__face--9 {
  transform: rotateY(252deg) rotateX(26.57deg) translateZ(var(--cube-r));
}

.noc-cube__face--10 {
  transform: rotateY(324deg) rotateX(26.57deg) translateZ(var(--cube-r));
}

.noc-cube__face--11 {
  transform: rotateY(0deg) rotateX(90deg) translateZ(var(--cube-r));
}

/* Foco en la cara activa */
.noc-cube[data-face="0"] .noc-cube__face--0,
.noc-cube[data-face="1"] .noc-cube__face--1,
.noc-cube[data-face="2"] .noc-cube__face--2,
.noc-cube[data-face="3"] .noc-cube__face--3,
.noc-cube[data-face="4"] .noc-cube__face--4,
.noc-cube[data-face="5"] .noc-cube__face--5,
.noc-cube[data-face="6"] .noc-cube__face--6,
.noc-cube[data-face="7"] .noc-cube__face--7,
.noc-cube[data-face="8"] .noc-cube__face--8,
.noc-cube[data-face="9"] .noc-cube__face--9,
.noc-cube[data-face="10"] .noc-cube__face--10,
.noc-cube[data-face="11"] .noc-cube__face--11 {
  opacity: 1;
  filter: none;
  pointer-events: auto;
}

.noc-cube__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Estilo de la tarjeta de la cara - Pentagon Clip-path */
.noc-cube__card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 45px 24px 24px;
  /* Slightly more compact for square fit */
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  box-sizing: border-box;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  clip-path: polygon(50% 0%, 100% 37%, 81% 100%, 19% 100%, 0% 37%);
  -webkit-clip-path: polygon(50% 0%, 100% 37%, 81% 100%, 19% 100%, 0% 37%);
  border: none;
  border-radius: 0;
  position: relative;
  transition: all 0.3s ease;
}

.noc-cube__card .noc-card__title {
  max-width: 250px;
  margin: 0 auto 8px;
}

.noc-cube__card .noc-card__desc {
  max-width: 230px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .noc-cube__card {
    padding: 35px 24px 28px;
    gap: 8px;
  }

  .noc-cube__card .noc-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 4px;
  }

  .noc-cube__card .noc-card__icon i {
    font-size: 1.25rem;
  }

  .noc-cube__card .noc-card__title {
    font-size: 1.05rem;
    margin: 0 auto 2px;
    max-width: 195px;
  }

  .noc-cube__card .noc-card__desc {
    font-size: 0.76rem;
    line-height: 1.35;
    max-width: 175px;
    margin: 0 auto;
    color: #a3b2c2;
  }
}

.noc-cube__card:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* SVG Pentagonal Border Overlay */
.noc-card__border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.noc-card__border polygon {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1.5px;
  transition: stroke 0.3s ease, stroke-width 0.3s ease, filter 0.3s ease;
}

.noc-cube__card:hover .noc-card__border polygon {
  stroke: var(--color-teal);
  stroke-width: 2.5px;
  filter: drop-shadow(0 0 5px rgba(0, 187, 175, 0.6));
}

/* Color thematic glows for specific faces */
.noc-cube__face--3 .noc-cube__card:hover .noc-card__border polygon,
.noc-cube__face--8 .noc-cube__card:hover .noc-card__border polygon {
  stroke: var(--color-pink);
  filter: drop-shadow(0 0 5px rgba(251, 13, 128, 0.6));
}

.noc-cube__face--2 .noc-cube__card:hover .noc-card__border polygon,
.noc-cube__face--7 .noc-cube__card:hover .noc-card__border polygon {
  stroke: var(--color-cobalt);
  filter: drop-shadow(0 0 5px rgba(26, 115, 232, 0.6));
}

/* Cara 0: Intro con imagen de fondo difuminada */
.noc-cube__card--intro {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  clip-path: polygon(50% 0%, 100% 37%, 81% 100%, 19% 100%, 0% 37%);
  -webkit-clip-path: polygon(50% 0%, 100% 37%, 81% 100%, 19% 100%, 0% 37%);
}

.noc-cube__card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.9);
}


/* Animación constante del icono al pasar el mouse por la tarjeta */
@keyframes iconPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.noc-cube__card:hover .noc-card__icon {
  animation: iconPulse 1.5s ease-in-out infinite;
}

/* Animación de la actividad en Cara 0 */
@keyframes pulseTeal {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 187, 175, 0.4);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 187, 175, 0);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 187, 175, 0);
    transform: scale(1);
  }
}

.pulsing-icon {
  animation: pulseTeal 2.0s infinite;
}

/* Plataforma holográfica y sombra inferior */
.noc-cube-shadow {
  width: calc(var(--cube-w) * 1.4);
  height: 25px;
  background: radial-gradient(ellipse at center, rgba(0, 187, 175, 0.22) 0%, rgba(251, 13, 128, 0.04) 45%, transparent 70%);
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  animation: floatShadow 4s ease-in-out infinite;
}

@keyframes floatShadow {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateX(-50%) scale(1.1);
    opacity: 1;
  }
}



/* Barra de progreso */
.noc-dice__progress {
  height: 2px;
  width: 100%;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
  margin-top: 120px;
  overflow: hidden;
}

.noc-dice__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-teal), var(--color-pink));
  border-radius: 1px;
}

/* Dots de navegación */
.noc-dice__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.noc-dice__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.noc-dice__dot--active {
  background: var(--color-teal);
  transform: scale(1.35);
}

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--color-white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--color-bg-alt);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card__stars {
  color: #FFB800;
  margin-bottom: 20px;
  font-size: var(--font-size-lg);
}

.testimonial-card__quote {
  font-size: var(--font-size-md);
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.6;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  background: var(--color-navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--color-pink);
  font-style: normal;
}

.testimonial-card__role {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* ── Site Footer ──────────────────────────────────────────────────────────── */
.site-footer {
  background: #0B132C;
  color: white;
  padding: 80px 0 40px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 80px;
  margin-bottom: 60px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
}

.site-footer__logo {
  margin-bottom: 30px;
  width: auto;
  align-self: flex-start;
}

.site-footer__logo--desktop {
  display: block;
  height: 64px;
}

.site-footer__logo--mobile {
  display: none;
  height: 64px;
}

.site-footer__social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.site-footer__social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.site-footer__social-link:hover {
  border-color: var(--color-pink);
  background: rgba(251, 13, 128, 0.1);
  color: var(--color-pink);
}

.site-footer__social-link svg {
  width: 20px;
  height: 20px;
}

.site-footer__follow {
  color: var(--color-pink);
  font-weight: 700;
  font-size: var(--font-size-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-top: 25px;
  margin-top: 10px;
}

.site-footer__follow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.site-footer__links-area {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 20px;
}

.site-footer__sitemap--main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: end;
}

.site-footer__nav-title {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  margin-bottom: 24px;
  font-family: inherit;
  font-size: var(--font-size-md);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  text-align: left;
  width: 100%;
  cursor: default;
  outline: none;
}

.site-footer__nav-title:disabled {
  color: white;
  opacity: 1;
  cursor: default;
}

.site-footer__nav-list {
  list-style: none;
}

.site-footer__nav-item {
  margin-bottom: 20px;
  position: relative;
}

.site-footer__nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-base);
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.site-footer__nav-link:hover {
  color: var(--color-pink);
  transform: translateX(4px);
}

.site-footer__bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.site-footer__privacy-col {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.site-footer__privacy-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-footer__privacy-icon svg {
  width: 24px;
  height: 24px;
}

.site-footer__privacy-text strong {
  display: block;
  font-size: var(--font-size-md);
  margin-bottom: 8px;
  color: white;
}

.site-footer__privacy-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-caption);
  line-height: 1.5;
}

.site-footer__legal-col p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-caption);
  line-height: 1.5;
}

.site-footer__legal-col .site-footer__copyright {
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 12px;
}

/* ── Responsive consolidated ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    padding-top: 160px;
    /* Safe zone for fixed navbar */
    padding-bottom: 60px;
  }

  .home-hero__visual {
    display: none;
  }

  .hero__container,
  .connectivity__flex-row,
  .integration__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer__brand {
    align-items: center;
    text-align: center;
  }

  .site-footer__social-links {
    justify-content: center;
  }

  .site-footer__logo {
    align-self: center;
  }

  .site-footer__logo--desktop {
    display: none;
  }

  .site-footer__logo--mobile {
    display: block;
  }

  .site-footer__follow::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .site-footer__sitemap {
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: stretch;
  }

  .site-footer__nav-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
  }

  .site-footer__nav-col:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-footer__nav-title {
    margin-bottom: 0;
    padding: 18px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-base);
  }

  .site-footer__nav-title::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
  }

  .site-footer__nav-col--open .site-footer__nav-title::after {
    content: '−';
    transform: rotate(180deg);
  }

  .site-footer__nav-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .site-footer__nav-col--open .site-footer__nav-list {
    padding-bottom: 20px;
  }

  .site-footer__nav-item {
    margin-bottom: 14px;
  }

  .site-footer__nav-item:last-child {
    margin-bottom: 0;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 40px;
    border-top: none;
  }

  .site-footer__privacy-col {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer__legal-col {
    text-align: center;
  }

  .connectivity__col-content {
    grid-column: 1;
    grid-row: 2;
    padding-left: 0;
  }

  .connectivity__col-visual {
    grid-column: 1;
    grid-row: 1;
  }

  .flow-system {
    flex-direction: column;
    gap: 15px;
    margin: 40px auto;
  }

  .flow-node {
    transform: scale(1.1);
  }

  .node-logo {
    height: 80px;
  }

  .flow-path {
    width: 4px;
    height: 60px;
    margin-top: 0;
    max-width: none;
    flex: none;
  }

  .flow-path__pulse {
    width: 100%;
    height: 50%;
    top: -50%;
    left: 0;
    background: linear-gradient(180deg, transparent, var(--color-pink), var(--color-teal), transparent);
    box-shadow: 0 0 15px var(--color-pink), 0 0 5px var(--color-teal);
    animation: dataFlowVertical 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  .hero__content,
  .hero__visual {
    min-width: 0;
    /* Allow grid items to shrink below content size */
    max-width: 100%;
  }

  .hero__content,
  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__description {
    max-width: 100%;
    /* Override fixed 540px on small screens */
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    height: 400px;
    margin-top: 20px;
    overflow: hidden;
    /* Contain 3D canvas overflow */
  }

  /* Remove 3D model on mobile for better performance and space */
  .planet-canvas {
    transform: scale(1);
  }

  .connectivity__col-visual .planet-container {
    width: 100%;
    margin: 0 auto;
  }

  .connectivity__col-visual .planet-canvas {
    transform: scale(1.5);
  }

  .connectivity {
    overflow: hidden;
  }

  .testimonials__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  /* Mobile menu button */
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    /* Align right within its 44px box */
    gap: 6px;
    width: 44px;
    /* Optimal tap target size (Apple HIG) */
    height: 44px;
    cursor: pointer;
    z-index: 1001;
    /* Above the menu */
  }

  .mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-navy);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: center;
  }

  /* Burger Animation */
  .mobile-menu-toggle:checked~.mobile-menu-btn span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu-toggle:checked~.mobile-menu-btn span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle:checked~.mobile-menu-btn span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Glass Menu Panel */
  .site-nav {
    justify-content: space-between;
  }

  .site-nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 30px 40px;
    transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 100, 0.15);
    z-index: 1000;
  }

  /* Open state */
  .mobile-menu-toggle:checked~.site-nav__menu {
    right: 0;
  }

  .site-nav__links {
    flex-direction: column;
    margin: 0 0 40px 0;
    gap: 20px;
    width: 100%;
  }

  .site-nav__link {
    font-size: var(--font-size-lg);
    /* Larger tap targets on mobile */
  }

  .site-nav__right {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }

  /* UX Rhythm & Spacing Overrides */
  .services,
  .testimonials,
  .integration,
  .connectivity,
  .partners {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .site-footer {
    padding: 60px 0 40px;
  }

  .code-card {
    text-align: left;
  }

  .code-card__header {
    padding: 12px 16px;
  }

  .code-card__content {
    padding: 16px;
    font-size: var(--font-size-sm);
  }
}

@media (max-width: 576px) {
  .site-nav {
    padding: 0 15px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

}

/* ── RCS Service Page Styles ──────────────────────────────────────────────── */

/* Badge */
.badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-pink), var(--color-navy));
  color: var(--color-text-white);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: var(--font-size-2xs);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

/* RCS Hero Section */
.rcs-hero {
  position: relative;
  overflow: hidden;
  background: #020412;
  color: var(--color-white);
  display: flex;
  align-items: center;
  height: auto;
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 110px;
}

.rcs-hero__container {
  display: flex;
  flex-direction: row;
  gap: 50px;
  position: relative;
  z-index: 5;
  align-items: center;
}

.rcs-hero__content {
  flex: 0 0 calc(50% - 20px);
  min-width: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  height: 600px;
  overflow: visible;
  position: relative;
}

/* Intro panel — celda 1/1, centrado vertical independiente */
.rcs-hero__content>.rcs-panel--intro {
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  margin-top: -50px;
  z-index: 3;
}

.rcs-hero__title {
  font-size: clamp(42px, 8vw, 64px);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.rcs-hero__description {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.6;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.70);
  text-align: left;
}

.rcs-hero__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.rcs-hero__visual {
  flex: 0 0 calc(50% - 20px);
  min-width: 0;
  position: relative;
  height: 600px;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;

}


/* RCS Features Section */
.rcs-features {
  padding: 100px 0;
  background: var(--color-bg);
}

.rcs-features__header {
  text-align: center;
  margin-bottom: 80px;
}

.rcs-features__title {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-navy);
  margin-bottom: 12px;
  line-height: 1.1;
}

.rcs-features__bar {
  width: 60px;
  height: 4px;
  background: var(--color-pink);
  margin: 0 auto 32px;
  border-radius: 2px;
}

.rcs-features__description {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: justify;
}

.rcs-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

/* Feature Cards */
.rcs-feature-card {
  width: 100%;
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: 0 10px 40px rgba(0, 6, 143, 0.08);
  border: 1px solid rgba(0, 6, 143, 0.05);
  text-align: center;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 260px;
}

.rcs-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 6, 143, 0.12);
}


.rcs-feature-card__title {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--color-navy);
  margin-top: auto;
}

.rcs-feature-card__description {
  font-size: var(--font-size-md);
  line-height: 1.6;
  flex-grow: 1;
  color: var(--color-text-service);
  margin-bottom: auto;
  display: flex;
  align-items: center;
  text-align: justify;
}

@media (max-width: 1024px) {
  .rcs-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .rcs-feature-card {
    width: calc(50% - 12px);
  }
}

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

  .rcs-feature-card {
    width: 100%;
    padding: 32px 24px;
    min-height: auto;
  }

  .rcs-feature-card__title {
    font-size: var(--font-size-lg);
  }

  .rcs-feature-card__description {
    font-size: var(--font-size-sm);
  }
}

/* RCS CTA Final Section */
.rcs-cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, #00068f 0%, var(--color-azure) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rcs-cta-final__container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.rcs-cta-final__content {
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rcs-cta-final__title {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.1;
  color: white;
}

.rcs-cta-final__bar {
  width: 80px;
  height: 6px;
  background: white;
  margin: 0 auto 32px;
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.rcs-cta-final__description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
  text-align: justify;
}

.rcs-cta-final__content .btn {
  display: inline-block;
  background: white;
  color: #00068f;
  border: none;
}

.rcs-cta-final__content .btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* ── RCS 3D Stage — Panel System ────────────────────────────────────────── */
.rcs-stage__panels {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  margin-top: -50px;
}

.rcs-panel {
  grid-row: 1;
  grid-column: 1;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: perspective(1000px) rotateX(10deg) scale(0.97);
  transform-origin: top center;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.18s ease,
    visibility 0s linear 0.18s;
  will-change: transform, opacity;
}

.rcs-panel--intro {
  z-index: 2;
}

.rcs-panel--active {
  opacity: 1;
  visibility: visible;
  transform: perspective(1000px) rotateX(0deg) scale(1);
  pointer-events: auto;
  z-index: 3;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.55s ease,
    visibility 0s linear;
}

.rcs-panel__hint {
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  animation: rcsPanelHintPulse 2.4s ease infinite;
  margin-top: -4px;
}

@keyframes rcsPanelHintPulse {

  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 0.75;
  }
}

/* ── RCS Case Panel Content ──────────────────────────────────────────────── */
.rcs-case__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rcs-case__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
}

.rcs-case__tag--blue {
  background: rgba(91, 159, 255, 0.14);
  color: #5B9FFF;
}

.rcs-case__tag--purple {
  background: rgba(99, 102, 241, 0.14);
  color: #6366F1;
}

.rcs-case__tag--teal {
  background: rgba(0, 187, 175, 0.14);
  color: var(--color-teal);
}

.rcs-case__tag--pink {
  background: rgba(255, 0, 124, 0.14);
  color: var(--color-pink);
}

.rcs-case__title {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.12;
  color: var(--color-white);
  margin: 0;
  letter-spacing: -0.02em;
}

.rcs-case__accent--blue {
  color: #5B9FFF;
}

.rcs-case__accent--purple {
  color: #6366F1;
}

.rcs-case__accent--teal {
  color: var(--color-teal);
}

.rcs-case__accent--pink {
  color: var(--color-pink);
}

.rcs-case__desc {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.rcs-case__facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rcs-case__facts li {
  font-size: var(--font-size-caption);
  color: rgba(255, 255, 255, 0.82);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}

.rcs-case__facts li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-size: var(--font-size-2xs);
  font-weight: 700;
}

.rcs-panel--type-notif .rcs-case__facts li::before {
  color: #5B9FFF;
}

.rcs-panel--type-promo .rcs-case__facts li::before {
  color: #6366F1;
}

.rcs-panel--type-conv .rcs-case__facts li::before {
  color: var(--color-teal);
}

.rcs-case__sender {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: fit-content;
  margin-top: 4px;
}

.rcs-case__sender-label {
  font-size: var(--font-size-micro);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.38);
}

.rcs-case__sender-value {
  font-size: var(--font-size-base);
  font-weight: 700;
  font-family: 'Courier New', monospace;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

.rcs-panel--type-notif .rcs-case__sender {
  border-color: rgba(91, 159, 255, 0.30);
}

.rcs-panel--type-promo .rcs-case__sender {
  border-color: rgba(99, 102, 241, 0.30);
}

.rcs-panel--type-conv .rcs-case__sender {
  border-color: rgba(0, 187, 175, 0.30);
}

/* ── RCS Checklist ───────────────────────────────────────────────────────── */
.rcs-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 215px;
  min-height: 210px;
  flex-shrink: 0;
  overflow: hidden;
}

.rcs-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.rcs-checklist__item--visible {
  opacity: 1;
  transform: translateX(0);
}

.rcs-checklist__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--cl-color, #5B9FFF);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.rcs-checklist__check svg {
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.35s ease 0.08s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s;
}

.rcs-checklist__item--checked .rcs-checklist__check {
  border-color: var(--cl-color, #5B9FFF);
  background: color-mix(in srgb, var(--cl-color, #5B9FFF) 18%, transparent);
}

.rcs-checklist__item--checked .rcs-checklist__check svg {
  opacity: 1;
  transform: scale(1);
}

.rcs-checklist__text {
  font-size: var(--font-size-md);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.5s ease;
}

.rcs-checklist__item--checked .rcs-checklist__text {
  color: var(--color-white);
}

/* ── RCS Edge Arrows ─────────────────────────────────────────────────────── */
.rcs-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.rcs-hero__arrow:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.08);
}

.rcs-hero__arrow--prev {
  left: 20px;
}

.rcs-hero__arrow--next {
  right: 20px;
}

@media (max-width: 1100px) {
  .rcs-hero__arrow {
    display: none;
  }
}

/* ── RCS Type Navigation Dots ────────────────────────────────────────────── */
.rcs-type-nav {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.rcs-type-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.2s ease, width 0.3s ease;
}

.rcs-type-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.rcs-type-dot--notif {
  --type-color: #5B9FFF;
}

.rcs-type-dot--promo {
  --type-color: #6366F1;
}

.rcs-type-dot--conv {
  --type-color: #00BBAF;
}

.rcs-type-dot--active {
  background: var(--type-color);
  width: 24px;
  border-radius: 5px;
  transform: none;
}

/* ── RCS Phone typing + bubble animations ────────────────────────────────── */
.rcs-phone__typing {
  display: flex;
  gap: 4px;
  padding: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px 18px 18px 4px;
  width: 52px;
  max-height: 0;
  overflow: hidden;
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, max-height 0.2s ease, padding 0.2s ease, margin 0.2s ease;
}

.rcs-phone__typing.rcs-phone__typing--active {
  opacity: 1;
  max-height: 40px;
  padding: 8px 12px;
  margin: 0 10px 4px;
  overflow: visible;
}

.rcs-phone__typing span {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.50);
  border-radius: 50%;
  animation: rcsTypingDot 1.1s ease-in-out infinite;
}

.rcs-phone__typing span:nth-child(2) {
  animation-delay: 0.18s;
}

.rcs-phone__typing span:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes rcsTypingDot {

  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.rcs-bubble--new {
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.rcs-bubble--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── RCS Glow states ─────────────────────────────────────────────────────── */
.rcs-phone--glow-blue::before {
  background: radial-gradient(ellipse at 60% 40%,
      rgba(91, 159, 255, 0.50) 0%, rgba(91, 159, 255, 0.22) 45%, transparent 72%);
  transition: background 0.6s ease;
}

.rcs-phone--glow-purple::before {
  background: radial-gradient(ellipse at 60% 40%,
      rgba(99, 102, 241, 0.50) 0%, rgba(99, 102, 241, 0.22) 45%, transparent 72%);
  transition: background 0.6s ease;
}

.rcs-phone--glow-teal::before {
  background: radial-gradient(ellipse at 60% 40%,
      rgba(0, 187, 175, 0.50) 0%, rgba(0, 187, 175, 0.22) 45%, transparent 72%);
  transition: background 0.6s ease;
}

.rcs-phone--glow-pink::before {
  background: radial-gradient(ellipse at 60% 40%,
      rgba(255, 0, 124, 0.50) 0%, rgba(255, 0, 124, 0.22) 45%, transparent 72%);
  transition: background 0.6s ease;
}

/* ── Link Preview Card ───────────────────────────────────────────────────── */
.rcs-link-preview {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
}

.rcs-link-preview__banner {
  width: 100%;
  height: 105px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.rcs-link-preview__banner-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-white);
  backdrop-filter: blur(4px);
}

.rcs-link-preview__body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rcs-link-preview__title {
  font-size: var(--font-size-2xs);
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  line-height: 1.3;
  font-family: -apple-system, var(--font-main);
}

.rcs-link-preview__desc {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.50);
  margin: 0;
  line-height: 1.4;
  font-family: -apple-system, var(--font-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rcs-link-preview__url {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: rgba(91, 159, 255, 0.80);
  font-family: -apple-system, var(--font-main);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ── Carousel ────────────────────────────────────────────────────────────── */
.rcs-carousel {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
  width: 100%;
}

.rcs-carousel::-webkit-scrollbar {
  display: none;
}

.rcs-carousel__card {
  flex: 0 0 168px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
}

.rcs-carousel__img {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.45) 0%, rgba(91, 159, 255, 0.35) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  position: relative;
}

.rcs-carousel__img span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rcs-carousel__body {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.rcs-carousel__name {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  font-family: -apple-system, var(--font-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.rcs-carousel__desc {
  font-size: var(--font-size-micro);
  color: rgba(255, 255, 255, 0.50);
  margin: 0;
  font-family: -apple-system, var(--font-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rcs-carousel__body .rcs-action-btn {
  margin-top: auto;
  padding: 7px 0 0;
  font-size: var(--font-size-micro);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  width: 100%;
  color: rgba(255, 255, 255, 0.80);
}

/* Phone wrapper levitation */
@keyframes rcsPhoneLevitate {
  0% {
    transform: perspective(900px) rotateY(-1deg) rotateX(0.5deg) translateY(0px);
  }

  50% {
    transform: perspective(900px) rotateY(1deg) rotateX(-0.5deg) translateY(-4px);
  }

  100% {
    transform: perspective(900px) rotateY(-1deg) rotateX(0.5deg) translateY(0px);
  }
}

.rcs-phone-wrapper {
  animation: rcsPhoneLevitate 7s ease-in-out infinite;
  transform-style: preserve-3d;
}

@media (min-resolution: 1.1dppx) and (min-width: 1025px) {
  .rcs-hero {
    padding-top: 160px;
  }

  .rcs-phone-wrapper {
    zoom: 0.9;
  }
}

/* ── RCS Phone ──────────────────────────────────────────────────────────── */
.rcs-phone-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.rcs-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  overflow: visible;
}

.rcs-phone::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 660px;
  background: radial-gradient(ellipse at 60% 40%,
      rgba(91, 159, 255, 0.45) 0%,
      rgba(99, 102, 241, 0.25) 40%,
      transparent 72%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.rcs-phone__frame {
  width: 350px;
  height: 720px;
  border-radius: 18px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 35%,
      rgba(255, 255, 255, 0.05) 65%,
      rgba(255, 255, 255, 0.09) 100%);
  backdrop-filter: blur(60px) saturate(1.6);
  -webkit-backdrop-filter: blur(60px) saturate(1.6);
  padding: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 32px 80px rgba(0, 0, 0, 0.50),
    0 8px 24px rgba(0, 0, 0, 0.32),
    0 0 80px rgba(91, 159, 255, 0.22),
    0 0 120px rgba(99, 102, 241, 0.14),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12),
    inset 1px 0 0 rgba(255, 255, 255, 0.18),
    inset -1px 0 0 rgba(255, 255, 255, 0.18);
  animation: rcsPhoneFloat 4s ease-in-out infinite;
  overflow: hidden;
}

.rcs-phone__frame::before,
.rcs-phone__frame::after {
  display: none;
}

/* ── Physical side buttons ─────────────────────────────────────────────────── */
.rcs-phone__btns-left,
.rcs-phone__btns-right {
  position: absolute;
  top: 0;
  width: 4px;
  height: 720px;
  pointer-events: none;
  z-index: 2;
}

.rcs-phone__btns-left {
  left: -4px;
}

.rcs-phone__btns-right {
  right: -4px;
}

.rcs-phone__btns-left::before {
  content: '';
  position: absolute;
  top: 130px;
  left: 0;
  width: 4px;
  height: 32px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.10) 100%);
  border-radius: 2px 0 0 2px;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.28);
}

.rcs-phone__btns-left::after {
  content: '';
  position: absolute;
  top: 178px;
  left: 0;
  width: 4px;
  height: 32px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.10) 100%);
  border-radius: 2px 0 0 2px;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.28);
}

.rcs-phone__btns-right::before {
  content: '';
  position: absolute;
  top: 150px;
  right: 0;
  width: 4px;
  height: 55px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.22) 100%);
  border-radius: 0 2px 2px 0;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.28);
}

@keyframes rcsPhoneFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.rcs-phone__island {
  width: 78px;
  height: 22px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(15px);
  border-radius: 11px;
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  pointer-events: none;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.18),
    0 0 0 0.5px rgba(255, 255, 255, 0.12);
}

.rcs-phone__screen {
  flex: 1;
  min-height: 0;
  background: #0f0e0a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.rcs-phone__header {
  background: #0d0c09;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  position: relative;
  z-index: 90;
}

.rcs-phone__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px 4px;
  background: transparent;
  flex-shrink: 0;
}

.rcs-phone__clock {
  font-size: var(--font-size-2xs);
  font-weight: 700;
  color: var(--color-white);
  font-family: -apple-system, var(--font-main);
  letter-spacing: -0.3px;
}

.rcs-phone__indicators {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-white);
  font-size: var(--font-size-caption);
}

.rcs-phone__navbar {
  background: transparent;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-shrink: 0;
}

.rcs-phone__back {
  font-size: var(--font-size-xl);
  color: #5B9FFF;
  min-width: 26px;
  display: flex;
  align-items: center;
}

.rcs-phone__contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rcs-phone__contact-avatar-wrapper {
  position: relative;
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

.rcs-phone__contact-avatar-wrapper>.rcs-phone__contact-avatar {
  width: 100%;
  height: 100%;
  margin: 0;
  box-shadow: none;
}

.rcs-phone__contact-avatar-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A73E8;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  border: 1.5px solid #080618;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.rcs-phone__contact-avatar-badge .bi {
  font-size: 8px;
  color: var(--color-white);
  display: flex;
}

.rcs-phone__contact-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-cobalt);
  font-size: var(--font-size-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  box-shadow: 0 0 0 2px rgba(91, 159, 255, 0.35);
  overflow: hidden;
}

.rcs-avatar-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.rcs-phone__contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rcs-msg__read-icon {
  margin-top: 4px;
  opacity: 0.8;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.rcs-phone__contact-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.rcs-phone__contact-name {
  font-size: var(--font-size-2xs);
  font-weight: 600;
  color: var(--color-white);
  font-family: -apple-system, var(--font-main);
}

.rcs-verified-icon {
  color: var(--color-cobalt);
}

.rcs-phone__nav-icons {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
}

.rcs-phone__nav-icon {
  font-size: var(--font-size-xl);
  opacity: 0.8;
  display: flex;
  align-items: center;
}

.rcs-phone__messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}

.rcs-phone__messages::-webkit-scrollbar {
  display: none;
}

.rcs-phone__datelabel {
  text-align: center;
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  padding: 8px 0 4px;
  flex-shrink: 0;
  font-family: -apple-system, var(--font-main);
}

/* RCS message wrappers */
.rcs-msg {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.rcs-msg--outgoing {
  align-items: flex-end;
}

.rcs-msg__bubble {
  background: #1e1d15;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: var(--font-size-2xs);
  line-height: 1.4;
  padding: 8px 13px;
  border-radius: 18px 18px 18px 4px;
  max-width: 80%;
  font-family: -apple-system, var(--font-main);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.rcs-msg--outgoing .rcs-msg__bubble {
  background: #5B9FFF;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 18px 18px 4px 18px;
  box-shadow:
    0 2px 8px rgba(10, 132, 255, 0.45),
    0 0 0 0.5px rgba(255, 255, 255, 0.10);
}

.rcs-msg__meta {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 4px;
}

.rcs-msg__time {
  font-size: var(--font-size-micro);
  color: rgba(255, 255, 255, 0.60);
  font-family: -apple-system, var(--font-main);
}

/* Sender greeting card — centered brand intro */
.rcs-sender-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 16px 0;
  gap: 6px;
  width: 100%;
  flex-shrink: 0;
  height: 100px;
  justify-content: center;
}

.rcs-sender-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  position: relative;
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.30);
}

.rcs-sender-card__logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.rcs-sender-card__badge {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rcs-sender-card__badge .bi {
  font-size: 19px;
  color: var(--color-cobalt);
  line-height: 1;
  display: flex;
}

.rcs-sender-card__text {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.4;
  font-family: -apple-system, var(--font-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rcs-sender-divider {
  width: calc(100% + 20px);
  margin-left: -10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

/* Rich Card */
.rcs-rich-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
}

.rcs-msg--card {
  width: 100%;
}

.rcs-msg--card .rcs-rich-card--horiz {
  max-width: 100%;
}

.rcs-msg--card>.rcs-msg__bubble.rcs-rich-card--horiz {
  max-width: 100%;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.rcs-rich-card__image {
  width: 100%;
  height: 105px;
  background: linear-gradient(135deg,
      rgba(91, 159, 255, 0.50) 0%,
      rgba(99, 102, 241, 0.40) 55%,
      rgba(0, 187, 175, 0.30) 100%);
  position: relative;
}

.rcs-rich-card--stacked .rcs-rich-card__image {
  height: 130px;
}

.rcs-rich-card--stacked .rcs-rich-card__body {
  padding-bottom: 0;
}

.rcs-rich-card__body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rcs-rich-card__title {
  font-size: var(--font-size-2xs);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  font-family: -apple-system, var(--font-main);
  margin: 0;
}

.rcs-rich-card__desc {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.4;
  font-family: -apple-system, var(--font-main);
  margin: 0;
}

.rcs-rich-card__url {
  font-size: var(--font-size-micro);
  color: rgba(91, 159, 255, 0.80);
  font-family: -apple-system, var(--font-main);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rcs-rich-card__actions {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  justify-content: flex-end;
}

.rcs-rich-card__actions .rcs-action-btn {
  flex: none;
}

.rcs-rich-card--horiz {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.rcs-rich-card--horiz .rcs-rich-card__body {
  flex: 1;
  min-width: 0;
  padding: 12px 14px 12px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.rcs-rich-card--horiz__media {
  width: 85px;
  flex-shrink: 0;
  align-self: stretch;
  background: var(--color-white);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rcs-rich-card--horiz__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.rcs-rich-card__actions--stacked {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 8px -12px 0;
}

.rcs-rich-card__actions--stacked .rcs-action-btn {
  border: none;
  border-radius: 0;
  padding: 9px 14px;
  flex: none;
  width: 100%;
  text-align: center;
  justify-content: center;
  position: relative;
}

.rcs-rich-card__actions--stacked .rcs-action-btn:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.20);
}

.rcs-action-btn {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(91, 159, 255, 0.55);
  color: #5B9FFF;
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 5px 6px;
  border-radius: 8px;
  cursor: default;
  font-family: -apple-system, var(--font-main);
  text-align: center;
}

/* Suggested reply chips */
.rcs-suggestions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding: 8px 10px;
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.rcs-suggestions--visible {
  opacity: 1;
  transform: translateY(0);
}

.rcs-suggestion-chip {
  background: transparent;
  border: 1px solid rgba(91, 159, 255, 0.45);
  color: #5B9FFF;
  font-size: var(--font-size-xs);
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 20px;
  cursor: default;
  font-family: -apple-system, var(--font-main);
  white-space: nowrap;
}

.rcs-japi-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 180, 0, 0.35);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: default;
  font-family: -apple-system, var(--font-main);
  white-space: nowrap;
}

.rcs-japi-btn .bi {
  color: #f4b400;
}

/* Input bar */
.rcs-phone__inputbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 10px 26px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  background: #0d0c09;
  flex-shrink: 0;
}

.rcs-inputbar__left {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 4px;
  color: rgba(255, 255, 255, 0.60);
  font-size: 19px;
  flex-shrink: 0;
}

.rcs-inputbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.60);
  font-size: 19px;
  flex-shrink: 0;
}

.rcs-phone__input-pill {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 21px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  min-width: 0;
  gap: 6px;
}

.rcs-phone__placeholder {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.28);
  font-family: -apple-system, var(--font-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

/* ≤1280px — ocultar checklist */
@media (max-width: 1280px) {
  .rcs-checklist {
    display: none;
  }
}

/* RCS Responsive */
@media (max-width: 1024px) {
  .rcs-hero__container {
    gap: 20px;
  }

  .rcs-hero__visual {
    height: 560px;
  }

  .rcs-phone {
    zoom: 0.85;
  }
}

@media (max-width: 768px) {
  .rcs-hero__container {
    flex-direction: column;
    gap: 40px;
  }

  .rcs-hero__content,
  .rcs-hero__visual {
    flex: 0 0 100%;
    width: 100%;
  }

  .rcs-hero__visual {
    height: 500px;
  }

  .rcs-phone {
    zoom: 0.88;
  }

  .rcs-feature-card {
    width: 100%;
    height: auto;
    padding: 24px 20px;
  }

  .rcs-ideal__list {
    gap: 20px;
  }

  .rcs-features,
  .rcs-ideal,
  .rcs-cta-final {
    padding: 60px 0;
  }

  .rcs-cta-final__title {
    font-size: var(--font-size-3xl);
    white-space: normal;
  }

  .rcs-features__header {
    margin-bottom: 40px;
  }

  .rcs-ideal__title {
    font-size: var(--font-size-heading-sm);
  }

  .rcs-hero {
    padding: 120px 0 60px;
  }
}

/* ── SMS Service Page Styles ──────────────────────────────────────────────── */
.sms-hero {
  position: relative;
  overflow: hidden;
  background: #020412;
  color: var(--color-white);
  display: flex;
  align-items: center;
  /* Carrier-grade hero: full viewport on load (matches .connectivity dark section from home).
     Clear the fixed .site-header (top:15px + height:80px) with padding-top. */
  height: auto;
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 110px;
}

.sms-hero__container {
  display: flex;
  flex-direction: row;
  gap: 50px;
  position: relative;
  z-index: 5;
  align-items: center;
}

.sms-hero__content {
  flex: 0 0 calc(50% - 20px);
  min-width: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  height: 600px;
  overflow: visible;
  position: relative;
}

/* Intro panel — celda 1/1, centrado vertical independiente */
.sms-hero__content>.sms-panel--intro {
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  margin-top: -50px;
  z-index: 3;
}

.sms-hero__badge {
  background: linear-gradient(135deg, var(--color-sky), #A855F7);
  color: white;
  font-size: var(--font-size-2xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
  width: fit-content;
}

.sms-hero__title {
  font-size: clamp(42px, 8vw, 64px);
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--color-white);
}

.wa-hero .hero__title-accent {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: var(--color-emerald);
  color: var(--color-emerald);
}

.sms-hero .hero__title-accent {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: var(--color-teal);
  color: var(--color-teal);
}

.rcs-hero .hero__title-accent {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #5B9FFF;
  color: #5B9FFF;
}

.sms-hero__description {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.6;
  margin-bottom: 40px;
  color: #a0aec0;
  text-align: justify;
}

.sms-hero__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.sms-hero__visual {
  flex: 0 0 calc(50% - 20px);
  min-width: 0;
  position: relative;
  height: 600px;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

/* ── SMS Animated Checklist ─────────────────────────────────────────────── */
.sms-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 215px;
  min-height: 210px;
  flex-shrink: 0;
  overflow: hidden;
}

.sms-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.sms-checklist__item--visible {
  opacity: 1;
  transform: translateX(0);
}

.sms-checklist__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--cl-color, #22d3ee);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.sms-checklist__check svg {
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.35s ease 0.08s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s;
}

.sms-checklist__item--checked .sms-checklist__check {
  border-color: var(--cl-color, #22d3ee);
  background: color-mix(in srgb, var(--cl-color, #22d3ee) 18%, transparent);
}

.sms-checklist__item--checked .sms-checklist__check svg {
  opacity: 1;
  transform: scale(1);
}

.sms-checklist__text {
  font-size: var(--font-size-md);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.5s ease;
}

.sms-checklist__item--checked .sms-checklist__text {
  color: var(--color-white);
}

.sms-hero__image {
  max-width: 500px;
  width: 100%;
  height: auto;
}

/* ─── SMS 3D Stage — Panel System ────────────────────────────────────────── */
.sms-stage__panels {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  margin-top: -50px;
}

.sms-panel {
  grid-row: 1;
  grid-column: 1;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: perspective(1000px) rotateX(10deg) scale(0.97);
  transform-origin: top center;
  /* Exit: fast fade so the outgoing clears before incoming arrives */
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.18s ease,
    visibility 0s linear 0.18s;
  will-change: transform, opacity;
}

/* Intro panel sits on top of others visually (z-index) so title is readable */
.sms-panel--intro {
  z-index: 2;
}

.sms-panel--active {
  opacity: 1;
  visibility: visible;
  transform: perspective(1000px) rotateX(0deg) scale(1);
  pointer-events: auto;
  z-index: 3;
  /* Entry: normal speed, visibility shows immediately */
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.55s ease,
    visibility 0s linear;
}

/* Hint text that pulses below intro CTAs */
.sms-panel__hint {
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  animation: smsPanelHintPulse 2.4s ease infinite;
  margin-top: -4px;
}

@keyframes smsPanelHintPulse {

  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 0.75;
  }
}

/* ─── SMS Case Panel Content ─────────────────────────────────────────────── */
.sms-case__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sms-case__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
}

.sms-case__tag--cyan {
  background: rgba(0, 187, 175, 0.12);
  color: var(--color-teal);
}

.sms-case__tag--blue {
  background: rgba(26, 80, 255, 0.12);
  color: #1A50FF;
}

.sms-case__tag--purple {
  background: rgba(255, 0, 124, 0.12);
  color: var(--color-pink);
}

.sms-case__title {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.12;
  color: var(--color-white);
  margin: 0;
  letter-spacing: -0.02em;
}

.sms-case__accent--cyan {
  color: var(--color-teal);
}

.sms-case__accent--blue {
  color: #1A50FF;
}

.sms-case__accent--purple {
  color: var(--color-pink);
}

.sms-case__desc {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.sms-case__facts {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sms-case__facts li {
  font-size: var(--font-size-caption);
  color: rgba(255, 255, 255, 0.82);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}

.sms-case__facts li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-size: var(--font-size-2xs);
  font-weight: 700;
}

/* Type-based check color — brand teal */
.sms-panel--type-sc .sms-case__facts li::before,
.sms-panel--type-vln .sms-case__facts li::before,
.sms-panel--type-mask .sms-case__facts li::before {
  color: var(--color-teal);
}

.sms-case__sender {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: fit-content;
  margin-top: 4px;
}

.sms-case__sender-label {
  font-size: var(--font-size-micro);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.38);
}

.sms-case__sender-value {
  font-size: var(--font-size-base);
  font-weight: 700;
  font-family: 'Courier New', monospace;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

.sms-panel--type-sc .sms-case__sender,
.sms-panel--type-vln .sms-case__sender,
.sms-panel--type-mask .sms-case__sender {
  border-color: rgba(0, 187, 175, 0.3);
}

/* Phone wrapper — idle 3D levitation when not interacting */
@keyframes smsPhoneLevitate {
  0% {
    transform: perspective(900px) rotateY(-1deg) rotateX(0.5deg) translateY(0px);
  }

  50% {
    transform: perspective(900px) rotateY(1deg) rotateX(-0.5deg) translateY(-4px);
  }

  100% {
    transform: perspective(900px) rotateY(-1deg) rotateX(0.5deg) translateY(0px);
  }
}

.sms-phone-wrapper {
  animation: smsPhoneLevitate 7s ease-in-out infinite;
  transform-style: preserve-3d;
}

@media (min-resolution: 1.1dppx) and (min-width: 1025px) {
  .sms-hero {
    padding-top: 160px;
  }

  .sms-phone-wrapper {
    zoom: 0.9;
  }
}

/* ── SMS Use Cases Carousel ─────────────────────────────────────────────── */
.sms-use-cases {
  padding: 100px 0;
  background: var(--color-bg);
  overflow: hidden;
}

.sms-use-cases__header {
  text-align: center;
  margin-bottom: 60px;
}

.sms-use-cases__title {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-navy);
  margin-bottom: 24px;
}

.sms-use-cases__bar {
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, var(--color-violet) 0%, #4C1D95 100%);
  margin: 0 auto;
  border-radius: 3px;
}


/* Pause levitation on hover so 3D tilt takes over cleanly */
.sms-phone-wrapper:hover {
  animation-play-state: paused;
}

/* SMS Phone Mockup */
.sms-phone-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.sms-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  overflow: visible;
}

/* ─── Phone glow states (change the halo color per active scenario) ───────── */
.sms-phone--glow-orange::before {
  background: radial-gradient(ellipse at 60% 40%,
      rgba(14, 165, 233, 0.5) 0%,
      rgba(14, 165, 233, 0.2) 45%,
      transparent 72%);
  transition: background 0.6s ease;
}

.sms-phone--glow-blue::before {
  background: radial-gradient(ellipse at 60% 40%,
      rgba(45, 127, 249, 0.5) 0%,
      rgba(45, 127, 249, 0.2) 45%,
      transparent 72%);
  transition: background 0.6s ease;
}

.sms-phone--glow-purple::before {
  background: radial-gradient(ellipse at 60% 40%,
      rgba(124, 58, 237, 0.5) 0%,
      rgba(124, 58, 237, 0.2) 45%,
      transparent 72%);
  transition: background 0.6s ease;
}

/* Delivered checkmark inline with timestamp */
.sms-phone__delivered {
  color: #5BB8FF;
  font-weight: 600;
}

/* Typing indicator — fixed slot above input bar */
.sms-phone__typing {
  display: flex;
  gap: 4px;
  padding: 8px 12px;
  margin: 0 10px 8px;
  background: #e9e9eb;
  border-radius: 18px 18px 18px 4px;
  width: 52px;
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.sms-phone__typing.sms-phone__typing--active {
  opacity: 1;
}

.sms-phone__typing span {
  width: 6px;
  height: 6px;
  background: #8e8e93;
  border-radius: 50%;
  animation: smsTypingDot 1.1s ease-in-out infinite;
}

.sms-phone__typing span:nth-child(2) {
  animation-delay: 0.18s;
}

.sms-phone__typing span:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes smsTypingDot {

  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* New message entrance animation */
.sms-phone__bubble--new {
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.sms-phone__bubble--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Glow halo behind the phone */
.sms-phone::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 760px;
  background: radial-gradient(ellipse at 60% 40%,
      rgba(56, 189, 248, 0.40) 0%,
      rgba(168, 85, 247, 0.22) 40%,
      transparent 72%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

/* Phone shape — rounded corners + physical dark bezel + denser glass */
.sms-phone__frame {
  width: 350px;
  height: 720px;
  border-radius: 18px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 35%,
      rgba(255, 255, 255, 0.05) 65%,
      rgba(255, 255, 255, 0.09) 100%);
  backdrop-filter: blur(60px) saturate(1.6);
  -webkit-backdrop-filter: blur(60px) saturate(1.6);
  padding: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  box-shadow:
    /* Outer iridescent ring */
    0 0 0 1px rgba(255, 255, 255, 0.15),
    /* Soft drop for depth */
    0 32px 80px rgba(0, 0, 0, 0.50),
    0 8px 24px rgba(0, 0, 0, 0.32),
    /* Cyan + violet holographic glow */
    0 0 80px rgba(56, 189, 248, 0.22),
    0 0 120px rgba(168, 85, 247, 0.14),
    /* Inner polished-glass edge highlights */
    inset 0 1.5px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12),
    inset 1px 0 0 rgba(255, 255, 255, 0.18),
    inset -1px 0 0 rgba(255, 255, 255, 0.18);
  animation: smsPhoneFloat 4s ease-in-out infinite;
  overflow: hidden;
}

/* Side buttons & dynamic island removed — single slab design */
.sms-phone__frame::before,
.sms-phone__frame::after {
  display: none;
}

/* ── Physical side buttons ─────────────────────────────────────────────────── */
.sms-phone__btns-left,
.sms-phone__btns-right {
  position: absolute;
  top: 0;
  width: 4px;
  height: 720px;
  pointer-events: none;
  z-index: 2;
}

.sms-phone__btns-left {
  left: -4px;
}

.sms-phone__btns-right {
  right: -4px;
}

/* Volume up */
.sms-phone__btns-left::before {
  content: '';
  position: absolute;
  top: 130px;
  left: 0;
  width: 4px;
  height: 32px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.10) 100%);
  border-radius: 2px 0 0 2px;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.28);
}

/* Volume down */
.sms-phone__btns-left::after {
  content: '';
  position: absolute;
  top: 178px;
  left: 0;
  width: 4px;
  height: 32px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.10) 100%);
  border-radius: 2px 0 0 2px;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.28);
}

/* Power button */
.sms-phone__btns-right::before {
  content: '';
  position: absolute;
  top: 150px;
  right: 0;
  width: 4px;
  height: 55px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.22) 100%);
  border-radius: 0 2px 2px 0;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.28);
}

.sms-phone__island {
  display: none;
}

@keyframes smsPhoneFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-3px) rotate(0deg);
  }
}

/* Dynamic Island — translucent dark glass */
.sms-phone__island {
  width: 78px;
  height: 22px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(15px);
  border-radius: 11px;
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.18),
    0 0 0 0.5px rgba(255, 255, 255, 0.12);
}

/* Screen — dark background covers full area from header to input bar */
.sms-phone__screen {
  flex: 1;
  min-height: 0;
  background: rgba(8, 6, 24, 0.55);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Unified header — single glass layer for statusbar + navbar */
.sms-phone__header {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.10);
  flex-shrink: 0;
}

/* Status bar */
.sms-phone__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px 4px;
  background: transparent;
  flex-shrink: 0;
  position: relative;
  z-index: 90;
}

.sms-phone__clock {
  font-size: var(--font-size-2xs);
  font-weight: 700;
  color: var(--color-white);
  font-family: -apple-system, var(--font-main);
  letter-spacing: -0.3px;
}

.sms-phone__indicators {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-white);
  font-size: var(--font-size-caption);
}

/* Nav bar — transparent, inherits header glass */
.sms-phone__navbar {
  background: transparent;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-shrink: 0;
}

.sms-phone__back-circle {
  width: 34px;
  height: 34px;
  background: #f2f2f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5BB8FF;
  font-size: 19px;
  font-weight: 600;
}

.sms-phone__back {
  font-size: var(--font-size-xl);
  color: #5BB8FF;
  line-height: 1;
  display: flex;
  align-items: center;
  min-width: 26px;
}

.sms-phone__contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.sms-phone__contact-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sky), #A855F7);
  color: var(--color-white);
  font-size: var(--font-size-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.sms-phone__contact-name {
  font-size: var(--font-size-2xs);
  font-weight: 600;
  color: var(--color-white);
  font-family: -apple-system, var(--font-main);
  line-height: 1;
}

.sms-phone__contact-label {
  font-size: var(--font-size-micro);
  color: #8e8e93;
  font-family: -apple-system, var(--font-main);
}

.sms-phone__nav-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 24px;
  margin-left: auto;
  justify-content: flex-end;
}

.sms-phone__nav-icon {
  color: #5BB8FF;
  font-size: var(--font-size-xl);
  line-height: 1;
  display: flex;
  align-items: center;
}

/* Messages area */
.sms-phone__messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  scrollbar-width: none;
}

.sms-phone__messages::-webkit-scrollbar {
  display: none;
}

/* Banner share name and photo */
.sms-phone__banner {
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(15px);
  margin: 10px 0;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.30);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 5;
}

.sms-phone__banner-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.sms-phone__banner-text {
  flex: 1;
}

.sms-phone__banner-title {
  display: block;
  font-size: var(--font-size-2xs);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
}

.sms-phone__banner-subtitle {
  display: block;
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.55);
}

.sms-phone__banner-btn {
  background: #e1f0ff;
  color: #5BB8FF;
  border: none;
  padding: 4px 13px;
  border-radius: 12px;
  font-size: var(--font-size-2xs);
  font-weight: 600;
}

.sms-phone__banner-close {
  width: 22px;
  height: 22px;
  background: #f2f2f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xs);
  color: #8e8e93;
}

.sms-phone__datelabel {
  text-align: center;
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.45);
  font-family: -apple-system, var(--font-main);
  margin: 15px 0 10px;
  text-transform: none;
}

.sms-phone__imessage-label {
  text-align: center;
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

/* Incoming bubble — left, translucent glass */
.sms-phone__bubble--in {
  background: rgba(255, 255, 255, 0.10);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  color: var(--color-white);
  font-size: var(--font-size-2xs);
  line-height: 1.4;
  padding: 8px 13px;
  border-radius: 18px 18px 18px 4px;
  max-width: 80%;
  font-family: -apple-system, var(--font-main);
  align-self: flex-start;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.sms-phone__bubble--in strong {
  font-weight: 700;
  color: var(--color-sky);
}

/* Outgoing bubble — right, blue iMessage with glow */
.sms-phone__bubble--out {
  background: linear-gradient(135deg, #5BB8FF 0%, #5BB8FF 100%);
  color: var(--color-white);
  font-size: var(--font-size-2xs);
  line-height: 1.4;
  padding: 8px 13px;
  border-radius: 18px 18px 4px 18px;
  max-width: 80%;
  font-family: -apple-system, var(--font-main);
  align-self: flex-end;
  box-shadow:
    0 2px 8px rgba(10, 132, 255, 0.45),
    0 0 0 0.5px rgba(255, 255, 255, 0.10);
}

.sms-phone__ts {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.45);
  font-family: -apple-system, var(--font-main);
  margin-bottom: 12px;
  padding: 0 4px;
}

.sms-phone__ts--right {
  text-align: right;
  padding-right: 2px;
}

.sms-phone__ts--inside {
  display: block;
  text-align: right;
  font-size: var(--font-size-micro);
  color: rgba(255, 255, 255, 0.60);
  padding: 4px 0 0;
  margin-top: 2px;
}

/* Input bar — translucent glass */
.sms-phone__inputbar {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(30px);
  padding: 10px 12px 18px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.10);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sms-phone__add-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 1;
}

.sms-phone__input-pill {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 8px 14px;
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sms-phone__placeholder {
  font-size: var(--font-size-2xs);
  color: rgba(255, 255, 255, 0.55);
  font-family: -apple-system, var(--font-main);
}

.sms-phone__mic-btn {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #5BB8FF;
  font-size: var(--font-size-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  flex-shrink: 0;
  padding: 0;
}

/* No-reply banner — hidden by default, replaces input bar for Short Code scenarios */
.sms-phone__noreply {
  display: none;
  padding: 18px 18px 28px;
  background: rgba(8, 6, 24, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px 30px 0 0;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.90);
  text-align: left;
  font-family: -apple-system, var(--font-main);
  line-height: 1.6;
  gap: 4px;
  flex-shrink: 0;
}

.sms-phone__noreply p {
  margin: 0;
}

.sms-phone__noreply-link {
  color: #5BB8FF;
  font-size: var(--font-size-sm);
  font-family: -apple-system, var(--font-main);
  cursor: default;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sms-phone--noreply .sms-phone__noreply {
  display: block;
}

/* Hide input bar when no-reply mode is active */
.sms-phone--noreply .sms-phone__inputbar {
  display: none;
}

/* SMS Network Canvas */
.sms-network-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* SMS Aurora blobs */
.sms-hero__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sms-aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
}

.sms-aurora-blob--orange {
  width: 60vw;
  height: 60vw;
  background: rgba(168, 85, 247, 0.28);
  top: -25%;
  right: -15%;
  animation: smsAuroraFloat 14s ease-in-out infinite;
}

.sms-aurora-blob--blue {
  width: 50vw;
  height: 50vw;
  background: rgba(56, 189, 248, 0.30);
  bottom: -15%;
  left: -8%;
  animation: smsAuroraFloat 18s ease-in-out infinite reverse;
}

@keyframes smsAuroraFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.85;
  }

  30% {
    transform: translate(4%, 5%) scale(1.10);
    opacity: 1;
  }

  65% {
    transform: translate(-3%, -4%) scale(0.94);
    opacity: 0.9;
  }
}

/* ── SMS Edge Arrows ────────────────────────────────────────────────────── */
.sms-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.sms-hero__arrow:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.08);
}

.sms-hero__arrow--prev {
  left: 20px;
}

.sms-hero__arrow--next {
  right: 20px;
}

@media (max-width: 1100px) {
  .sms-hero__arrow {
    display: none;
  }
}

/* ── SMS Type Navigation Dots ───────────────────────────────────────────── */
.sms-type-nav {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sms-type-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.2s ease, width 0.3s ease;
}

.sms-type-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.sms-type-dot--sc {
  --type-color: #22d3ee;
}

.sms-type-dot--vln {
  --type-color: #60a5fa;
}

.sms-type-dot--mask {
  --type-color: #c084fc;
}

.sms-type-dot--active {
  background: var(--type-color);
  width: 24px;
  border-radius: 5px;
  transform: none;
}

/* SMS Responsive */

/* ≤1280px — ocultar checklist, 2 columnas se mantienen */
@media (max-width: 1280px) {
  .sms-checklist {
    display: none;
  }
}

/* ≤1024px — 2 columnas, espacio más justo y teléfono escalado */
@media (max-width: 1024px) {
  .sms-hero__container {
    gap: 20px;
  }

  .sms-hero__visual {
    height: 560px;
  }

  .sms-phone {
    zoom: 0.82;
  }

  .sms-hero__arrow {
    display: none;
  }
}

/* ≤768px — colapsa a 1 columna */
@media (max-width: 768px) {
  .sms-hero__container {
    flex-direction: column;
    gap: 40px;
  }

  .sms-hero__content,
  .sms-hero__visual {
    flex: 0 0 100%;
    width: 100%;
  }

  .sms-hero__visual {
    order: 1;
    height: 420px;
    flex-direction: column;
    gap: 20px;
  }

  .sms-phone {
    zoom: 0.72;
  }

  .sms-type-nav {
    padding-top: 16px;
  }
}

@media (max-width: 768px) {
  .sms-hero__visual {
    display: none;
  }

  .sms-modalities,
  .sms-use-cases,
  .sms-cta-final {
    padding: 60px 0;
  }

  .sms-modalities__header {
    margin-bottom: 40px;
  }

  .sms-hero {
    padding: 120px 0 60px;
  }
}

@keyframes dataFlowVertical {
  0% {
    top: -50%;
  }

  100% {
    top: 100%;
  }
}

/* ── SMS Redesign Specific Styles ─────────────────────────────────────────── */
.section-pad {
  padding: 100px 0;
}


.text-navy {
  color: #00068f;
}

.text-teal {
  color: #00bbaf;
}

.text-pink {
  color: #ff007c;
}

.sms-eyebrow {
  display: inline-block;
  font-size: var(--font-size-caption);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 16px;
}

/* Stats Strip */
.sms-stats-strip {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
  padding: 60px 0;
  border-top: 1px solid rgba(0, 6, 143, 0.1);
  border-bottom: 1px solid rgba(0, 6, 143, 0.1);
}

.sms-stats-strip__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: center;
}

.sms-stat {
  text-align: center;
  padding: 20px;
}

.sms-stat__val {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 900;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

.sms-stat__label {
  font-size: var(--font-size-caption);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Modalities */
.sms-modalities {
  background: var(--color-bg);
}

.sms-modalities__header {
  text-align: center;
  margin-bottom: 80px;
}

.sms-modalities__title {
  font-size: clamp(38px, 6vw, 52px);
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--color-navy);
  line-height: 1.1;
}

.sms-modalities__title .text-pink {
  background: linear-gradient(90deg, var(--color-teal), var(--color-navy));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sms-modalities__bar {
  width: 60px;
  height: 4px;
  background: var(--color-azure);
  margin: 0 auto 32px;
  border-radius: 2px;
}

.sms-modalities__description {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: justify;
}

.sms-modalities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.sms-modality-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: 0 10px 40px rgba(0, 6, 143, 0.08);
  border: 1px solid rgba(0, 6, 143, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.sms-modality-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 6, 143, 0.12);
}

.sms-modality-card__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-navy);
}

.sms-modality-card__desc {
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text-muted);
  flex-grow: 1;
  margin-bottom: 20px;
  text-align: justify;
}

.sms-modality-card__footer {
  font-size: var(--font-size-2xs);
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 6, 143, 0.05);
}

.sms-modality-card__number {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.sms-modality-card--orange {
  border-top: 5px solid var(--color-sky);
}

.sms-modality-card--orange .sms-modality-card__number {
  color: var(--color-sky);
}

.sms-modality-card--amber {
  border-top: 5px solid var(--color-amber);
}

.sms-modality-card--amber .sms-modality-card__number {
  color: var(--color-amber);
}

.sms-modality-card--coral {
  border-top: 5px solid var(--color-red);
}

.sms-modality-card--coral .sms-modality-card__number {
  color: var(--color-red);
}

@media (max-width: 1024px) {
  .sms-modalities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sms-modalities {
    padding: 60px 0;
  }

  .sms-modalities__title {
    font-size: var(--font-size-3xl);
  }

  .sms-modalities__description {
    font-size: var(--font-size-md);
  }

  .sms-modalities__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .sms-modality-card {
    width: 100%;
    padding: 24px 20px;
  }

  .sms-modality-card__title {
    font-size: var(--font-size-lg);
  }

  .sms-modality-card__desc {
    font-size: var(--font-size-caption);
  }
}

/* Use Cases */
.sms-use-cases {
  background: linear-gradient(135deg, rgba(0, 187, 175, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
}


.sms-use-cases__header {
  margin-bottom: 60px;
  text-align: center;
}

.sms-use-cases__title {
  font-size: clamp(38px, 6vw, 52px);
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.1;
  margin-bottom: 12px;
}

.sms-use-cases__bar {
  width: 60px;
  height: 4px;
  background: var(--color-sky);
  margin: 0 auto;
  border-radius: 2px;
}

/* Three.js ring + orbital cards */
.sms-ring-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
}

.sms-ring-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}


.sms-uc-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}


.sms-uc-card {
  position: absolute;
  width: 220px;
  background: white;
  padding: 32px 22px 22px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: auto;
  cursor: grab;
  user-select: none;
  will-change: transform;
}

.sms-uc-card:active {
  cursor: grabbing;
}

@media (max-width: 768px) {

  /* Full-bleed: wrapper spans 100vw regardless of container padding */
  .sms-ring-wrapper {
    height: 460px;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Vertical orbit: front card large and readable, background cards small */
  .sms-uc-card {
    width: 75vw;
    max-width: 320px;
    height: auto;
    min-height: 200px;
    padding: 28px 24px;
    pointer-events: none;
    justify-content: center;
    border-radius: 20px;
  }

  /* Re-enable pointer events only on the visually front card (high z-index) */
  .sms-uc-card[style*="z-index: 9"],
  .sms-uc-card[style*="z-index: 8"] {
    pointer-events: auto;
  }

  /* Hide icons and divider — specificity 0,2,0 beats base 0,1,0 rules below */
  .sms-uc-card .sms-uc-card__icon-top,
  .sms-uc-card .sms-uc-card__divider,
  .sms-uc-card .sms-uc-card__icon-bottom {
    display: none;
  }

  .sms-uc-card__num {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 8px;
  }

  .sms-uc-card__content {
    flex: none;
    margin-bottom: 0;
    gap: 6px;
  }

  .sms-uc-card__title {
    font-size: var(--font-size-xl);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
  }

  .sms-uc-card__desc {
    font-size: var(--font-size-caption);
    line-height: 1.5;
    margin: 0;
  }

  .sms-orbit-dots {
    bottom: -32px;
    z-index: 200;
  }
}

.sms-uc-card__icon-top {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.sms-uc-card__num {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.sms-uc-card__divider {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.sms-uc-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.sms-uc-card__title {
  font-size: var(--font-size-md);
  font-weight: 700;
  margin: 0;
}

.sms-uc-card__desc {
  font-size: var(--font-size-sm);
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

.sms-uc-card__icon-bottom {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  color: white;
  flex-shrink: 0;
  margin-top: auto;
}

/* Blue variant */
.sms-uc-card--blue {
  border-top: 6px solid var(--color-sky);
}

.sms-uc-card--blue .sms-uc-card__icon-top {
  background: #e0f2fe;
  color: var(--color-sky);
}

.sms-uc-card--blue .sms-uc-card__num {
  color: var(--color-sky);
}

.sms-uc-card--blue .sms-uc-card__divider {
  background: var(--color-sky);
}

.sms-uc-card--blue .sms-uc-card__title {
  color: var(--color-sky);
}

.sms-uc-card--blue .sms-uc-card__icon-bottom {
  background: var(--color-sky);
}

/* Amber variant */
.sms-uc-card--amber {
  border-top: 6px solid var(--color-amber);
}

.sms-uc-card--amber .sms-uc-card__icon-top {
  background: #fef3c7;
  color: var(--color-amber);
}

.sms-uc-card--amber .sms-uc-card__num {
  color: var(--color-amber);
}

.sms-uc-card--amber .sms-uc-card__divider {
  background: var(--color-amber);
}

.sms-uc-card--amber .sms-uc-card__title {
  color: var(--color-amber);
}

.sms-uc-card--amber .sms-uc-card__icon-bottom {
  background: var(--color-amber);
}

/* Coral variant */
.sms-uc-card--coral {
  border-top: 6px solid var(--color-red);
}

.sms-uc-card--coral .sms-uc-card__icon-top {
  background: #fee2e2;
  color: var(--color-red);
}

.sms-uc-card--coral .sms-uc-card__num {
  color: var(--color-red);
}

.sms-uc-card--coral .sms-uc-card__divider {
  background: var(--color-red);
}

.sms-uc-card--coral .sms-uc-card__title {
  color: var(--color-red);
}

.sms-uc-card--coral .sms-uc-card__icon-bottom {
  background: var(--color-red);
}

/* Orbit arrows */
.sms-orbit-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  color: var(--color-slate);
  z-index: 20;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.sms-orbit-arrow:hover {
  background: var(--color-surface);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-50%) scale(1.08);
}

.sms-orbit-arrow--prev {
  left: 16px;
}

.sms-orbit-arrow--next {
  right: 16px;
}

/* Mobile: override base arrow rules — must come AFTER base rules to win cascade */
@media (max-width: 768px) {
  .sms-orbit-arrow {
    z-index: 200;
    width: 48px;
    height: 48px;
    font-size: var(--font-size-xl);
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  }

  .sms-orbit-arrow--prev {
    left: 8px;
  }

  .sms-orbit-arrow--next {
    right: 8px;
  }

  .sms-orbit-arrow:hover {
    background: var(--color-surface-light);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.24);
    transform: translateY(-50%) scale(1.08);
  }
}

/* Orbit dots */
.sms-orbit-dots {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.sms-orbit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}

.sms-orbit-dot--active {
  background: var(--color-sky);
  width: 24px;
  border-radius: 4px;
  transform: none;
}

@media (max-width: 768px) {
  .sms-use-cases__title {
    font-size: var(--font-size-3xl);
  }

  .sms-use-cases__header {
    margin-bottom: 40px;
  }


}

/* Tech Section */
.sms-tech {
  background: var(--color-bg);
}

.sms-tech__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sms-tech__content {
  padding-right: 40px;
}

.sms-tech__title {
  font-size: clamp(38px, 6vw, 52px);
  font-weight: 900;
  margin-bottom: 40px;
  line-height: 1.1;
  color: var(--color-navy);
}

.sms-tech__bar {
  width: 60px;
  height: 4px;
  background: var(--color-navy);
  /* Was changed to blue earlier, reverted to match or you can keep it */
  margin: 0 0 32px 0;
  /* Left aligned with correct gap */
  border-radius: 2px;
}

.sms-tech__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sms-tech__item {
  margin-bottom: 0;
}

.sms-tech__item-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-navy {
  background-color: #00068f;
}

.dot-teal {
  background-color: #00bbaf;
}

.dot-pink {
  background-color: #ff007c;
}

.sms-tech__item-desc {
  font-size: var(--font-size-md);
  color: #4B5563;
  padding-left: 20px;
  line-height: 1.6;
  text-align: justify;
}

/* Final CTA */
.sms-cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, #4C1D95 0%, var(--color-violet) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sms-cta-final__container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.sms-cta-final__content {
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sms-cta-final__title {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.1;
  color: white;
}

.sms-cta-final__bar {
  width: 80px;
  height: 6px;
  background: white;
  margin: 0 auto 32px;
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.4);
}

.sms-cta-final__description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  text-align: justify;
}

.sms-cta-final__content .btn {
  display: inline-block;
  background: white;
  color: #4C1D95;
  border: none;
}

.sms-cta-final__content .btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.btn--light {
  background-color: white;
  color: #00068f;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ── WhatsApp Service Page Styles ──────────────────────────────────────────── */

.wa-canvas-container canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Features */
.wa-features {
  background: var(--color-surface-light);
}

.wa-features__header {
  text-align: center;
  margin-bottom: 80px;
}

.wa-features__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.wa-features__bar {
  width: 60px;
  height: 4px;
  background: var(--color-emerald);
  margin: 0 auto 32px;
  border-radius: 2px;
}

.wa-features__description {
  font-size: var(--font-size-md);
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  text-align: justify;
}

.wa-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.wa-feature-card {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0, 6, 143, 0.08);
  border: 1px solid rgba(0, 6, 143, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.wa-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(0, 6, 143, 0.12);
}

.wa-feature-card__number {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1;
}

.wa-feature-card--navy .wa-feature-card__number {
  color: #00068f;
}

.wa-feature-card--teal .wa-feature-card__number {
  color: #00bbaf;
}

.wa-feature-card--pink .wa-feature-card__number {
  color: #ff007c;
}

.wa-feature-card__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.wa-feature-card__description {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text-muted);
  flex-grow: 1;
  text-align: justify;
}

/* Functions */
.wa-functions {
  background: white;
}

.wa-functions__header {
  text-align: center;
  margin-bottom: 80px;
}

.wa-functions__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.wa-functions__bar {
  width: 60px;
  height: 4px;
  background: var(--color-azure);
  margin: 0 auto 32px;
  border-radius: 2px;
}

.wa-functions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.wa-func-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.wa-func-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.wa-func-card--green {
  border-top: 5px solid var(--color-emerald);
}

.wa-func-card--dark {
  border-top: 5px solid #075e54;
}

.wa-func-card--teal {
  border-top: 5px solid #00897b;
}

.wa-func-card__num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
}

.wa-func-card__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.wa-func-card__description {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text-muted);
  text-align: justify;
}

/* ── Shared Ideal For / Audience Section ─────────────────────────────────── */
.wa-ideal,
.rcs-ideal {
  background: var(--color-surface-light);
  padding: 100px 0;
}

.wa-ideal__title,
.rcs-ideal__title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.wa-ideal__subheading {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 24px;
}

.wa-ideal__list,
.rcs-ideal__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wa-ideal__item,
.rcs-ideal__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
}

/* CTA Final */
.wa-cta-final {
  background: linear-gradient(135deg, var(--color-emerald) 0%, #075e54 100%);
  padding: 100px 0;
  color: white;
}

.wa-cta-final__container {
  text-align: center;
}

.wa-cta-final__content {
  max-width: 1200px;
  margin: 0 auto;
}

.wa-cta-final__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

@media (min-width: 1024px) {

  .rcs-cta-final__title,
  .sms-cta-final__title,
  .wa-cta-final__title {
    white-space: nowrap;
  }
}

.wa-cta-final__bar {
  width: 60px;
  height: 4px;
  background: white;
  margin: 0 auto 32px;
  border-radius: 2px;
}

.wa-cta-final__description {
  font-size: var(--font-size-md);
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
  text-align: center;
}

.wa-cta-final__content .btn {
  background-color: white;
  color: #075e54;
  font-weight: 700;
  display: inline-block;
}

.wa-cta-final__content .btn:hover {
  background-color: #f0f0f0;
}

@media (max-width: 991px) {
  .sms-tech__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sms-use-cases__box {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .sms-tech {
    padding: 60px 0;
  }

  .sms-tech__grid {
    gap: 40px;
  }

  .sms-tech__content {
    padding-right: 0;
  }

  .sms-tech__title {
    font-size: var(--font-size-3xl);
    margin-bottom: 24px;
  }

  .sms-tech__list {
    gap: 20px;
  }

  .sms-tech__item-title {
    font-size: var(--font-size-md);
  }

  .sms-tech__item-desc {
    font-size: var(--font-size-caption);
  }

  .sms-cta-final {
    padding: 60px 0;
  }

  .sms-cta-final__title {
    font-size: var(--font-size-3xl);
    white-space: normal;
  }

  .sms-cta-final__description {
    font-size: var(--font-size-md);
  }

  .sms-use-cases__box {
    padding: 40px 0;
  }

  .sms-modality-card {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 1024px) {
  .wa-hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wa-hero__visual {
    display: none;
  }

  .wa-canvas-container,
  #wa-3d-canvas {
    display: none;
  }
}

@media (max-width: 768px) {

  .wa-ideal,
  .rcs-ideal {
    padding: 60px 0;
  }

  .wa-ideal__title,
  .rcs-ideal__title {
    font-size: var(--font-size-heading-sm);
  }

  .wa-hero {
    padding: 120px 0 60px;
  }

  .wa-hero__title {
    font-size: var(--font-size-3xl);
  }

  .wa-hero__description {
    font-size: var(--font-size-md);
  }

  .wa-hero__actions {
    flex-direction: column;
  }

  .wa-hero__visual {
    height: 400px;
  }

  .wa-canvas-container {
    height: 400px;
  }

  .wa-features {
    padding: 60px 0;
  }

  .wa-features__title {
    font-size: var(--font-size-heading-sm);
  }

  .wa-features__grid {
    grid-template-columns: 1fr;
  }

  .wa-functions {
    padding: 60px 0;
  }

  .wa-functions__title {
    font-size: var(--font-size-heading-sm);
  }

  .wa-functions__grid {
    grid-template-columns: 1fr;
  }

  .wa-feature-card,
  .wa-func-card {
    width: 100%;
    padding: 24px 20px;
  }

  .wa-cta-final__title {
    font-size: var(--font-size-heading-sm);
    white-space: normal;
  }

  .wa-ideal {
    padding: 60px 0;
  }

  .wa-ideal__title {
    font-size: var(--font-size-heading-sm);
  }

  .wa-cta-final {
    padding: 60px 0;
  }

  .wa-cta-final__title {
    font-size: var(--font-size-heading-sm);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WhatsApp Hero Enhancements
   ═══════════════════════════════════════════════════════════════════════════ */

/* Network canvas — fullscreen behind hero content */
.wa-network-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* Floating bubbles container */
.wa-hero__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

/* Floating bubble animation */
@keyframes waFloat {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.75);
  }

  12% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.03);
  }

  18% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  78% {
    opacity: 0.9;
    transform: translate(-50%, calc(-50% - 36px)) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 64px)) scale(0.9);
  }
}

/* ── Feature card left-border accent ──────────────────────────────────── */
.wa-feature-card--green {
  border-top: 5px solid var(--color-emerald);
}

.wa-feature-card--dark {
  border-top: 5px solid #075e54;
}

.wa-feature-card--teal {
  border-top: 5px solid #00897b;
}

/* ── Func card WA accent on hover ────────────────────────────────────── */
.wa-func-card:hover {
  border-color: rgba(37, 211, 102, 0.25);
}

.wa-ideal__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.wa-ideal__desc {
  font-size: var(--font-size-lg);
  font-weight: 600;
  line-height: 1.7;
  color: var(--color-navy);
  margin-top: 20px;
}

.wa-ideal__card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(0, 6, 143, 0.07);
  border: 1px solid rgba(0, 6, 143, 0.05);
}

.wa-ideal__arrow {
  color: var(--color-navy);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── CTA final — add glass overlay effect ──────────────────────────────── */
.wa-cta-final {
  position: relative;
  overflow: hidden;
}

.wa-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .wa-ideal__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wa-aurora-blob--green {
    width: 90vw;
    height: 90vw;
  }

  .wa-aurora-blob--teal {
    width: 70vw;
    height: 70vw;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RCS Hero Enhancements
   ═══════════════════════════════════════════════════════════════════════════ */

.rcs-network-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.rcs-hero__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.rcs-aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
}

.rcs-aurora-blob--blue {
  width: 60vw;
  height: 60vw;
  background: rgba(91, 159, 255, 0.28);
  top: -25%;
  right: -15%;
  animation: rcsAuroraFloat 14s ease-in-out infinite;
}

.rcs-aurora-blob--purple {
  width: 50vw;
  height: 50vw;
  background: rgba(99, 102, 241, 0.30);
  bottom: -15%;
  left: -8%;
  animation: rcsAuroraFloat 18s ease-in-out infinite reverse;
}

@keyframes rcsAuroraFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.85;
  }

  30% {
    transform: translate(4%, 5%) scale(1.10);
    opacity: 1;
  }

  65% {
    transform: translate(-3%, -4%) scale(0.94);
    opacity: 0.9;
  }
}

.rcs-hero__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

@keyframes rcsFloat {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.75);
  }

  12% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.03);
  }

  18% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  78% {
    opacity: 0.9;
    transform: translate(-50%, calc(-50% - 36px)) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 64px)) scale(0.9);
  }
}

.rcs-float-bubble {
  position: absolute;
  font-size: var(--font-size-sm);
  font-weight: 600;
  padding: 9px 15px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  animation: rcsFloat 5s ease-in-out forwards;
  pointer-events: none;
  font-family: var(--font-main);
  transform: translate(-50%, -50%);
  max-width: 240px;
}

.rcs-float-bubble--received {
  background: #e8f0fe;
  color: #1e3a8a;
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.rcs-float-bubble--sent {
  background: var(--color-azure);
  color: var(--color-white);
  border: none;
}

.rcs-float-bubble--broadcast {
  background: linear-gradient(135deg, #00068f, var(--color-azure));
  color: var(--color-white);
  border: none;
}

/* Hero stack fix */
.rcs-hero {
  overflow: hidden;
}

.rcs-hero__container {
  position: relative;
  z-index: 5;
}

/* ── Feature card accent borders ──────────────────────────────────────── */
.rcs-feature-card--navy {
  border-top: 4px solid #00068f;
}

.rcs-feature-card--teal {
  border-top: 4px solid #00bbaf;
}

.rcs-feature-card--pink {
  border-top: 4px solid #fb0d80;
}

.rcs-feature-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
}

/* ── CTA final glass overlay ──────────────────────────────────────────── */
.rcs-cta-final {
  position: relative;
  overflow: hidden;
}

.rcs-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .rcs-aurora-blob--blue {
    width: 90vw;
    height: 90vw;
  }

  .rcs-aurora-blob--pink {
    width: 70vw;
    height: 70vw;
  }
}

/* ── RCS Ideal redesign ─────────────────────────────────────────────────── */
.rcs-ideal {
  background: var(--color-white);
}

.rcs-ideal__title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  color: var(--color-navy);
  text-align: left;
  margin-bottom: 0;
  line-height: 1.15;
}

.rcs-ideal__highlight {
  color: var(--color-azure);
}

.rcs-ideal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.rcs-ideal .rcs-ideal__list {
  gap: 20px;
  padding: 0;
  margin: 0;
}

.rcs-ideal .rcs-ideal__item {
  font-weight: 700;
  font-size: var(--font-size-base);
  color: var(--color-navy);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.rcs-ideal__arrow {
  color: var(--color-azure);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .rcs-ideal__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rcs-ideal__title {
    font-size: clamp(28px, 8vw, 40px);
  }
}

/* ── Certifications ─────────────────────────────────────────────────────── */
.certifications {
  padding: 80px 0;
  background: var(--color-bg);
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--color-border);
}

.certifications__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.certifications__title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.certifications__desc {
  font-size: var(--font-size-lg);
  color: #8f9ba8;
  line-height: 1.6;
}

.certifications__logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.certifications__mobile-ticker {
  display: none;
}

.cert-logo-link {
  display: block;
  text-decoration: none;
  color: inherit;
  outline: none;
  flex: 1 1 auto;
  max-width: 260px;
  width: 100%;
  min-width: 0;
}

.cert-logo-wrapper {
  background: rgba(0, 0, 0, 0.03);
  padding: 20px;
  border-radius: 20px;
  border: 2px solid rgba(0, 0, 0, 0.10);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 140px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.cert-logo-wrapper:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 187, 175, 0.6);
  box-shadow: 0 12px 32px rgba(0, 187, 175, 0.1);
  background: rgba(0, 187, 175, 0.03);
}

.cert-logo {
  max-width: min(170px, 100%);
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cert-logo--iso {
  transform: scale(1.15);
}

.cert-logo-wrapper:hover .cert-logo--iso {
  transform: scale(1.2);
}

@media (max-width: 1200px) {
  .certifications__logos {
    gap: 8px;
  }

  .cert-logo-wrapper {
    padding: 12px;
    height: 120px;
  }

  .cert-logo {
    max-height: 90px;
  }
}

@media (max-width: 992px) {
  .certifications__logos {
    gap: 6px;
  }

  .cert-logo-wrapper {
    padding: 8px;
    height: 100px;
    border-radius: 14px;
  }

  .cert-logo {
    max-height: 70px;
  }
}

@media (max-width: 768px) {
  .certifications {
    padding: 60px 0;
  }

  .certifications__content {
    margin-bottom: 30px;
  }

  .certifications__logos {
    display: none;
  }

  .certifications__mobile-ticker {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 8px 0;
  }

  .certifications__mobile-ticker::before,
  .certifications__mobile-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
  }

  .certifications__mobile-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg) 0%, transparent 100%);
  }

  .certifications__mobile-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg) 0%, transparent 100%);
  }

  .certifications__mobile-track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: marquee 22s linear infinite;
    padding-right: 20px;
  }

  .partners__mobile-track {
    animation: marquee 40s linear infinite;
  }

  .trust-banner__track {
    animation: marquee 15s linear infinite;
  }

  .certifications__mobile-track .cert-logo-link {
    width: 150px;
    flex: 0 0 auto;
  }

  .certifications__mobile-track .cert-logo-wrapper {
    height: 110px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }

  .certifications__mobile-track .cert-logo-wrapper:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    transform: none;
  }

  .certifications__mobile-track .cert-logo {
    height: 110px;
    width: auto;
    max-width: 100%;
    max-height: 110px;
  }

  .certifications__mobile-track .cert-logo--iso {
    transform: scale(1.3);
    height: 90px;
    max-height: 90px;
  }
}

@media (max-width: 576px) {
  .certifications__title {
    font-size: var(--font-size-xl);
  }

  .certifications__desc {
    font-size: var(--font-size-md);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   COOKIE CONSENT MODAL
   ═══════════════════════════════════════════════════════════════════════════ */

.jpfNoticeOverlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.jpfNoticeOverlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.jpfNoticePanel {
  display: none;
  position: relative;
  margin: 0;
  background: transparent;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border: none;
  padding: 0;
}

.jpfNoticePanel--visible {
  display: block;
}

.jpfNoticeOverlay--visible .jpfNoticePanel--visible {
  transform: translateY(0);
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.jpfNoticePanel__header {
  background: var(--color-bg);
  padding: 24px 28px 20px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-bottom: 1px solid var(--color-border);
}

.jpfNoticePanel__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px;
  line-height: 1.3;
}

.jpfNoticePanel__desc {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  line-height: 1.55;
  margin: 0;
}

/* ── Body ────────────────────────────────────────────────────────────────── */
.jpfNoticePanel__body {
  background: var(--color-bg);
  padding: 22px 28px 24px;
}

.jpfNoticeGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.jpfNoticeCard {
  background: var(--color-surface-light);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 14px;
}

.jpfNoticeCard__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 8px;
}

.jpfNoticeCard__left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.jpfNoticeCard__icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0, 6, 143, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  font-size: 14px;
  flex-shrink: 0;
}

.jpfNoticeCard__title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.3;
}

.jpfNoticeCard__desc {
  font-size: var(--font-size-2xs);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Toggle ──────────────────────────────────────────────────────────────── */
.jpfNoticeToggle {
  flex-shrink: 0;
  width: 42px;
  height: 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
  background: #cbd5e1;
  transition: background 0.2s ease;
}

.jpfNoticeToggle[aria-checked="true"] {
  background: var(--color-navy);
}

.jpfNoticeToggle__knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: left 0.2s ease;
  pointer-events: none;
}

.jpfNoticeToggle[aria-checked="true"] .jpfNoticeToggle__knob {
  left: 20px;
}

/* ── Badge ───────────────────────────────────────────────────────────────── */
.jpfNoticeBadge {
  flex-shrink: 0;
  background: rgba(0, 6, 143, 0.07);
  color: var(--color-navy);
  border: 1px solid rgba(0, 6, 143, 0.18);
  font-size: 10px;
  font-weight: 600;
  border-radius: 6px;
  padding: 3px 7px;
  white-space: nowrap;
  line-height: 1.4;
}

/* ── Legal ───────────────────────────────────────────────────────────────── */
.jpfNoticeLegal {
  font-size: var(--font-size-2xs);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0 0 18px;
}

.jpfNoticeLink {
  color: var(--color-pink);
  text-decoration: none;
  font-weight: 500;
}

.jpfNoticeLink:hover {
  text-decoration: underline;
}

/* ── Actions ─────────────────────────────────────────────────────────────── */
.jpfNoticeActions {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.jpfNoticeBtn {
  flex: 1;
  height: 46px;
  border-radius: 10px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  white-space: nowrap;
  padding: 0 8px;
  transition: opacity 0.18s ease, transform 0.15s ease;
}

.jpfNoticeBtn:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.jpfNoticeBtn--outline {
  background: var(--color-white);
  border-color: var(--color-border);
  color: var(--color-text);
}

.jpfNoticeBtn--primary {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}

.jpfNoticeSecondary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}

.jpfNoticeSecondary .jpfNoticeLink {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.jpfNoticeSecondary .jpfNoticeLink:hover {
  color: var(--color-navy);
  text-decoration: underline;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 520px) {

  .jpfNoticePanel__header,
  .jpfNoticePanel__body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .jpfNoticePanel__footer {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .jpfNoticeActions {
    flex-direction: column;
    gap: 8px;
  }

  .jpfNoticeBtn {
    width: 100%;
    flex: none;
    height: 44px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHATSAPP BUSINESS HERO
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── WA Hero Section ─────────────────────────────────────────────────────── */
.wa-hero {
  position: relative;
  overflow: hidden;
  background: #020412;
  color: var(--color-white);
  display: flex;
  align-items: center;
  height: auto;
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 110px;
}

.wa-hero__container {
  display: flex;
  flex-direction: row;
  gap: 50px;
  position: relative;
  z-index: 5;
  align-items: center;
}

.wa-hero__content {
  flex: 0 0 calc(50% - 20px);
  min-width: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  height: 600px;
  overflow: visible;
  position: relative;
}

.wa-hero__content>.wa-panel--intro {
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  margin-top: -50px;
  z-index: 3;
}

.wa-stage__panels {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  margin-top: -50px;
}

.wa-hero__badge {
  margin-bottom: 20px;
}

.wa-hero__title {
  margin-bottom: 20px;
}

.wa-hero__description {
  margin-bottom: 32px;
}

.wa-hero__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.wa-hero__visual {
  flex: 0 0 calc(50% - 20px);
  min-width: 0;
  position: relative;
  height: 600px;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

/* ── WA Panel System ─────────────────────────────────────────────────────── */
.wa-panel {
  grid-row: 1;
  grid-column: 1;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: perspective(1000px) rotateX(10deg) scale(0.97);
  transform-origin: top center;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.18s ease,
    visibility 0s linear 0.18s;
  will-change: transform, opacity;
}

.wa-panel--intro {
  z-index: 2;
}

.wa-panel--active {
  opacity: 1;
  visibility: visible;
  transform: perspective(1000px) rotateX(0deg) scale(1);
  pointer-events: auto;
  z-index: 3;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.45s ease;
}

.wa-panel__hint {
  margin-top: 20px;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  display: none;
}

/* ── WA Case Content ─────────────────────────────────────────────────────── */
.wa-case__meta {
  margin-bottom: 12px;
}

.wa-case__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.wa-case__tag--green {
  background: rgba(37, 211, 102, 0.15);
  color: var(--color-emerald);
  border: 1px solid rgba(37, 211, 102, 0.30);
}

.wa-case__tag--teal {
  background: rgba(0, 187, 175, 0.15);
  color: #00BBAF;
  border: 1px solid rgba(0, 187, 175, 0.30);
}

.wa-case__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin: 0 0 14px;
  font-family: var(--font-main);
}

.wa-case__accent--green {
  color: var(--color-emerald);
}

.wa-case__accent--teal {
  color: #00BBAF;
}

.wa-case__desc {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 460px;
}

.wa-case__facts {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-case__facts li {
  font-size: var(--font-size-caption);
  color: rgba(255, 255, 255, 0.75);
  padding-left: 18px;
  position: relative;
}

.wa-case__facts li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-emerald);
  font-weight: 700;
}

.wa-case__sender {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.20);
  border-radius: 10px;
  width: fit-content;
}

.wa-case__sender-label {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wa-case__sender-value {
  font-size: var(--font-size-sm);
  color: var(--color-emerald);
  font-weight: 600;
}

/* ── WA Aurora ───────────────────────────────────────────────────────────── */
.wa-network-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.wa-hero__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.wa-aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
}

.wa-aurora-blob--green {
  width: 60vw;
  height: 60vw;
  background: rgba(37, 211, 102, 0.25);
  top: -25%;
  right: -15%;
  animation: waAuroraGreen 14s ease-in-out infinite alternate;
}

.wa-aurora-blob--teal {
  width: 50vw;
  height: 50vw;
  background: rgba(0, 187, 175, 0.22);
  bottom: -15%;
  left: -8%;
  animation: waAuroraTeal 18s ease-in-out infinite alternate;
}

@keyframes waAuroraGreen {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(6vw, 4vh) scale(1.12);
  }
}

@keyframes waAuroraTeal {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-5vw, -3vh) scale(1.08);
  }
}

/* ── WA Edge Arrows ──────────────────────────────────────────────────────── */
.wa-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.60);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.wa-hero__arrow:hover {
  background: rgba(37, 211, 102, 0.15);
  color: var(--color-emerald);
}

.wa-hero__arrow--prev {
  left: 16px;
}

.wa-hero__arrow--next {
  right: 16px;
}

/* ── WA Type Nav Dots ────────────────────────────────────────────────────── */
.wa-type-nav {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.wa-type-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.2s ease, width 0.3s ease;
}

.wa-type-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.wa-type-dot--notif {
  --type-color: var(--color-emerald);
}

.wa-type-dot--conv {
  --type-color: #00BBAF;
}

.wa-type-dot--promo {
  --type-color: var(--color-emerald);
}

.wa-type-dot--active {
  background: var(--type-color);
  width: 24px;
  border-radius: 5px;
  transform: none;
}

/* ── WA Phone Levitation ─────────────────────────────────────────────────── */
@keyframes waPhoneLevitate {
  0% {
    transform: perspective(900px) rotateY(-2deg) rotateX(1deg) translateY(0px);
  }

  50% {
    transform: perspective(900px) rotateY(-1deg) rotateX(0.5deg) translateY(-8px);
  }

  100% {
    transform: perspective(900px) rotateY(-2deg) rotateX(1deg) translateY(0px);
  }
}

@media (min-resolution: 1.1dppx) and (min-width: 1025px) {
  .wa-hero {
    padding-top: 160px;
  }

  .wa-phone-wrapper {
    zoom: 0.9;
  }
}

.wa-phone-wrapper {
  animation: waPhoneLevitate 7s ease-in-out infinite;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

/* ── WA Phone ────────────────────────────────────────────────────────────── */
.wa-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  overflow: visible;
}

/* ── WA Glow states — box-shadow only, no ::before (keeps glass clean) ──── */
.wa-phone--glow-green .wa-phone__frame {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.30),
    0 0 80px rgba(37, 211, 102, 0.28),
    0 0 140px rgba(37, 211, 102, 0.14),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(255, 255, 255, 0.10),
    inset 1px 0 0 rgba(255, 255, 255, 0.14),
    inset -1px 0 0 rgba(255, 255, 255, 0.14);
  transition: box-shadow 0.6s ease;
}

.wa-phone--glow-teal .wa-phone__frame {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.30),
    0 0 80px rgba(0, 187, 175, 0.28),
    0 0 140px rgba(0, 187, 175, 0.14),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(255, 255, 255, 0.10),
    inset 1px 0 0 rgba(255, 255, 255, 0.14),
    inset -1px 0 0 rgba(255, 255, 255, 0.14);
  transition: box-shadow 0.6s ease;
}

@keyframes waPhoneFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-3px) rotate(0deg);
  }
}

.wa-phone__frame {
  width: 350px;
  height: 720px;
  border-radius: 18px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 35%,
      rgba(255, 255, 255, 0.05) 65%,
      rgba(255, 255, 255, 0.09) 100%);
  backdrop-filter: blur(60px) saturate(1.6);
  -webkit-backdrop-filter: blur(60px) saturate(1.6);
  padding: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 32px 80px rgba(0, 0, 0, 0.50),
    0 8px 24px rgba(0, 0, 0, 0.32),
    0 0 80px rgba(37, 211, 102, 0.22),
    0 0 120px rgba(0, 187, 175, 0.14),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12),
    inset 1px 0 0 rgba(255, 255, 255, 0.18),
    inset -1px 0 0 rgba(255, 255, 255, 0.18);
  animation: waPhoneFloat 4s ease-in-out infinite;
  overflow: hidden;
}

.wa-phone__frame::before,
.wa-phone__frame::after {
  display: none;
}

/* ── Physical side buttons ─────────────────────────────────────────────────── */
.wa-phone__btns-left,
.wa-phone__btns-right {
  position: absolute;
  top: 0;
  width: 4px;
  height: 720px;
  pointer-events: none;
  z-index: 2;
}

.wa-phone__btns-left {
  left: -4px;
}

.wa-phone__btns-right {
  right: -4px;
}

.wa-phone__btns-left::before {
  content: '';
  position: absolute;
  top: 130px;
  left: 0;
  width: 4px;
  height: 32px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.10) 100%);
  border-radius: 2px 0 0 2px;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.28);
}

.wa-phone__btns-left::after {
  content: '';
  position: absolute;
  top: 178px;
  left: 0;
  width: 4px;
  height: 32px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.10) 100%);
  border-radius: 2px 0 0 2px;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.28);
}

.wa-phone__btns-right::before {
  content: '';
  position: absolute;
  top: 150px;
  right: 0;
  width: 4px;
  height: 55px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.22) 100%);
  border-radius: 0 2px 2px 0;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.28);
}

/* ── Dynamic island ────────────────────────────────────────────────────────── */
.wa-phone__island {
  width: 78px;
  height: 22px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(15px);
  border-radius: 11px;
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

/* ── RCS Business Profile Screen ───────────────────────────────────────────── */
.rcs-profile__screen {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #0f0e0a;
  overflow: hidden;
}

.rcs-profile__topbar {
  display: flex;
  align-items: center;
  padding: 10px 14px 0;
  color: #e8e3d5;
  flex-shrink: 0;
}

.rcs-profile__back {
  font-size: 18px;
  line-height: 1;
}

.rcs-profile__banner {
  height: 110px;
  background: #1a1910;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.rcs-profile__banner::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 76px;
  height: 80px;
  background: #00BBAF;
}

.rcs-profile__banner-mid {
  position: absolute;
  top: -8px;
  left: 52px;
  width: 44px;
  height: 60px;
  background: #2244CC;
}

.rcs-profile__banner::after {
  content: '';
  position: absolute;
  top: -14px;
  right: 14px;
  width: 60px;
  height: 60px;
  background: #FF007C;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.rcs-profile__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px 14px;
  background: transparent;
  flex-shrink: 0;
  margin-top: -44px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.rcs-profile__hero--visible {
  opacity: 1;
  transform: translateY(0);
}

.rcs-profile__avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #0f0e0a;
  overflow: hidden;
  padding: 8px;
}

.rcs-profile__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rcs-profile__name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: #e8e3d5;
  margin-top: 8px;
  font-family: -apple-system, var(--font-main);
}

.rcs-profile__subtitle {
  font-size: var(--font-size-2xs);
  color: #f4b400;
  margin-top: 2px;
  font-family: -apple-system, var(--font-main);
}

.rcs-profile__actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
}

.rcs-profile__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.rcs-profile__action-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #2e2c1e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8c3b5;
  font-size: 17px;
}

.rcs-profile__action-label {
  font-size: 9px;
  color: #a09c8e;
  text-align: center;
  font-family: -apple-system, var(--font-main);
  line-height: 1.3;
  max-width: 54px;
}

.rcs-profile__body {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 0 8px;
}

.rcs-profile__section {
  background: #232119;
  border-radius: 10px;
  margin: 0 8px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.rcs-profile__section--visible {
  opacity: 1;
  transform: translateY(0);
}

.rcs-profile__section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  color: #e8e3d5;
  font-size: var(--font-size-xs);
  font-family: -apple-system, var(--font-main);
  font-weight: 500;
}

.rcs-profile__section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e8e3d5;
}

.rcs-profile__section-count {
  color: #a09c8e;
  font-size: var(--font-size-xs);
  display: flex;
  align-items: center;
  gap: 2px;
}

.rcs-profile__images {
  display: flex;
  padding: 0 14px 12px;
  gap: 8px;
}

.rcs-profile__img-thumb {
  width: 84px;
  height: 84px;
  border-radius: 8px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
}

.rcs-profile__img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rcs-profile__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: #e8e3d5;
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}

.rcs-profile__item:first-child {
  border-top: none;
}

.rcs-profile__item-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a09c8e;
  font-size: 14px;
  flex-shrink: 0;
}

.rcs-profile__item-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.rcs-profile__item-value {
  font-size: var(--font-size-xs);
  color: #e8e3d5;
  font-family: -apple-system, var(--font-main);
}

.rcs-profile__item-label {
  font-size: var(--font-size-micro);
  color: #a09c8e;
  font-family: -apple-system, var(--font-main);
}

/* ── WA Phone Screen ────────────────────────────────────────────────────────── */
.wa-phone__screen {
  flex: 1;
  min-height: 0;
  background: #0B141A;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.wa-phone__header {
  background: #202C33;
  border-bottom: none;
  flex-shrink: 0;
  position: relative;
  z-index: 90;
}

/* Status bar */
.wa-phone__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px 4px;
  background: transparent;
  flex-shrink: 0;
}

.wa-phone__clock {
  font-size: var(--font-size-2xs);
  font-weight: 700;
  color: var(--color-white);
  font-family: -apple-system, var(--font-main);
  letter-spacing: -0.3px;
}

.wa-phone__indicators {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-white);
  font-size: var(--font-size-caption);
}

/* Navbar */
.wa-phone__navbar {
  background: transparent;
  padding: 8px 10px 8px 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex-shrink: 0;
}

.wa-phone__back {
  font-size: var(--font-size-2xl);
  color: var(--color-white);
  min-width: 22px;
  display: flex;
  align-items: center;
}

.wa-phone__contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.wa-phone__contact-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-emerald), var(--color-emerald-dark));
  color: var(--color-white);
  font-size: var(--font-size-md);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  flex-shrink: 0;
  overflow: hidden;
}

.wa-phone__contact-avatar--wa {
  background: var(--color-white);
}

.wa-avatar-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wa-phone__contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wa-phone__contact-name {
  font-size: var(--font-size-caption);
  font-weight: 600;
  color: var(--color-white);
  font-family: -apple-system, var(--font-main);
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.wa-verified-badge {
  font-size: var(--font-size-caption);
  color: #53BDEB;
  flex-shrink: 0;
}

.wa-phone__contact-status {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.70);
  font-weight: 400;
  font-family: -apple-system, var(--font-main);
}

.wa-phone__nav-icons {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.90);
  font-size: 17px;
}

.wa-phone__nav-icon {
  display: flex;
  align-items: center;
}

/* Messages area */
.wa-phone__messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.wa-phone__messages::-webkit-scrollbar {
  display: none;
}

.wa-phone__datelabel {
  text-align: center;
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  padding: 4px 0;
  flex-shrink: 0;
  font-family: -apple-system, var(--font-main);
}

/* WA message wrappers */
.wa-msg {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  max-width: 85%;
}

.wa-msg--outgoing {
  align-items: flex-end;
  align-self: flex-end;
}

.wa-msg__bubble {
  background: #1F2C34;
  color: #e9edef;
  font-size: var(--font-size-2xs);
  line-height: 1.45;
  padding: 7px 12px 16px;
  border-radius: var(--radius-sm) var(--radius-sm) var(--radius-sm) 3px;
  max-width: 242px;
  font-family: -apple-system, var(--font-main);
  position: relative;
}

.wa-msg__bubble--padded {
  padding-bottom: 4px;
}

.wa-msg--outgoing .wa-msg__bubble {
  background: #005C4B;
  color: #e9edef;
  border-radius: var(--radius-sm) var(--radius-sm) 3px var(--radius-sm);
}

.wa-msg__meta {
  float: right;
  margin-left: 6px;
  margin-bottom: -1px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.wa-msg__time {
  font-size: var(--font-size-micro);
  color: rgba(255, 255, 255, 0.60);
  font-family: -apple-system, var(--font-main);
}

.wa-msg__ticks {
  font-size: var(--font-size-micro);
  color: rgba(255, 255, 255, 0.60);
}

.wa-msg__ticks--read {
  color: var(--color-emerald);
}

/* WA interactive message — body + button divider */
.wa-interactive {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  max-width: 242px;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
}

.wa-interactive__body {
  padding: 8px 12px 10px;
  font-size: var(--font-size-2xs);
  color: var(--color-white);
  font-family: -apple-system, var(--font-main);
  line-height: 1.45;
}

.wa-interactive__footer {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.45);
  padding: 0 12px 6px;
  font-family: -apple-system, var(--font-main);
}

.wa-interactive__divider {
  height: 0.5px;
  background: rgba(255, 255, 255, 0.10);
}

.wa-interactive__btn {
  display: block;
  width: 100%;
  padding: 9px 12px;
  font-size: var(--font-size-2xs);
  color: #53BDEB;
  font-weight: 500;
  text-align: center;
  font-family: -apple-system, var(--font-main);
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  transition: background 0.15s ease, transform 0.12s ease;
}

.wa-interactive__btn+.wa-interactive__btn {
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
}

.wa-interactive__btn--pressed {
  background: rgba(83, 189, 235, 0.14);
  transform: scale(0.97);
}

/* WA catalog card */
.wa-catalog-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  max-width: 242px;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
}

.wa-catalog-card__image {
  width: 100%;
  height: 105px;
  background: linear-gradient(135deg,
      rgba(37, 211, 102, 0.35) 0%,
      rgba(18, 140, 126, 0.30) 55%,
      rgba(0, 100, 80, 0.25) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 33px;
}

.wa-catalog-card__body {
  padding: 8px 12px 10px;
}

.wa-catalog-card__title {
  font-size: var(--font-size-2xs);
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 2px;
  font-family: -apple-system, var(--font-main);
}

.wa-catalog-card__price {
  font-size: var(--font-size-2xs);
  color: var(--color-emerald);
  font-weight: 600;
  font-family: -apple-system, var(--font-main);
  margin: 0;
}

.wa-catalog-card__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  margin: 0 12px;
}

.wa-catalog-card__cta {
  padding: 9px 12px;
  text-align: center;
  font-size: var(--font-size-2xs);
  font-weight: 600;
  color: #53BDEB;
  font-family: -apple-system, var(--font-main);
  letter-spacing: 0.01em;
}

/* WA quick reply chips */
/* ── WA List Message ─────────────────────────────────────────────────────── */
.wa-list-msg {
  margin: 4px 8px;
  background: #1F2C34;
  border-radius: var(--radius-sm) var(--radius-sm) var(--radius-sm) 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.wa-list-msg--new {
  opacity: 0;
  transform: translateY(6px) scale(0.97);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.wa-list-msg--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wa-list-msg__body {
  padding: 9px 10px 6px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  font-size: var(--font-size-2xs);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  font-family: -apple-system, var(--font-main);
}

.wa-list-msg__meta {
  flex-shrink: 0;
}

.wa-list-msg__time {
  font-size: var(--font-size-micro);
  color: rgba(255, 255, 255, 0.40);
}

.wa-list-msg__divider {
  height: 0.5px;
  background: rgba(255, 255, 255, 0.12);
}

.wa-list-msg__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  color: var(--color-emerald);
  font-size: var(--font-size-2xs);
  font-weight: 600;
  font-family: -apple-system, var(--font-main);
  cursor: default;
}

/* ── WA Location Message ─────────────────────────────────────────────────── */
.wa-location-msg {
  border-radius: 10px 10px 10px 2px;
  overflow: hidden;
  max-width: 220px;
  border: 0.5px solid rgba(255, 255, 255, 0.10);
  flex-shrink: 0;
}


.wa-location-msg--new {
  opacity: 0;
  transform: translateY(6px) scale(0.97);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.wa-location-msg--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wa-location-msg__map {
  width: 100%;
  height: 118px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(0deg, transparent 47%, rgba(255, 255, 255, 0.07) 47%, rgba(255, 255, 255, 0.07) 53%, transparent 53%),
    linear-gradient(90deg, transparent 47%, rgba(255, 255, 255, 0.07) 47%, rgba(255, 255, 255, 0.07) 53%, transparent 53%),
    linear-gradient(0deg, transparent 20%, rgba(255, 255, 255, 0.03) 20%, rgba(255, 255, 255, 0.03) 22%, transparent 22%),
    linear-gradient(0deg, transparent 74%, rgba(255, 255, 255, 0.03) 74%, rgba(255, 255, 255, 0.03) 76%, transparent 76%),
    linear-gradient(90deg, transparent 20%, rgba(255, 255, 255, 0.03) 20%, rgba(255, 255, 255, 0.03) 22%, transparent 22%),
    linear-gradient(90deg, transparent 74%, rgba(255, 255, 255, 0.03) 74%, rgba(255, 255, 255, 0.03) 76%, transparent 76%),
    #1b2e22;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-location-msg__pin {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
}

.wa-location-msg__body {
  padding: 7px 10px 2px;
  background: rgba(0, 0, 0, 0.22);
}

.wa-location-msg__name {
  display: block;
  font-size: var(--font-size-2xs);
  font-weight: 600;
  color: var(--color-white);
  font-family: -apple-system, var(--font-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-location-msg__addr {
  display: block;
  font-size: var(--font-size-micro);
  color: rgba(255, 255, 255, 0.50);
  margin-top: 1px;
  font-family: -apple-system, var(--font-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-location-msg__meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3px;
  padding: 3px 0 6px;
}

.wa-location-msg__time {
  font-size: var(--font-size-micro);
  color: rgba(255, 255, 255, 0.38);
  font-family: -apple-system, var(--font-main);
}

/* ── WA Bottom Sheet ─────────────────────────────────────────────────────── */
.wa-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2c34;
  border-radius: 12px 12px 0 0;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 50;
  display: flex;
  flex-direction: column;
  max-height: 72%;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.wa-sheet--open {
  transform: translateY(0);
}

.wa-sheet__handle {
  width: 36px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  margin: 10px auto 0;
  flex-shrink: 0;
}

.wa-sheet__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px 10px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.10);
  position: relative;
  flex-shrink: 0;
}

.wa-sheet__close {
  position: absolute;
  left: 14px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--font-size-caption);
  cursor: default;
  padding: 0;
  line-height: 1;
  font-family: -apple-system, var(--font-main);
}

.wa-sheet__title {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-white);
  font-family: -apple-system, var(--font-main);
}

.wa-sheet__options {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  flex: 1;
}

.wa-sheet__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--font-size-2xs);
  font-family: -apple-system, var(--font-main);
  transition: background 0.2s;
}

.wa-sheet__option--selected {
  background: rgba(37, 211, 102, 0.08);
}

.wa-sheet__opt-text {
  flex: 1;
}

.wa-sheet__radio {
  width: 17px;
  height: 17px;
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.wa-sheet__option--selected .wa-sheet__radio {
  border-color: var(--color-emerald);
}

.wa-sheet__radio-dot {
  width: 9px;
  height: 9px;
  background: var(--color-emerald);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-sheet__option--selected .wa-sheet__radio-dot {
  opacity: 1;
  transform: scale(1);
}

.wa-sheet__hint {
  text-align: center;
  font-size: var(--font-size-micro);
  color: rgba(255, 255, 255, 0.30);
  padding: 8px 16px 10px;
  flex-shrink: 0;
  font-family: -apple-system, var(--font-main);
}

/* Typing indicator */
.wa-phone__typing {
  display: flex;
  gap: 4px;
  padding: 8px 12px;
  margin: 0 10px 4px;
  background: #1F2C34;
  border-radius: var(--radius-sm) var(--radius-sm) var(--radius-sm) 3px;
  width: fit-content;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.wa-phone__typing.wa-phone__typing--active {
  opacity: 1;
}

.wa-phone__typing span {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.50);
  border-radius: 50%;
  animation: waTypingDot 1.1s ease-in-out infinite;
}

.wa-phone__typing span:nth-child(2) {
  animation-delay: 0.18s;
}

.wa-phone__typing span:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes waTypingDot {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

/* Bubble enter animation */
.wa-msg__bubble--new,
.wa-interactive--new,
.wa-catalog-card--new {
  opacity: 0;
  transform: translateY(6px) scale(0.97);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.wa-msg__bubble--visible,
.wa-interactive--visible,
.wa-catalog-card--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Input bar */
.wa-phone__inputbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px 26px;
  background: #0B141A;
  border-top: none;
  flex-shrink: 0;
}

.wa-inputbar__emoji {
  font-size: var(--font-size-2xl);
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.wa-inputbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 19px;
  flex-shrink: 0;
}

.wa-phone__input-pill {
  flex: 1;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 14px;
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  min-width: 0;
  gap: 6px;
}

.wa-phone__placeholder {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.40);
  font-family: -apple-system, var(--font-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.wa-phone__mic-btn {
  width: 38px;
  height: 38px;
  background: #1B7B42;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  flex-shrink: 0;
}

.wa-phone__mic-btn .bi {
  font-size: var(--font-size-md);
  color: var(--color-white);
}

/* ── WA New UI Elements ──────────────────────────────────────────────────── */
.wa-security-notice {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  background: rgba(255, 215, 0, 0.07);
  border-radius: 8px;
  padding: 7px 10px;
  margin: 4px 8px 6px;
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
  font-family: -apple-system, var(--font-main);
}

.wa-security-notice .bi {
  font-size: 10px;
  color: rgba(255, 210, 0, 0.65);
  flex-shrink: 0;
  margin-top: 1px;
}

.wa-business-notice {
  text-align: center;
  font-size: 10px;
  color: #53BDEB;
  line-height: 1.5;
  padding: 2px 14px 8px;
  font-family: -apple-system, var(--font-main);
}

.wa-quick-replies {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 3px;
  max-width: 240px;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.wa-qr__btn {
  display: block;
  width: 100%;
  background: #1F2C34;
  color: #53BDEB;
  font-size: 11px;
  font-weight: 500;
  padding: 9px 12px;
  border: none;
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  font-family: -apple-system, var(--font-main);
  cursor: pointer;
  transition: background 0.15s ease;
}

.wa-qr__btn--active {
  background: rgba(83, 189, 235, 0.15);
}

.wa-msg__quote {
  background: rgba(0, 0, 0, 0.25);
  border-left: 3px solid #53BDEB;
  border-radius: 4px;
  padding: 5px 8px;
  margin-bottom: 5px;
}

.wa-msg__quote-name {
  font-size: 10px;
  font-weight: 600;
  color: #53BDEB;
  margin-bottom: 2px;
  font-family: -apple-system, var(--font-main);
}

.wa-msg__quote-text {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-family: -apple-system, var(--font-main);
}

.wa-msg__read {
  font-size: 11px;
  color: #53BDEB;
  margin-left: 2px;
  vertical-align: middle;
}

/* ── WA Animated Checklist ───────────────────────────────────────────────── */
.wa-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 215px;
  min-height: 210px;
  flex-shrink: 0;
  overflow: hidden;
}

.wa-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.wa-checklist__item--visible {
  opacity: 1;
  transform: translateX(0);
}

.wa-checklist__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--cl-color, var(--color-emerald));
  transition: background 0.4s ease, border-color 0.4s ease;
}

.wa-checklist__check svg {
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.35s ease 0.08s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s;
}

.wa-checklist__item--checked .wa-checklist__check {
  border-color: var(--cl-color, var(--color-emerald));
  background: color-mix(in srgb, var(--cl-color, var(--color-emerald)) 18%, transparent);
}

.wa-checklist__item--checked .wa-checklist__check svg {
  opacity: 1;
  transform: scale(1);
}

.wa-checklist__text {
  font-size: var(--font-size-md);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.5s ease;
}

.wa-checklist__item--checked .wa-checklist__text {
  color: var(--color-white);
}

/* ── WA Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1280px) {
  .wa-checklist {
    display: none;
  }
}

@media (max-width: 1024px) {
  .wa-hero__container {
    gap: 20px;
  }

  .wa-hero__visual {
    height: 560px;
  }

  .wa-phone {
    zoom: 0.85;
  }
}

@media (max-width: 768px) {
  .wa-hero__container {
    flex-direction: column;
    gap: 40px;
  }

  .wa-hero__content,
  .wa-hero__visual {
    flex: 0 0 100%;
    width: 100%;
  }

  .wa-hero__visual {
    display: none;
  }
}

/* ── Floating WA Button ───────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 950;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-emerald);
  animation: wa-float-pulse 2.8s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes wa-float-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }

  70% {
    transform: scale(1.65);
    opacity: 0;
  }

  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.wa-float__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.wa-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.82);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.wa-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.82);
}

.wa-float:hover .wa-float__tooltip,
.wa-float:focus-visible .wa-float__tooltip {
  opacity: 1;
}

@media (max-width: 768px) {
  .wa-float {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .wa-float__icon {
    width: 28px;
    height: 28px;
  }

  .wa-float__tooltip {
    display: none;
  }
}

/* â”€â”€ NOC Carousel (mobile) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.noc-carousel {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .noc-carousel {
    display: flex;
  }
}

.noc-carousel__track {
  display: flex;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.noc-carousel__slide {
  min-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.noc-carousel__hero-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
}

.noc-carousel__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.noc-carousel__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.noc-carousel__hero-badge {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.noc-carousel .noc-card {
  width: 100%;
  max-width: 340px;
}

.noc-carousel__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.25rem 0;
}

.noc-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 187, 175, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.noc-carousel__dot--active {
  background: var(--color-teal, #00BBAF);
  transform: scale(1.35);
}

/* â”€â”€ SVC SMS Inbox Preview (Google Messages style) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svc-sms-inbox {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.svc-sms-inbox__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 2px;
  flex-shrink: 0;
  background: #fff;
}

.svc-sms-inbox__edit {
  font-size: 11px;
  color: #007aff;
}

.svc-sms-inbox__menu-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #1a1a1a;
}

.svc-sms-inbox__hd {
  padding: 2px 12px 8px;
  flex-shrink: 0;
  background: #fff;
}

.svc-sms-inbox__hd-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.svc-sms-inbox__list {
  flex: 1;
  overflow: hidden;
}

.svc-sms-inbox__row {
  display: flex;
  align-items: flex-start;
  padding: 9px 12px;
  gap: 8px;
  border-bottom: 1px solid #f5f5f5;
}

.svc-sms-inbox__dot-wrap {
  width: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

.svc-sms-inbox__row--unread .svc-sms-inbox__sender {
  font-weight: 700;
}

.svc-sms-inbox__row--unread .svc-sms-inbox__preview {
  color: #222;
  font-weight: 500;
}

.svc-sms-inbox__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0;
}

.svc-sms-inbox__avatar--otp {
  background: #4285F4;
}

.svc-sms-inbox__avatar--delivery {
  background: #34A853;
}

.svc-sms-inbox__avatar--promo {
  background: #EA4335;
}

.svc-sms-inbox__avatar--bank {
  background: #C41E3A;
}

.svc-sms-inbox__body {
  flex: 1;
  min-width: 0;
}

.svc-sms-inbox__meta-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
}

.svc-sms-inbox__sender {
  font-size: 11px;
  color: #333;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.svc-sms-inbox__time {
  font-size: 9px;
  color: #888;
  flex-shrink: 0;
}

.svc-sms-inbox__preview-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.svc-sms-inbox__preview {
  font-size: 10px;
  color: #777;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.svc-sms-inbox__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a73e8;
  flex-shrink: 0;
}

.svc-sms-inbox__searchbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  flex-shrink: 0;
  background: #fff;
}

.svc-sms-inbox__search-pill {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 16px;
  background: #f0f0f0;
  color: #8a8a8e;
  font-size: 10px;
}

.svc-sms-inbox__compose {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #1a1a1a;
  flex-shrink: 0;
}

/* â”€â”€ SVC Gmail Inbox Preview â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svc-preview--email {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.svc-gmail-inbox {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.svc-gmail-inbox__search {
  display: flex;
  align-items: center;
  margin: 7px 8px;
  padding: 6px 10px;
  background: #f1f3f4;
  border-radius: 20px;
  gap: 7px;
  flex-shrink: 0;
}

.svc-gmail-inbox__menu {
  font-size: 14px;
  color: #444;
}

.svc-gmail-inbox__search-text {
  flex: 1;
  font-size: 10px;
  color: #777;
}

.svc-gmail-inbox__user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #4285F4;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.svc-gmail-inbox__section-label {
  font-size: 9px;
  font-weight: 700;
  color: #555;
  padding: 4px 12px 2px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  flex-shrink: 0;
}

.svc-gmail-inbox__cat-row {
  display: flex;
  align-items: center;
  padding: 5px 12px;
  gap: 8px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.svc-gmail-inbox__cat-icon {
  font-size: 12px;
}

.svc-gmail-inbox__cat-icon--blue {
  color: #4285F4;
}

.svc-gmail-inbox__cat-icon--green {
  color: #34A853;
}

.svc-gmail-inbox__cat-name {
  flex: 1;
  font-size: 11px;
  color: #333;
}

.svc-gmail-inbox__cat-badge {
  font-size: 9px;
  background: #4285F4;
  color: #fff;
  border-radius: 10px;
  padding: 1px 5px;
  font-weight: 600;
}

.svc-gmail-inbox__divider {
  height: 1px;
  background: #e8e8e8;
  margin: 3px 0;
  flex-shrink: 0;
}

.svc-gmail-inbox__email-row {
  display: flex;
  align-items: flex-start;
  padding: 6px 10px;
  gap: 8px;
  border-bottom: 1px solid #f5f5f5;
  flex-shrink: 0;
}

.svc-gmail-inbox__row-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}

.svc-gmail-inbox__row-avatar--j {
  background: #00066E;
}

.svc-gmail-inbox__row-avatar--b {
  background: #1A73E8;
}

.svc-gmail-inbox__row-avatar--p {
  background: #E94235;
}

.svc-gmail-inbox__row-body {
  flex: 1;
  min-width: 0;
}

.svc-gmail-inbox__row-sender {
  font-size: 11px;
  font-weight: 600;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.svc-gmail-inbox__row-check {
  font-size: 9px;
  color: #4285F4;
  vertical-align: middle;
}

.svc-gmail-inbox__row-subject {
  font-size: 10px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.svc-gmail-inbox__row-preview {
  font-size: 9.5px;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.svc-gmail-inbox__row-time {
  font-size: 9px;
  color: #888;
  flex-shrink: 0;
  margin-top: 2px;
}

.svc-gmail-inbox__spam-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 10px;
  color: #aaa;
  flex-shrink: 0;
}

.svc-gmail-inbox__spam-icon {
  font-size: 11px;
}

.svc-gmail-inbox__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: linear-gradient(to top, #fff 0%, transparent 100%);
  pointer-events: none;
}

/* â”€â”€ hp-email inbox animation (sceneEmail redesign) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hp-email-inbox__search {
  display: flex;
  align-items: center;
  margin: 8px 8px 4px;
  padding: 6px 10px;
  background: #f1f3f4;
  border-radius: 20px;
  gap: 7px;
}

.hp-email-inbox__menu {
  font-size: 14px;
  color: #444;
}

.hp-email-inbox__search-text {
  flex: 1;
  font-size: 9.5px;
  color: #777;
}

.hp-email-inbox__user-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #4285F4;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.hp-email-inbox__section-label {
  font-size: 8px;
  font-weight: 700;
  color: #555;
  padding: 4px 12px 2px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hp-email-inbox__cat-row {
  display: flex;
  align-items: center;
  padding: 5px 12px;
  gap: 7px;
  border-bottom: 1px solid #f0f0f0;
}

.hp-email-inbox__cat-icon {
  font-size: 11px;
}

.hp-email-inbox__cat-icon--blue {
  color: #4285F4;
}

.hp-email-inbox__cat-icon--green {
  color: #34A853;
}

.hp-email-inbox__cat-name {
  flex: 1;
  font-size: 10px;
  color: #333;
}

.hp-email-inbox__cat-badge {
  font-size: 8px;
  background: #4285F4;
  color: #fff;
  border-radius: 10px;
  padding: 1px 5px;
  font-weight: 600;
}

.hp-email-inbox__divider {
  height: 1px;
  background: #e8e8e8;
  margin: 3px 0;
}

.hp-email-inbox__email-row {
  display: flex;
  align-items: flex-start;
  padding: 6px 10px;
  gap: 7px;
  border-bottom: 1px solid #f5f5f5;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hp-email-inbox__email-row--hidden {
  opacity: 0;
  transform: translateY(6px);
}

.hp-email-inbox__row-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}

.hp-email-inbox__row-avatar--j {
  background: #00066E;
}

.hp-email-inbox__row-avatar--b {
  background: #1A73E8;
}

.hp-email-inbox__row-avatar--p {
  background: #E94235;
}

.hp-email-inbox__row-body {
  flex: 1;
  min-width: 0;
}

.hp-email-inbox__row-sender {
  font-size: 10px;
  font-weight: 600;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hp-email-inbox__row-check {
  font-size: 8px;
  color: #4285F4;
  vertical-align: middle;
}

.hp-email-inbox__row-subject {
  font-size: 9.5px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hp-email-inbox__row-preview {
  font-size: 9px;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hp-email-inbox__row-time {
  font-size: 8.5px;
  color: #888;
  flex-shrink: 0;
  margin-top: 2px;
}

.hp-email-inbox__spam-row {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  font-size: 9px;
  color: #aaa;
}

.hp-email-inbox__spam-icon {
  font-size: 10px;
}

/* â”€â”€ Gmail inbox â€” category row (2-line layout) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svc-gmail-inbox__cat-row {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  gap: 8px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.svc-gmail-inbox__cat-body {
  flex: 1;
  min-width: 0;
}

.svc-gmail-inbox__cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.svc-gmail-inbox__cat-name {
  font-size: 11px;
  font-weight: 700;
  color: #111;
  flex: 1;
}

.svc-gmail-inbox__cat-sub {
  font-size: 9.5px;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 1px;
}

.svc-gmail-inbox__cat-badge {
  font-size: 8.5px;
  font-weight: 700;
  border-radius: 10px;
  padding: 1px 6px;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.svc-gmail-inbox__cat-badge--orange {
  background: #F57C00;
}

.svc-gmail-inbox__cat-badge--green {
  background: #2E7D32;
}

.svc-gmail-inbox__cat-badge--blue {
  background: #1565C0;
}

.svc-gmail-inbox__cat-icon--orange {
  color: #F57C00;
}

.svc-gmail-inbox__cat-icon--gray {
  color: #9aa0a6;
  opacity: 0.7;
}

.svc-gmail-inbox__cat-badge--gray {
  background: none;
  color: #9aa0a6;
  opacity: 0.7;
  padding: 1px 0;
}

/* â”€â”€ Gmail inbox â€” email row (3-line layout) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svc-gmail-inbox__email-row {
  display: flex;
  align-items: flex-start;
  padding: 7px 10px;
  gap: 8px;
  border-bottom: 1px solid #f5f5f5;
  flex-shrink: 0;
}

.svc-gmail-inbox__row-body {
  flex: 1;
  min-width: 0;
}

.svc-gmail-inbox__row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 1px;
}

.svc-gmail-inbox__row-sender {
  font-size: 11px;
  font-weight: 700;
  color: #111;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.svc-gmail-inbox__row-date {
  font-size: 9px;
  color: #555;
  flex-shrink: 0;
  font-weight: 500;
}

.svc-gmail-inbox__row-subject {
  font-size: 10px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 1px;
}

.svc-gmail-inbox__row-preview-line {
  display: flex;
  align-items: center;
  gap: 4px;
}

.svc-gmail-inbox__row-preview {
  font-size: 9.5px;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.svc-gmail-inbox__row-star {
  font-size: 11px;
  color: #bbb;
  flex-shrink: 0;
}

/* â”€â”€ hp-email-inbox â€” category row (2-line layout) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hp-email-inbox__cat-row {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  gap: 7px;
  border-bottom: 1px solid #f0f0f0;
}

.hp-email-inbox__cat-body {
  flex: 1;
  min-width: 0;
}

.hp-email-inbox__cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.hp-email-inbox__cat-name {
  font-size: 10px;
  font-weight: 700;
  color: #111;
  flex: 1;
}

.hp-email-inbox__cat-sub {
  font-size: 9px;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 1px;
}

.hp-email-inbox__cat-badge {
  font-size: 8px;
  font-weight: 700;
  border-radius: 10px;
  padding: 1px 5px;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.hp-email-inbox__cat-badge--orange {
  background: #F57C00;
}

.hp-email-inbox__cat-badge--green {
  background: #2E7D32;
}

.hp-email-inbox__cat-badge--blue {
  background: #1565C0;
}

.hp-email-inbox__cat-icon--orange {
  color: #F57C00;
}

/* â”€â”€ hp-email-inbox â€” email row (3-line layout) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hp-email-inbox__email-row {
  display: flex;
  align-items: flex-start;
  padding: 6px 10px;
  gap: 7px;
  border-bottom: 1px solid #f5f5f5;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hp-email-inbox__email-row--hidden {
  opacity: 0;
  transform: translateY(6px);
}

.hp-email-inbox__row-body {
  flex: 1;
  min-width: 0;
}

.hp-email-inbox__row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 1px;
}

.hp-email-inbox__row-sender {
  font-size: 10px;
  font-weight: 700;
  color: #111;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.hp-email-inbox__row-date {
  font-size: 8.5px;
  color: #555;
  flex-shrink: 0;
  font-weight: 500;
}

.hp-email-inbox__row-subject {
  font-size: 9.5px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 1px;
}

.hp-email-inbox__row-preview-line {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hp-email-inbox__row-preview {
  font-size: 9px;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.hp-email-inbox__row-star {
  font-size: 10px;
  color: #bbb;
  flex-shrink: 0;
}

/* â”€â”€ Home hero title: -15% (solo primer secciÃ³n) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-hero .hero__title {
  font-size: clamp(24px, 6.8vw, 61px);
}

/* â”€â”€ Checklist items: mÃ¡s peso visual â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hp-ext-checklist {
  width: 240px;
  gap: 16px;
}

.hp-ext-cl__items {
  gap: 16px;
}

.hp-ext-cl__item {
  gap: 12px;
  align-items: flex-start;
}

.hp-ext-cl__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}

.hp-ext-cl__text {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
}

.hp-ext-cl__item--checked .hp-ext-cl__text {
  color: #fff;
  font-weight: 600;
}

.hp-ext-cl__name {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

/* â”€â”€ SVC panel: SMS y Email â€” phone frame que llena el espacio â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svc-preview--sms,
.svc-preview--email {
  align-items: stretch;
  justify-content: flex-start;
  background: transparent;
  overflow: hidden;
}

.svc-preview--sms .sms-phone__screen,
.svc-preview--email .sms-phone__screen {
  border-radius: 28px;
  border: 1.5px solid rgba(0, 0, 0, 0.13);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}


/* â”€â”€ Japifon icon avatar en SMS y Email SVC previews â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svc-sms-inbox__avatar--img {
  background: transparent;
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;
}

.svc-sms-inbox__avatar--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.svc-gmail-inbox__row-avatar--img {
  background: transparent;
  overflow: hidden;
  flex-shrink: 0;
}

.svc-gmail-inbox__row-avatar--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* ── JapiConnect event detail app preview ── */
.svc-preview--connect {
  background: #fff;
}

.svc-conn-app {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f7f8fa;
  overflow: hidden;
}

.svc-conn-app__nav {
  display: flex;
  align-items: center;
  padding: 7px 12px;
  background: #fff;
  flex-shrink: 0;
}

.svc-conn-app__nav-back {
  font-size: 13px;
  color: #0064FF;
}

.svc-conn-app__nav-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.svc-conn-app__nav-title {
  font-size: 12px;
  font-weight: 700;
  color: #111;
}

.svc-conn-app__nav-sub {
  font-size: 10px;
  font-weight: 600;
  color: #0064FF;
}

.svc-conn-app__nav-drop {
  font-size: 11px;
  color: #aaa;
}

.svc-conn-app__cover-wrap {
  position: relative;
  width: 100%;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
}

.svc-conn-app__cover-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.95));
  pointer-events: none;
}

.svc-conn-app__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-conn-app__body {
  flex: 1;
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.svc-conn-app__info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.svc-conn-app__info-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #e8eeff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #0064FF;
  flex-shrink: 0;
}

.svc-conn-app__info-detail {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.svc-conn-app__info-label {
  font-size: 8.5px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.svc-conn-app__info-val {
  font-size: 11px;
  font-weight: 700;
  color: #111;
}

.svc-conn-app__info-val--link {
  color: #0064FF;
}

.svc-conn-app__info-time {
  font-size: 9.5px;
  color: #666;
}

.svc-conn-app__section-hd {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px 4px;
  font-size: 11px;
  font-weight: 700;
  color: #111;
  background: #f7f8fa;
  flex-shrink: 0;
}

.svc-conn-app__section-hd i {
  font-size: 12px;
  color: #0064FF;
}

.svc-conn-app__ticket {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.svc-conn-app__ticket-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.svc-conn-app__ticket-name {
  font-size: 11px;
  font-weight: 700;
  color: #111;
}

.svc-conn-app__ticket-tag {
  font-size: 8px;
  font-weight: 700;
  background: #e8eeff;
  color: #0064FF;
  border-radius: 3px;
  padding: 1px 4px;
  display: inline-block;
  width: fit-content;
}

.svc-conn-app__ticket-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.svc-conn-app__ticket-price {
  font-size: 11px;
  font-weight: 800;
  color: #00bfb3;
}

.svc-conn-app__ticket-avail {
  font-size: 8.5px;
  color: #888;
  white-space: nowrap;
}

.svc-conn-app__ticket-btn {
  font-size: 8.5px;
  font-weight: 700;
  background: #00bfb3;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 5px 8px;
  cursor: default;
  white-space: nowrap;
  flex-shrink: 0;
}

.svc-conn-app__about {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #fff;
  margin-top: 5px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.svc-conn-app__about-icon {
  font-size: 13px;
  color: #0064FF;
}

.svc-conn-app__about>span {
  flex: 1;
  font-size: 11px;
  font-weight: 700;
  color: #111;
}

.svc-conn-app__about-arrow {
  font-size: 11px;
  color: #aaa;
}

.svc-conn-app__bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6px 0;
  background: #fff;
  border-top: 1px solid #eee;
  flex-shrink: 0;
  margin-top: auto;
}

.svc-conn-app__bottom-nav i {
  font-size: 15px;
  color: #ccc;
}

.svc-conn-app__bnav-active {
  color: #0064FF !important;
}