:root {
  --pulse-blue: #0a3aa8;
  --pulse-blue-deep: #06256d;
  --pulse-green: #04ff1b;
  --pulse-green-dark: #00d912;
  --pulse-ink: #08111f;
  --pulse-soft: #eef4ff;
  --pulse-line: rgba(7, 24, 61, 0.12);
  --pulse-text: #10213f;
  --pulse-text-soft: #566686;
  --pulse-white: #ffffff;
  --shadow-soft: 0 18px 40px rgba(6, 37, 109, 0.16);
  --shadow-strong: 0 22px 70px rgba(6, 37, 109, 0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-duration: 0.72s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--pulse-text);
  background:
    radial-gradient(circle at top right, rgba(4, 255, 27, 0.12), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #edf3ff 42%, #f8fbff 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 16px 0;
  min-height: 140px;
  overflow: visible;
  backdrop-filter: blur(10px);
  background: linear-gradient(90deg, #0b2f88 0%, #0f4acf 55%, #0b2f88 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(6, 37, 109, 0.18);
}

.header-row {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.brand img {
  width: clamp(160px, 18vw, 240px);
  width: auto;
  max-height: 104px;
  height: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  align-self: center;
}

.selected-city-pill {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 4px;
  max-width: 340px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--pulse-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.selected-city-pill[hidden] {
  display: none !important;
}

.selected-city-label {
  width: 100%;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

.selected-city-pill strong {
  font-size: 0.95rem;
}

.selected-city-action {
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 700;
  color: var(--pulse-green);
  background: transparent;
  cursor: pointer;
}

.selected-city-action:hover {
  color: var(--pulse-white);
}

/* Bloco reutilizável do seletor de cidade */
.city-picker {
  display: none;
}

.city-gate {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.city-gate[hidden] {
  display: none !important;
}

.city-gate.is-visible {
  opacity: 1;
}

.city-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 17, 31, 0.72);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.city-gate-card {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(4, 255, 27, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 255, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-strong);
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition:
    opacity 0.28s var(--motion-ease),
    transform 0.28s var(--motion-ease);
}

.city-gate.is-visible .city-gate-backdrop {
  opacity: 1;
}

.city-gate.is-visible .city-gate-card {
  opacity: 1;
  transform: none;
}

.city-gate-kicker,
.city-gate-card h2,
.city-gate-copy,
.city-gate-note {
  margin: 0;
}

.city-gate-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pulse-blue);
}

.city-gate-card h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 0.98;
  color: var(--pulse-ink);
}

.city-gate-copy,
.city-gate-note {
  color: var(--pulse-text-soft);
  line-height: 1.6;
}

.city-gate-select {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--pulse-ink);
}

.city-gate-select span {
  font-weight: 600;
}

.city-gate-select select,
.lead-form input,
.lead-form select {
  width: 100%;
  border: 1px solid var(--pulse-line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--pulse-text);
  background: var(--pulse-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.city-gate-select select {
  min-width: 100%;
}

.city-gate-select select:focus,
.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: rgba(4, 255, 27, 0.55);
  box-shadow: 0 0 0 4px rgba(4, 255, 27, 0.16);
}

body.city-gate-open {
  overflow: hidden;
}

body.tour-mobile-open {
  overflow: hidden;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
  box-shadow: none;
}

.button-primary {
  color: var(--pulse-blue-deep);
  background: linear-gradient(135deg, var(--pulse-green) 0%, #75ff6b 100%);
  box-shadow: 0 14px 30px rgba(4, 255, 27, 0.28);
}

.button-primary::after {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -25%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-180%) skewX(-18deg);
  transition: transform 0.75s var(--motion-ease);
}

.button-primary:hover {
  background: linear-gradient(135deg, #22ff37 0%, #89ff80 100%);
}

.button-primary:hover::after {
  transform: translateX(360%) skewX(-18deg);
}

.button-secondary {
  color: var(--pulse-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-ghost,
.button-plan {
  color: var(--pulse-blue);
  background: rgba(10, 58, 168, 0.08);
}

.button-block {
  width: 100%;
}

#cityGateContinue {
  display: none;
}

.tour-overlay {
  position: fixed;
  inset: 0;
  z-index: 88;
  background: rgba(8, 17, 31, 0.56);
  backdrop-filter: blur(4px);
  touch-action: manipulation;
}

.tour-popover {
  position: fixed;
  z-index: 90;
  width: min(360px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  display: grid;
  gap: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px 20px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(10, 58, 168, 0.12);
  box-shadow: 0 24px 54px rgba(6, 37, 109, 0.22);
}

.tour-mobile-sheet {
  position: fixed;
  z-index: 90;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  width: auto;
  max-height: calc(100dvh - 24px - env(safe-area-inset-bottom));
  display: grid;
  gap: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px 20px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(10, 58, 168, 0.12);
  box-shadow: 0 24px 54px rgba(6, 37, 109, 0.22);
}

.tour-mobile-sheet[hidden] {
  display: none !important;
}

.tour-step-label,
.tour-popover h3,
.tour-popover p {
  margin: 0;
}

.tour-step-label {
  color: var(--pulse-blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-popover h3 {
  color: var(--pulse-blue-deep);
  font-size: 1.5rem;
  line-height: 1.08;
}

.tour-popover p {
  color: var(--pulse-text-soft);
  line-height: 1.6;
}

.tour-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}

.tour-actions .button {
  min-height: 46px;
  flex: 1;
  touch-action: manipulation;
}

.tour-skip {
  color: var(--pulse-blue-deep);
  background: rgba(10, 58, 168, 0.08);
  border: 1px solid rgba(10, 58, 168, 0.1);
}

.tour-highlight {
  position: relative;
  z-index: 89 !important;
  box-shadow:
    0 0 0 3px rgba(4, 255, 27, 0.85),
    0 20px 48px rgba(6, 37, 109, 0.24) !important;
}

.tour-highlight.plan-builder-section,
.tour-highlight.plans-section {
  border-radius: 28px;
}

.hero-section {
  padding: 56px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.hero-copy,
.offer-card,
.plan-card,
.proof-card,
.lead-form,
.faq-list details,
.site-footer {
  box-shadow: var(--shadow-soft);
}

.hero-copy,
.offer-card,
.lead-form,
.proof-card {
  background: var(--pulse-white);
  border: 1px solid rgba(10, 58, 168, 0.08);
}

.hero-copy {
  display: flex;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
}

.hero-copy-inner {
  width: 100%;
  max-width: 980px;
}

.eyebrow,
.section-kicker,
.offer-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pulse-blue);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.lead-copy h2,
.proof-copy h2 {
  margin: 14px 0 12px;
  line-height: 1.05;
  color: var(--pulse-ink);
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.hero-title-static {
  margin: 0 0 20px;
  color: var(--pulse-ink);
  font-size: clamp(2.25rem, 3.4vw, 3.125rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-title-static span {
  display: block;
}

.hero-title-line {
  display: block;
  width: fit-content;
  max-width: none;
  white-space: nowrap;
  color: var(--pulse-blue-deep);
}

.hero-title-accent {
  color: var(--pulse-blue-deep);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-title-line {
    background: linear-gradient(90deg, #0b2f88 0%, #0f4acf 55%, #0b2f88 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  .hero-title-accent {
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.hero-subtitle-strong {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.28;
  color: var(--pulse-ink);
}

.hero-subtitle-strong strong {
  color: inherit;
  font-weight: inherit;
}

.hero-subtitle,
.hero-note,
.section-heading p,
.lead-copy p,
.proof-copy p,
.offer-description,
.plan-card p,
.proof-card p,
.faq-list p,
.site-footer p {
  color: var(--pulse-text-soft);
  line-height: 1.65;
}

.hero-points,
.lead-points,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points,
.lead-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.hero-points li,
.lead-points li {
  position: relative;
  padding-left: 20px;
}

.hero-points li::before,
.lead-points li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pulse-green);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 18px;
}

body.motion-ready .hero-reveal,
body.motion-ready .reveal-block {
  opacity: 0;
  transform: translateY(26px);
}

body.motion-ready .hero-reveal.is-visible,
body.motion-ready .reveal-block.is-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity var(--motion-duration) var(--motion-ease),
    transform var(--motion-duration) var(--motion-ease);
}

body.motion-ready .reveal-step-2.is-visible {
  transition-delay: 0.12s;
}

body.motion-ready .reveal-step-3.is-visible {
  transition-delay: 0.22s;
}

body.motion-ready .reveal-step-4.is-visible {
  transition-delay: 0.32s;
}

body.motion-ready .reveal-step-5.is-visible {
  transition-delay: 0.18s;
}

.pulse-highlight {
  box-shadow:
    0 0 0 1px rgba(4, 255, 27, 0.24),
    0 18px 40px rgba(4, 255, 27, 0.18) !important;
}

.selected-city-pill.pulse-highlight {
  border-color: rgba(4, 255, 27, 0.42);
  box-shadow:
    0 0 0 1px rgba(4, 255, 27, 0.28),
    0 14px 30px rgba(4, 255, 27, 0.12) !important;
}

.offer-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(4, 255, 27, 0.16), transparent 24%),
    linear-gradient(180deg, #0b2f88 0%, #0f4acf 100%);
  color: var(--pulse-white);
  box-shadow: var(--shadow-strong);
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: auto -28px -48px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(4, 255, 27, 0.14);
}

.offer-card .offer-label,
.offer-card .offer-description {
  color: rgba(255, 255, 255, 0.9);
}

.offer-title {
  display: block;
  margin: 8px 0 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
  color: var(--pulse-white);
}

.offer-highlights {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mini-stat {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-stat-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
}

.mini-stat-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.trust-strip {
  padding: 18px 0 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.trust-strip-grid > div {
  position: relative;
  overflow: hidden;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 58, 168, 0.08);
  text-align: center;
  color: var(--pulse-blue-deep);
  font-weight: 700;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.trust-strip-grid > div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(4, 255, 27, 0.18) 0%, rgba(4, 255, 27, 0) 70%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.trust-strip-grid > div:hover {
  transform: translateY(-4px);
  border-color: rgba(4, 255, 27, 0.42);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 32px rgba(4, 255, 27, 0.18);
}

.trust-strip-grid > div:hover::after {
  opacity: 1;
}

.trust-strip-grid > div.trust-strip-highlight {
  border-color: rgba(10, 58, 168, 0.18);
  box-shadow: 0 14px 28px rgba(10, 58, 168, 0.1);
}

.trust-strip-grid > div span {
  display: inline-block;
  background: linear-gradient(90deg, #0b2f88 0%, #0f4acf 55%, #0b2f88 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.plans-section,
.proof-section,
.lead-section,
.faq-section {
  padding: 72px 0;
}

.plans-section {
  padding-top: 24px;
}

.plan-builder-section {
  padding: 0 0 44px;
}

.plan-builder-shell {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(4, 255, 27, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
  border: 1px solid rgba(10, 58, 168, 0.1);
  box-shadow: var(--shadow-soft);
}

.plan-builder-heading {
  max-width: 820px;
}

.plan-builder-heading h2 {
  margin: 14px 0 10px;
  color: var(--pulse-blue-deep);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.plan-builder-heading p {
  margin: 0;
  color: var(--pulse-text-soft);
  line-height: 1.62;
}

.plan-builder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.plan-builder-option {
  display: grid;
  gap: 18px;
  min-height: 188px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(10, 58, 168, 0.12);
  background:
    linear-gradient(180deg, rgba(10, 58, 168, 0.03) 0%, rgba(255, 255, 255, 0.98) 100%);
  color: var(--pulse-text);
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.plan-builder-option:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 58, 168, 0.22);
  box-shadow: 0 18px 34px rgba(6, 37, 109, 0.12);
}

.plan-builder-option.is-selected {
  border-color: rgba(4, 255, 27, 0.42);
  background:
    linear-gradient(180deg, rgba(4, 255, 27, 0.14) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 20px 36px rgba(4, 255, 27, 0.14);
}

.plan-builder-option-mobile {
  cursor: default;
}

.plan-builder-option-watch {
  cursor: default;
}

.plan-builder-option-head {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 54px;
}

.plan-builder-option-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background-color: rgba(10, 58, 168, 0.08);
  border: 1px solid rgba(10, 58, 168, 0.14);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

.plan-builder-icon-phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230a3aa8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.78 19.78 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.78 19.78 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.78.62 2.62a2 2 0 0 1-.45 2.11L8 9.77a16 16 0 0 0 6.23 6.23l1.32-1.28a2 2 0 0 1 2.11-.45c.84.29 1.72.5 2.62.62A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
}

.plan-builder-icon-mobile {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230a3aa8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='2' width='10' height='20' rx='2'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E");
}

.plan-builder-icon-watch {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230a3aa8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='9 7 17 12 9 17 9 7'/%3E%3Crect x='3' y='5' width='18' height='14' rx='3'/%3E%3C/svg%3E");
}

.plan-builder-option-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.plan-builder-option-label {
  margin-bottom: 0;
  color: var(--pulse-blue-deep);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.1;
}

.plan-builder-option-subtitle {
  margin-top: 0;
  color: rgba(10, 58, 168, 0.66);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
}

.fixed-plan-copy {
  margin-top: 0;
  color: var(--pulse-text-soft);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.45;
}

.plan-builder-option-description {
  margin-top: 0;
  color: var(--pulse-text-soft);
  line-height: 1.55;
}

.mobile-plan-featured {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(10, 58, 168, 0.12);
  border-radius: 18px;
  font: inherit;
  color: var(--pulse-text);
  text-align: left;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.mobile-plan-featured:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 58, 168, 0.22);
  box-shadow: 0 14px 26px rgba(6, 37, 109, 0.08);
}

.mobile-plan-featured.is-selected {
  border-color: rgba(4, 255, 27, 0.48);
  background: linear-gradient(180deg, rgba(4, 255, 27, 0.12) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 16px 28px rgba(4, 255, 27, 0.12);
}

.fixed-plan-featured,
.pulsewatch-featured,
.pulsewatch-option {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(10, 58, 168, 0.12);
  border-radius: 18px;
  font: inherit;
  color: var(--pulse-text);
  text-align: left;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.pulsewatch-featured:hover,
.pulsewatch-option:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 58, 168, 0.22);
  box-shadow: 0 14px 26px rgba(6, 37, 109, 0.08);
}

.plan-builder-option.is-selected .fixed-plan-featured,
.pulsewatch-featured.is-selected,
.pulsewatch-option.is-selected {
  border-color: rgba(4, 255, 27, 0.48);
  background: linear-gradient(180deg, rgba(4, 255, 27, 0.12) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 16px 28px rgba(4, 255, 27, 0.12);
}

.pulsewatch-featured-badge,
.mobile-plan-featured-badge {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 32px;
  padding: 4px 12px;
  border-radius: 999px;
  box-sizing: border-box;
  color: var(--pulse-blue);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(10, 58, 168, 0.08);
}

.mobile-plan-option-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--pulse-blue-deep);
}

.mobile-plan-option-top strong {
  font-size: 1rem;
}

.mobile-plan-option-top span {
  font-size: 0.94rem;
  font-weight: 700;
}

.mobile-plan-option-meta,
.mobile-plan-option-apps {
  color: var(--pulse-text-soft);
  font-size: 0.88rem;
  line-height: 1.4;
}

.mobile-plan-picker {
  position: relative;
}

.mobile-plan-picker-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(10, 58, 168, 0.14);
  border-radius: 18px;
  font: inherit;
  font-weight: 700;
  color: var(--pulse-blue-deep);
  text-align: left;
  background: rgba(255, 255, 255, 0.98);
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(6, 37, 109, 0.08);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.mobile-plan-picker-trigger span {
  color: var(--pulse-blue);
}

.mobile-plan-picker-trigger:hover {
  border-color: rgba(10, 58, 168, 0.22);
}

.mobile-plan-picker-trigger[aria-expanded="true"] {
  border-color: rgba(4, 255, 27, 0.55);
  box-shadow: 0 0 0 4px rgba(4, 255, 27, 0.14);
}

.mobile-plan-picker-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.22s ease;
}

.mobile-plan-picker-trigger[aria-expanded="true"] .mobile-plan-picker-caret {
  transform: rotate(-135deg) translateY(-1px);
}

.mobile-plan-picker-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 6;
  display: grid;
  gap: 0;
  max-height: min(360px, 52vh);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(10, 58, 168, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 38px rgba(6, 37, 109, 0.14);
}

.mobile-plan-picker-panel[hidden] {
  display: none !important;
}

.mobile-plan-picker-option {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid rgba(10, 58, 168, 0.1);
  font: inherit;
  color: var(--pulse-text);
  text-align: left;
  background: rgba(255, 255, 255, 0.98);
  cursor: pointer;
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.mobile-plan-picker-option:last-child {
  border-bottom: 0;
}

.mobile-plan-picker-option:hover,
.mobile-plan-picker-option.is-selected {
  background: linear-gradient(180deg, rgba(10, 58, 168, 0.05) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.mobile-plan-option-detail {
  color: var(--pulse-text-soft);
  font-size: 0.84rem;
  line-height: 1.35;
}

.pulsewatch-picker {
  position: relative;
}

.pulsewatch-picker-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(10, 58, 168, 0.14);
  border-radius: 14px;
  font: inherit;
  font-weight: 700;
  color: var(--pulse-blue);
  text-align: left;
  background: rgba(255, 255, 255, 0.98);
  cursor: pointer;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.pulsewatch-picker-trigger:hover {
  border-color: rgba(10, 58, 168, 0.22);
}

.pulsewatch-picker-trigger[aria-expanded="true"] {
  border-color: rgba(4, 255, 27, 0.55);
  box-shadow: 0 0 0 4px rgba(4, 255, 27, 0.14);
}

.pulsewatch-picker-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.22s ease;
}

.pulsewatch-picker-trigger[aria-expanded="true"] .pulsewatch-picker-caret {
  transform: rotate(-135deg) translateY(-1px);
}

.pulsewatch-picker-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: calc(100% + 8px);
  z-index: 6;
  display: grid;
  gap: 0;
  max-height: min(360px, 52vh);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(10, 58, 168, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 38px rgba(6, 37, 109, 0.14);
}

.pulsewatch-picker-panel[hidden] {
  display: none !important;
}

.pulsewatch-option {
  gap: 4px;
  padding: 12px 14px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(10, 58, 168, 0.1);
  box-shadow: none;
}

.pulsewatch-option:last-child {
  border-bottom: 0;
}

.pulsewatch-option-detail {
  color: var(--pulse-text-soft);
  font-size: 0.8rem;
  line-height: 1.28;
}

.plan-builder-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 24px;
  align-items: center;
  padding: 28px 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(10, 58, 168, 0.08), transparent 28%),
    linear-gradient(180deg, #0b2f88 0%, #0f4acf 100%);
  color: var(--pulse-white);
  box-shadow: var(--shadow-strong);
}

.plan-builder-summary-copy {
  min-width: 0;
}

.plan-builder-summary-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-builder-summary h3 {
  margin: 12px 0 12px;
  font-size: clamp(2.1rem, 2.8vw, 2.9rem);
  line-height: 1.04;
  color: var(--pulse-white);
}

.plan-builder-summary-copy p:last-of-type {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.64;
  font-size: 1.02rem;
}

.plan-builder-actions {
  display: grid;
  gap: 14px;
}

#planBuilderWhatsappCta {
  position: relative;
  isolation: isolate;
  box-shadow:
    0 0 0 2px rgba(114, 255, 116, 0.28),
    0 0 18px rgba(69, 255, 83, 0.38),
    0 0 36px rgba(69, 255, 83, 0.18);
  animation: neon-outline-pulse 1.8s ease-in-out infinite;
}

#planBuilderWhatsappCta::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(163, 255, 164, 0.9);
  opacity: 0.8;
  box-shadow:
    0 0 8px rgba(114, 255, 116, 0.9),
    0 0 18px rgba(69, 255, 83, 0.55);
  animation: neon-outline-ring 1.8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

#planBuilderInternetOnly {
  justify-self: center;
  min-height: 46px;
  padding: 10px 20px;
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

#planBuilderInternetOnly:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

@keyframes neon-outline-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 2px rgba(114, 255, 116, 0.2),
      0 0 14px rgba(69, 255, 83, 0.28),
      0 0 28px rgba(69, 255, 83, 0.14);
  }

  50% {
    box-shadow:
      0 0 0 2px rgba(114, 255, 116, 0.42),
      0 0 24px rgba(69, 255, 83, 0.5),
      0 0 48px rgba(69, 255, 83, 0.24);
  }
}

@keyframes neon-outline-ring {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.01);
  }
}

.plan-card-selected {
  border-color: rgba(10, 58, 168, 0.4);
  box-shadow: 0 20px 40px rgba(6, 37, 109, 0.16);
}

.plans-section .container {
  width: min(calc(100% - 32px), 1320px);
}

.section-heading {
  max-width: 780px;
}

.plans-grid,
.proof-cards {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.plans-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(10, 58, 168, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(4, 255, 27, 0.14) 0%, rgba(4, 255, 27, 0) 68%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(4, 255, 27, 0.42);
  box-shadow: 0 18px 38px rgba(4, 255, 27, 0.18);
}

.plan-card:hover::after {
  opacity: 1;
}

.plan-card-featured {
  position: relative;
  background: linear-gradient(180deg, rgba(4, 255, 27, 0.08) 0%, rgba(255, 255, 255, 0.98) 22%, #ffffff 100%);
  border-color: rgba(4, 255, 27, 0.56);
  box-shadow: 0 24px 52px rgba(6, 37, 109, 0.2);
  transform: translateY(-8px);
}

.plan-badge {
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 58, 168, 0.08);
  color: var(--pulse-blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.plan-card-top {
  padding: 18px 16px 12px;
  text-align: center;
}

.plan-ribbon {
  display: none;
  margin: -10px auto 12px;
  padding: 8px 14px;
  border-radius: 14px;
  background: var(--pulse-blue);
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
}

.plan-card:not(.plan-card-featured) .plan-ribbon {
  background: rgba(10, 58, 168, 0.92);
}

.plan-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.plan-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(10, 58, 168, 0.22);
  border-radius: 999px;
  background-color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}

.plan-icon-fiber {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230a3aa8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.55a11 11 0 0 1 14.08 0'/%3E%3Cpath d='M1.42 9a16 16 0 0 1 21.16 0'/%3E%3Cpath d='M8.53 16.11a6 6 0 0 1 6.95 0'/%3E%3Cline x1='12' y1='20' x2='12.01' y2='20'/%3E%3C/svg%3E");
}

.plan-icon-install {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230a3aa8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 4h10a3 3 0 0 1 3 3v13H8a3 3 0 0 0-3 3Z'/%3E%3Cpath d='M8 4v16'/%3E%3Cpath d='M11 8h4'/%3E%3Cpath d='M11 12h4'/%3E%3C/svg%3E");
}

.plan-icon-support {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230a3aa8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12a8 8 0 0 1 16 0'/%3E%3Crect x='3' y='11' width='4' height='7' rx='2'/%3E%3Crect x='17' y='11' width='4' height='7' rx='2'/%3E%3Cpath d='M21 18a3 3 0 0 1-3 3h-3'/%3E%3C/svg%3E");
}

.plan-label {
  margin: 0 0 8px;
  font-size: 0.98rem;
  color: var(--pulse-ink);
  font-weight: 500;
}

.plan-speed {
  margin: 0;
  line-height: 0.9;
}

.plan-speed strong,
.plan-speed span {
  display: block;
  font-weight: 800;
}

.plan-speed strong {
  font-size: clamp(3.2rem, 3.5vw, 4.4rem);
  color: var(--pulse-blue-deep);
}

.plan-speed span {
  font-size: clamp(1.65rem, 1.9vw, 2.35rem);
  color: var(--pulse-blue);
  text-transform: uppercase;
}

.plan-summary {
  margin: 18px 0 0;
  min-height: 70px;
}

.plan-divider {
  width: calc(100% - 36px);
  height: 1px;
  margin: 0 auto;
  background: rgba(10, 58, 168, 0.16);
}

.plan-benefits {
  display: grid;
  gap: 8px;
  width: calc(100% - 32px);
  max-width: 240px;
  margin: 0 auto;
  padding: 14px 0 0 20px;
  flex: 1;
  list-style: disc;
}

.plan-footer {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, rgba(10, 58, 168, 0.04) 0%, rgba(10, 58, 168, 0.08) 100%);
}

.plan-post-promo-note {
  margin: -2px 0 0;
  color: var(--pulse-text-soft) !important;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: var(--pulse-ink);
}

.plan-currency {
  font-size: 1rem;
  font-weight: 700;
}

.plan-price-value {
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  line-height: 1;
  font-weight: 800;
  color: var(--pulse-ink);
}

.plan-price-period {
  font-size: 1rem;
  color: var(--pulse-ink);
}

.plan-price-label,
.plan-price,
.plan-price-note {
  margin: 0;
}

.plan-price-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--pulse-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.plan-price {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1;
  font-weight: 800;
  color: var(--pulse-blue-deep);
}

.plan-price-note {
  min-height: 44px;
}

.plan-card-featured .plan-badge {
  background: rgba(4, 255, 27, 0.14);
  color: var(--pulse-blue-deep);
}

.plan-card-featured .plan-footer {
  background: linear-gradient(180deg, rgba(4, 255, 27, 0.08) 0%, rgba(10, 58, 168, 0.06) 100%);
}

.plans-grid .button-plan {
  color: var(--pulse-blue-deep);
  background: linear-gradient(135deg, var(--pulse-green) 0%, #7cff75 100%);
  box-shadow: 0 14px 28px rgba(4, 255, 27, 0.24);
  width: 100%;
}

.plans-grid .button-plan:hover {
  background: linear-gradient(135deg, #1cff31 0%, #8fff88 100%);
}

.benefit-highlight {
  color: var(--pulse-blue);
  font-weight: 700;
}

.plan-benefits li {
  width: 100%;
  font-size: 0.95rem;
  line-height: 1.2;
  padding-left: 0;
  text-align: left;
  word-break: normal;
  overflow-wrap: break-word;
  position: static;
}

.plan-benefits li::before {
  display: none;
}

.plan-benefits li::marker {
  color: var(--pulse-green);
}

.plan-card h3,
.proof-card h3,
.site-footer h3 {
  margin: 0;
  color: var(--pulse-ink);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  flex: 1;
}

.combo-section {
  padding: 10px 0 44px;
}

.combo-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(340px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(28px, 3vw, 42px);
  padding: clamp(30px, 3.6vw, 44px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(4, 255, 27, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, #061748 0%, #0b2f88 44%, #114fe0 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
}

.combo-shell::before,
.combo-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.combo-shell::before {
  top: -72px;
  right: -10px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
}

.combo-shell::after {
  left: 46%;
  bottom: -120px;
  width: 240px;
  height: 240px;
  background: rgba(4, 255, 27, 0.08);
}

.combo-visual,
.combo-copy {
  position: relative;
  z-index: 1;
}

.combo-visual {
  min-height: 500px;
}

.combo-visual-blob,
.combo-visual-wave {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.combo-visual-blob-a {
  top: -26px;
  left: 10px;
  width: 210px;
  height: 210px;
  background: rgba(255, 255, 255, 0.08);
}

.combo-visual-blob-b {
  right: 30px;
  bottom: 52px;
  width: 140px;
  height: 140px;
  background: rgba(4, 255, 27, 0.08);
}

.combo-visual-wave {
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(12deg);
}

.combo-visual-wave-a {
  top: -44px;
  left: 34px;
  width: 280px;
  height: 500px;
}

.combo-visual-wave-b {
  top: 16px;
  right: 14px;
  width: 230px;
  height: 400px;
}

.combo-sim-card {
  position: absolute;
  width: 272px;
  padding: 14px 16px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(22, 87, 255, 0.92) 0%, rgba(13, 55, 173, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 42px rgba(2, 10, 36, 0.28);
}

.combo-sim-card-back {
  top: 108px;
  left: 10px;
  transform: rotate(-8deg);
}

.combo-sim-card-front {
  top: 78px;
  left: 128px;
  transform: rotate(-4deg);
}

.combo-sim-topline,
.combo-sim-label {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.combo-sim-logo {
  width: 148px;
  margin-top: 10px;
  filter: drop-shadow(0 8px 16px rgba(3, 10, 38, 0.18));
}

.combo-sim-copy {
  max-width: 15ch;
  margin: 10px 0 0;
  color: var(--pulse-white);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.24;
}

.combo-sim-copy-highlight {
  max-width: 12ch;
}

.combo-sim-chip {
  position: absolute;
  top: 54px;
  right: 20px;
  width: 60px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eceff7 0%, #aab6d2 100%);
  box-shadow: inset 0 0 0 1px rgba(7, 24, 61, 0.12);
}

.combo-sim-chip::before,
.combo-sim-chip::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 9px;
  background: rgba(7, 24, 61, 0.14);
}

.combo-sim-chip::before {
  left: 18px;
}

.combo-sim-chip::after {
  right: 18px;
}

.combo-phone-device {
  position: absolute;
  left: 70px;
  bottom: 72px;
  width: 310px;
  height: 248px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 340'%3E%3Cdefs%3E%3ClinearGradient id='body' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%23353841'/%3E%3Cstop offset='1' stop-color='%23161a22'/%3E%3C/linearGradient%3E%3ClinearGradient id='handset' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%233b404a'/%3E%3Cstop offset='1' stop-color='%23171b22'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M70 115h255c18 0 32 14 32 32v130c0 18-14 32-32 32H108c-22 0-38-18-38-40V115Z' fill='url(%23body)'/%3E%3Cpath d='M128 57c23-25 55-38 87-38s64 13 87 38l27 41c7 10 3 24-8 30l-18 9c-8 4-17 3-24-3l-29-24c-11-9-24-14-38-14s-27 5-38 14l-29 24c-7 6-16 7-24 3l-18-9c-11-6-15-20-8-30l33-41Z' fill='url(%23handset)'/%3E%3Crect x='208' y='154' width='86' height='74' rx='10' fill='%23272d39'/%3E%3Cg fill='%23070f1f'%3E%3Ccircle cx='175' cy='176' r='10'/%3E%3Ccircle cx='210' cy='176' r='10'/%3E%3Ccircle cx='245' cy='176' r='10'/%3E%3Ccircle cx='175' cy='206' r='10'/%3E%3Ccircle cx='210' cy='206' r='10'/%3E%3Ccircle cx='245' cy='206' r='10'/%3E%3Ccircle cx='175' cy='236' r='10'/%3E%3Ccircle cx='210' cy='236' r='10'/%3E%3Ccircle cx='245' cy='236' r='10'/%3E%3C/g%3E%3Crect x='310' y='154' width='16' height='104' rx='4' fill='%23f3f5f8'/%3E%3Crect x='332' y='154' width='16' height='104' rx='4' fill='%23f3f5f8'/%3E%3Cpath d='M96 307c-20 0-35 14-35 34 0 6 2 12 4 17' fill='none' stroke='%2313161d' stroke-width='16' stroke-linecap='round'/%3E%3Cpath d='M112 316c-22 7-39 23-47 44' fill='none' stroke='%23101016' stroke-width='12' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: drop-shadow(0 24px 34px rgba(1, 5, 20, 0.38));
}

.combo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--pulse-white);
  min-width: 0;
}

.combo-kicker {
  color: rgba(255, 255, 255, 0.8);
}

.combo-copy h2 {
  max-width: 14ch;
  margin: 14px 0 14px;
  font-size: clamp(2.5rem, 3.5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--pulse-white);
  text-wrap: balance;
}

.combo-copy p {
  max-width: 40ch;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.88);
}

.combo-feature-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.combo-feature-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.combo-feature-item strong,
.combo-feature-item span {
  display: block;
}

.combo-feature-item strong {
  color: var(--pulse-white);
  font-size: 1rem;
}

.combo-feature-item span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.42;
}

.combo-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 24px rgba(4, 8, 25, 0.16);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 26px 26px;
}

.combo-icon-fiber {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2304ff1b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.55a11 11 0 0 1 14.08 0'/%3E%3Cpath d='M1.42 9a16 16 0 0 1 21.16 0'/%3E%3Cpath d='M8.53 16.11a6 6 0 0 1 6.95 0'/%3E%3Cline x1='12' y1='20' x2='12.01' y2='20'/%3E%3C/svg%3E");
}

.combo-icon-phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2304ff1b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.78 19.78 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.78 19.78 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.78.62 2.62a2 2 0 0 1-.45 2.11L8 9.77a16 16 0 0 0 6.23 6.23l1.32-1.28a2 2 0 0 1 2.11-.45c.84.29 1.72.5 2.62.62A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
}

.combo-icon-mobile {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2304ff1b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='2' width='10' height='20' rx='2'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E");
}

.combo-icon-portability {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2304ff1b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 7H4V3'/%3E%3Cpath d='M16 17h4v4'/%3E%3Cpath d='M20 7a8 8 0 0 0-14.92-3.97L4 3'/%3E%3Cpath d='M4 17a8 8 0 0 0 14.92 3.97L20 21'/%3E%3C/svg%3E");
}

.combo-actions {
  margin-top: 24px;
}

.combo-actions .button-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--pulse-blue-deep);
  border: 0;
  box-shadow: 0 14px 26px rgba(4, 8, 25, 0.14);
}

.pulsewatch-section {
  padding: 0 0 44px;
}

.pulsewatch-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(340px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(28px, 3vw, 42px);
  padding: clamp(30px, 3.6vw, 44px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(4, 255, 27, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, #061748 0%, #0b2f88 44%, #114fe0 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
}

.pulsewatch-shell::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.pulsewatch-visual,
.pulsewatch-copy {
  position: relative;
  z-index: 1;
}

.pulsewatch-visual {
  min-height: 500px;
}

.pulsewatch-visual-blob,
.pulsewatch-visual-wave {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.pulsewatch-visual-blob-a {
  top: -26px;
  left: 10px;
  width: 210px;
  height: 210px;
  background: rgba(255, 255, 255, 0.08);
}

.pulsewatch-visual-blob-b {
  right: 22px;
  bottom: 60px;
  width: 148px;
  height: 148px;
  background: rgba(4, 255, 27, 0.08);
}

.pulsewatch-visual-wave {
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(12deg);
}

.pulsewatch-visual-wave-a {
  top: -44px;
  left: 34px;
  width: 280px;
  height: 500px;
}

.pulsewatch-visual-wave-b {
  top: 20px;
  right: 20px;
  width: 230px;
  height: 400px;
}

.pulsewatch-card {
  position: absolute;
  width: 286px;
  padding: 18px 18px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(22, 87, 255, 0.92) 0%, rgba(13, 55, 173, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 42px rgba(2, 10, 36, 0.28);
}

.pulsewatch-card-back {
  top: 96px;
  left: 16px;
  transform: rotate(-8deg);
}

.pulsewatch-card-front {
  top: 66px;
  left: 148px;
  transform: rotate(-4deg);
}

.pulsewatch-card-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulsewatch-card-signal {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2304ff1b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.55a11 11 0 0 1 14.08 0'/%3E%3Cpath d='M1.42 9a16 16 0 0 1 21.16 0'/%3E%3Cpath d='M8.53 16.11a6 6 0 0 1 6.95 0'/%3E%3Cline x1='12' y1='20' x2='12.01' y2='20'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px 28px;
}

.pulsewatch-card-logo {
  color: var(--pulse-white);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.pulsewatch-card-copy {
  max-width: 13ch;
  margin: 18px 0 0;
  color: var(--pulse-white);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.24;
}

.pulsewatch-card-copy-highlight {
  max-width: 15ch;
}

.pulsewatch-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--pulse-white);
  font-size: 0.92rem;
  font-weight: 700;
}

.pulsewatch-card-play {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.pulsewatch-card-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-40%, -50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--pulse-white);
}

.pulsewatch-remote-device {
  position: absolute;
  left: 86px;
  bottom: 28px;
  width: 248px;
  height: 180px;
  border-radius: 38px;
  background: linear-gradient(180deg, #2c3038 0%, #11161d 100%);
  box-shadow: 0 24px 34px rgba(1, 5, 20, 0.38);
}

.pulsewatch-remote-device::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 34px;
  right: 34px;
  height: 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.pulsewatch-remote-device::after {
  content: "";
  position: absolute;
  inset: 78px 44px 26px 44px;
  border-radius: 18px;
  background-image:
    radial-gradient(circle, #11161d 0 7px, transparent 8px),
    radial-gradient(circle, #11161d 0 7px, transparent 8px),
    radial-gradient(circle, #11161d 0 7px, transparent 8px),
    radial-gradient(circle, #11161d 0 7px, transparent 8px),
    radial-gradient(circle, #11161d 0 7px, transparent 8px),
    radial-gradient(circle, #11161d 0 7px, transparent 8px);
  background-size: 34px 34px;
  background-position: 0 0, 34px 0, 68px 0, 0 34px, 34px 34px, 68px 34px;
  background-repeat: no-repeat;
}

.pulsewatch-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  color: var(--pulse-white);
}

.pulsewatch-copy .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.pulsewatch-copy h2 {
  margin: 14px 0;
  max-width: 12ch;
  font-size: clamp(2.5rem, 3.5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--pulse-white);
}

.pulsewatch-description {
  margin: 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.62;
}

.pulsewatch-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.pulsewatch-stat {
  padding: 16px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  box-shadow: 0 16px 28px rgba(4, 8, 25, 0.12);
}

.pulsewatch-stat-highlight {
  background: linear-gradient(135deg, rgba(4, 255, 27, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-color: rgba(4, 255, 27, 0.3);
}

.pulsewatch-stat strong,
.pulsewatch-stat span {
  display: block;
}

.pulsewatch-stat strong {
  color: var(--pulse-white);
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1;
}

.pulsewatch-stat span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  line-height: 1.35;
}

.pulsewatch-note {
  margin: 16px 0 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.56;
  text-align: left;
}

.pulsewatch-actions {
  margin-top: 20px;
}

.pulsewatch-actions .button-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--pulse-blue-deep);
  border: 0;
  box-shadow: 0 14px 26px rgba(4, 8, 25, 0.14);
}

.proof-grid,
.lead-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.reviews-section {
  padding: 64px 0 28px;
}

.reviews-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.reviews-carousel {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviews-marquee 68s linear infinite;
}

.reviews-carousel:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  flex: 0 0 360px;
  min-height: 220px;
  padding: 26px 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(10, 58, 168, 0.05) 0%, rgba(255, 255, 255, 0.98) 24%, #ffffff 100%);
  border: 1px solid rgba(10, 58, 168, 0.12);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.review-card-featured {
  border-color: rgba(4, 255, 27, 0.42);
  box-shadow: 0 20px 42px rgba(4, 255, 27, 0.12);
}

.reviews-carousel:hover .review-card {
  transform: scale(1.015);
}

.review-card:hover {
  transform: scale(1.045) translateY(-2px) !important;
  border-color: rgba(10, 58, 168, 0.22);
  box-shadow: 0 24px 48px rgba(6, 37, 109, 0.18);
}

.review-stars,
.review-text,
.review-author,
.review-meta {
  margin: 0;
}

.review-stars {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #ffbf00;
}

.review-text {
  margin-top: 16px;
  font-size: 1.04rem;
  line-height: 1.62;
  color: var(--pulse-text);
}

.review-author {
  margin-top: 18px;
  font-weight: 700;
  color: var(--pulse-blue-deep);
}

.review-meta {
  margin-top: 6px;
  color: var(--pulse-text-soft);
  font-size: 0.94rem;
}

@keyframes reviews-marquee {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.proof-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 48px;
}

.proof-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 1080px);
  gap: 26px;
}

.proof-copy {
  padding-top: 30px;
}

.proof-copy .section-kicker {
  color: var(--pulse-blue);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-copy h2 {
  margin: 18px 0 24px;
  font-size: clamp(2.5rem, 3.3vw, 3.7rem);
  line-height: 1.02;
  color: var(--pulse-blue-deep);
}

.proof-copy p {
  max-width: 34ch;
  margin: 0 0 16px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(16, 33, 63, 0.9);
}

.proof-card {
  min-height: 255px;
  padding: 34px 32px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(10, 58, 168, 0.04) 0%, rgba(255, 255, 255, 0.98) 26%, #ffffff 100%);
  border: 1px solid rgba(10, 58, 168, 0.16);
  box-shadow: 0 22px 48px rgba(6, 37, 109, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 58, 168, 0.26);
  box-shadow: 0 26px 56px rgba(6, 37, 109, 0.16);
}

.proof-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 18px;
  background-color: rgba(10, 58, 168, 0.08);
  border: 1px solid rgba(10, 58, 168, 0.18);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  box-shadow: 0 10px 20px rgba(10, 58, 168, 0.1);
}

.proof-icon-local {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230a3aa8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 1 1 18 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.proof-icon-install {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230a3aa8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12'/%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3Cpath d='M5 21h14'/%3E%3C/svg%3E");
}

.proof-icon-support {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230a3aa8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12a8 8 0 0 1 16 0'/%3E%3Crect x='3' y='11' width='4' height='7' rx='2'/%3E%3Crect x='17' y='11' width='4' height='7' rx='2'/%3E%3Cpath d='M21 18a3 3 0 0 1-3 3h-3'/%3E%3C/svg%3E");
}

.proof-icon-fiber {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230a3aa8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.55a11 11 0 0 1 14.08 0'/%3E%3Cpath d='M1.42 9a16 16 0 0 1 21.16 0'/%3E%3Cpath d='M8.53 16.11a6 6 0 0 1 6.95 0'/%3E%3Cline x1='12' y1='20' x2='12.01' y2='20'/%3E%3C/svg%3E");
}

.proof-card h3 {
  font-size: 1.9rem;
  line-height: 1.04;
  color: var(--pulse-blue-deep);
}

.proof-card p {
  max-width: 27ch;
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.6;
}

.lead-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  align-items: stretch;
}

.lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 30px 36px 34px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(4, 255, 27, 0.16), transparent 26%),
    linear-gradient(180deg, #0b2f88 0%, #0f4acf 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.lead-copy-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2304ff1b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19V5'/%3E%3Cpath d='m5 12 7-7 7 7'/%3E%3Cpath d='M5 19h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  box-shadow: 0 18px 30px rgba(4, 255, 27, 0.12);
}

.lead-copy h2 {
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  line-height: 1.08;
  color: var(--pulse-white);
  margin: 0 0 18px;
}

.lead-copy p {
  max-width: 34ch;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.lead-copy .lead-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.lead-copy .lead-points li {
  font-size: 1.08rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.96);
  list-style: none;
  position: static;
  padding-left: 0;
}

.lead-copy .lead-points li::before {
  display: none;
}

.lead-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 18px 14px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lead-point-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin-left: 4px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

.lead-point-support .lead-point-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2304ff1b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12a8 8 0 0 1 16 0'/%3E%3Crect x='3' y='11' width='4' height='7' rx='2'/%3E%3Crect x='17' y='11' width='4' height='7' rx='2'/%3E%3Cpath d='M21 18a3 3 0 0 1-3 3h-3'/%3E%3C/svg%3E");
}

.lead-point-coverage .lead-point-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2304ff1b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 1 1 18 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.lead-point-offer .lead-point-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2304ff1b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 2 3.09 6.26L22 9.27l-5 4.87 1.18 6.86L12 17.77 5.82 21 7 14.14l-5-4.87 6.91-1.01L12 2Z'/%3E%3C/svg%3E");
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 24px;
}

.lead-form label {
  font-weight: 600;
  color: var(--pulse-ink);
}

.form-helper,
.form-status {
  margin: 0;
  font-size: 0.94rem;
}

.form-status {
  min-height: 24px;
  color: var(--pulse-blue);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-list details {
  overflow: hidden;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 58, 168, 0.08);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--pulse-ink);
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--pulse-blue-deep);
  border-bottom: 2px solid var(--pulse-blue-deep);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.24s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.faq-list p {
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition:
    max-height 0.34s ease,
    opacity 0.26s ease,
    transform 0.26s ease,
    margin-top 0.26s ease;
}

.faq-list details[open] {
  border-color: rgba(10, 58, 168, 0.16);
  box-shadow: 0 18px 36px rgba(6, 37, 109, 0.1);
}

.faq-list details[open] p {
  margin-top: 12px;
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  margin: 0 16px 16px;
  padding: 28px 0;
  border-radius: 28px;
  background: linear-gradient(180deg, #0b2f88 0%, #0f4acf 55%, #0b2f88 100%);
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  grid-template-columns: 1fr 0.85fr 1.15fr;
  align-items: center;
  gap: 28px;
}

.footer-grid > div {
  min-width: 0;
}

.footer-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-grid > div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-grid > div:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  width: 220px;
  margin: 0 auto;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.footer-links-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-links-icons li {
  list-style: none;
}

.footer-links a {
  color: var(--pulse-white);
}

.site-footer h3 {
  color: var(--pulse-white);
  margin: 0 0 10px;
  text-align: center;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.92);
}

.footer-link-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  box-shadow: 0 14px 26px rgba(7, 28, 80, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.footer-link-icon:hover {
  transform: translateY(-2px);
  background-color: rgba(4, 255, 27, 0.18);
  box-shadow: 0 12px 24px rgba(4, 255, 27, 0.16);
}

.footer-link-instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='m16 11.37.01 0'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3C/svg%3E");
}

.footer-link-site {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E");
}

.footer-link-whatsapp {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-12.14 7.46L3 20l1.14-5.56A8.5 8.5 0 1 1 21 11.5Z'/%3E%3Cpath d='M8.5 10.5c1.5 3 4 5 7 6'/%3E%3C/svg%3E");
}

.consult-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 52;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.consult-widget[hidden] {
  display: none !important;
}

.consult-widget-bubble {
  position: relative;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #22d36b 0%, #12b956 100%);
  box-shadow: 0 18px 36px rgba(18, 185, 86, 0.28);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.consult-widget-bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(18, 185, 86, 0.32);
}

.consult-widget-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-12.14 7.46L3 20l1.14-5.56A8.5 8.5 0 1 1 21 11.5Z'/%3E%3Cpath d='M8.5 10.5c1.5 3 4 5 7 6'/%3E%3C/svg%3E");
}

.consult-widget-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--pulse-white);
  font-size: 0.82rem;
  font-weight: 700;
  background: #ff4b4b;
  box-shadow: 0 6px 14px rgba(255, 75, 75, 0.3);
}

.consult-widget-panel {
  width: min(320px, calc(100vw - 28px));
  display: grid;
  gap: 12px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(10, 58, 168, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 48px rgba(6, 37, 109, 0.16);
}

.consult-widget-panel[hidden] {
  display: none !important;
}

.consult-widget-close {
  justify-self: end;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 1.1rem;
  color: var(--pulse-blue);
  background: rgba(10, 58, 168, 0.08);
  cursor: pointer;
}

.consult-widget-message,
.consult-widget-copy {
  margin: 0;
}

.consult-widget-message {
  color: var(--pulse-blue-deep);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}

.consult-widget-copy {
  color: var(--pulse-text-soft);
  line-height: 1.55;
}

.consult-widget-whatsapp {
  width: 100%;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .combo-shell,
  .pulsewatch-shell,
  .proof-grid,
  .lead-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .plan-builder-grid,
  .plan-builder-summary {
    grid-template-columns: 1fr;
  }

  .combo-visual {
    min-height: 440px;
  }

  .pulsewatch-visual {
    min-height: 420px;
  }

  .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .tour-overlay {
    background:
      linear-gradient(180deg, rgba(8, 17, 31, 0.18) 0%, rgba(8, 17, 31, 0.1) 100%);
    backdrop-filter: none;
  }

  .tour-mobile-sheet {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 34px rgba(6, 37, 109, 0.16);
  }

  .header-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
    align-items: center;
    min-height: auto;
    gap: 16px;
  }

  .brand {
    justify-content: flex-start;
  }

  .header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
  }

  .selected-city-pill {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-content: space-between;
    row-gap: 6px;
    max-width: none;
    width: 100%;
  }

  .selected-city-label,
  .selected-city-pill strong {
    grid-column: 1;
  }

  .selected-city-action {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    margin-left: 0;
  }

  #headerWhatsappCta {
    display: none;
  }

  .city-gate {
    padding: 16px;
  }

  .trust-strip-grid,
  .plans-grid,
  .plan-builder-grid,
  .proof-cards {
    grid-template-columns: 1fr;
  }

  .combo-visual {
    min-height: 380px;
  }

  .combo-sim-card {
    width: 250px;
    padding: 16px 16px 18px;
  }

  .combo-sim-card-back {
    top: 78px;
    left: 6px;
  }

  .combo-sim-card-front {
    top: 58px;
    left: 122px;
  }

  .combo-sim-logo {
    width: 138px;
  }

  .combo-sim-chip {
    top: 58px;
    width: 58px;
    height: 40px;
  }

  .combo-phone-device {
    left: 44px;
    width: 300px;
    height: 240px;
  }

  .pulsewatch-visual {
    min-height: 360px;
  }

  .pulsewatch-card {
    width: 236px;
    padding: 14px 14px 16px;
  }

  .pulsewatch-card-back {
    top: 72px;
    left: 6px;
  }

  .pulsewatch-card-front {
    top: 52px;
    left: 114px;
  }

  .pulsewatch-card-logo {
    font-size: 1.6rem;
  }

  .pulsewatch-card-tag {
    margin-top: 14px;
    padding: 8px 12px;
    font-size: 0.84rem;
  }

  .pulsewatch-remote-device {
    left: 64px;
    bottom: 18px;
    width: 210px;
    height: 152px;
    border-radius: 30px;
  }

  .pulsewatch-remote-device::before {
    top: 20px;
    left: 28px;
    right: 28px;
    height: 34px;
  }

  .pulsewatch-remote-device::after {
    inset: 68px 38px 22px 38px;
    background-size: 26px 26px;
    background-position: 0 0, 26px 0, 52px 0, 0 26px, 26px 26px, 52px 26px;
  }

  .review-card {
    flex-basis: 300px;
  }

  .plan-card-featured {
    transform: none;
  }

  .site-header {
    position: static;
  }

  .hero-section,
  .plans-section,
  .combo-section,
  .pulsewatch-section,
  .proof-section,
  .lead-section,
  .faq-section {
    padding: 56px 0;
  }

  .mobile-sticky-cta {
    display: none !important;
  }

  .consult-widget {
    right: 12px;
    bottom: 12px;
  }

  .tour-popover {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero-copy,
  .offer-card,
  .lead-form,
  .proof-card,
  .plan-card,
  .plan-builder-shell,
  .combo-shell,
  .pulsewatch-shell,
  .faq-list details {
    border-radius: 20px;
  }

  .hero-copy {
    padding: 24px;
  }

  .hero-copy-inner {
    width: 100%;
  }

  .hero-title-static {
    font-size: clamp(2.2rem, 9.2vw, 3rem);
    line-height: 1;
  }

  .offer-card,
  .lead-form,
  .plan-card,
  .proof-card {
    padding: 22px;
  }

  .combo-shell {
    padding: 24px;
    gap: 20px;
  }

  .plan-builder-shell {
    padding: 20px 18px;
  }

  .plan-builder-option {
    min-height: 0;
    padding: 18px;
  }

  .combo-visual {
    min-height: 320px;
  }

  .combo-sim-card {
    width: 206px;
    border-radius: 18px;
  }

  .combo-sim-card-back {
    top: 64px;
    left: 0;
  }

  .combo-sim-card-front {
    top: 50px;
    left: 98px;
  }

  .combo-sim-logo {
    width: 118px;
  }

  .combo-phone-device {
    left: 12px;
    bottom: 0;
    width: 250px;
    height: 196px;
  }

  .pulsewatch-shell {
    padding: 18px;
    gap: 18px;
  }

  .pulsewatch-visual {
    min-height: 300px;
  }

  .pulsewatch-card {
    width: 192px;
    border-radius: 18px;
  }

  .pulsewatch-card-back {
    top: 58px;
    left: 0;
  }

  .pulsewatch-card-front {
    top: 44px;
    left: 90px;
  }

  .pulsewatch-card-logo {
    font-size: 1.35rem;
  }

  .pulsewatch-card-copy {
    margin-top: 12px;
    font-size: 0.9rem;
  }

  .pulsewatch-card-play {
    top: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .pulsewatch-remote-device {
    left: 28px;
    bottom: 10px;
    width: 176px;
    height: 128px;
    border-radius: 24px;
  }

  .combo-copy h2 {
    max-width: none;
  }

  .combo-copy p {
    max-width: none;
  }

  .combo-feature-item {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 14px 16px;
  }

  .combo-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background-size: 22px 22px;
  }

  .pulsewatch-stats {
    grid-template-columns: 1fr;
  }

  .pulsewatch-copy h2 {
    max-width: none;
    font-size: clamp(2.1rem, 8vw, 3rem);
    letter-spacing: -0.04em;
  }

  .pulsewatch-description,
  .pulsewatch-note {
    max-width: none;
  }

  .pulsewatch-actions {
    justify-content: stretch;
  }

  .cta-group {
    flex-direction: column;
  }

  .button,
  .button-secondary,
  .button-ghost,
  .button-plan {
    width: 100%;
  }

  .site-footer {
    margin: 0 12px 12px;
  }
}

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

  .reviews-track {
    animation: none;
  }

  .button,
  .plan-card,
  .proof-card,
  .review-card,
  .trust-strip-grid > div,
  .footer-link-icon,
  .faq-list details,
  .hero-copy,
  .offer-card,
  .lead-form,
  .combo-shell,
  .pulsewatch-shell,
  .pulsewatch-remote-device,
  .pulsewatch-card {
    transition: none !important;
  }
}
