/* Landing Cotiza tu página web — estilo mockup claro azul */

:root {
  --gf-web-blue: #0066ff;
  --gf-web-blue-dark: #0052cc;
  --gf-web-blue-soft: #e8f1ff;
  --gf-web-text: #1e293b;
  --gf-web-muted: #64748b;
  --gf-web-border: #e2e8f0;
  --gf-web-radius: 12px;
  --gf-web-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  --gf-web-price-yellow: #facc15;
  --gf-web-price-yellow-dark: #ca8a04;
  --gf-web-price-yellow-deep: #a16207;
  --gf-web-price-yellow-bg: #fef9c3;
  --gf-web-price-yellow-bg-strong: #fde047;
}

.gf-web-page {
  background-color: #eef4fb;
}

.gf-web-page .container-fluid.bg-dark.mb-30 {
  margin-bottom: 0;
}

.gf-web-page .gf-web-main,
.gf-web-page .gf-web-main h1,
.gf-web-page .gf-web-main h2,
.gf-web-page .gf-web-main h3,
.gf-web-page .gf-web-main p,
.gf-web-page .gf-web-main a,
.gf-web-page .gf-web-main li {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

.gf-web-main {
  position: relative;
  isolation: isolate;
  color: var(--gf-web-text);
  overflow-x: hidden;
  background: transparent;
}

/* Fondo premium: malla suave + puntos (4K-friendly, solo CSS) */
.gf-web-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 8% -5%, rgba(0, 102, 255, 0.11), transparent 58%),
    radial-gradient(ellipse 70% 45% at 92% 12%, rgba(46, 197, 240, 0.09), transparent 52%),
    radial-gradient(ellipse 65% 40% at 50% 105%, rgba(0, 102, 255, 0.07), transparent 55%),
    linear-gradient(180deg, #f3f8ff 0%, #fafcff 28%, #ffffff 52%, #f6f9fc 100%);
}

.gf-web-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0, 102, 255, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, black 0%, black 85%, transparent 100%);
}

.gf-web-main > section {
  position: relative;
  z-index: 1;
}

.gf-web-section {
  padding: 4rem 0;
}

.gf-web-section#planes {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.gf-web-section--tight-top {
  padding-top: 2.5rem;
}

/* —— Hero (imagen completa) —— */
.gf-web-hero {
  padding: 2rem 0 2.5rem;
  background: transparent;
}

.gf-web-hero--banner {
  padding-top: 1.75rem;
  padding-bottom: 2.25rem;
  background:
    radial-gradient(ellipse 75% 60% at 50% 0%, rgba(0, 102, 255, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 100%);
}

.gf-web-hero-banner-link {
  display: block;
  text-decoration: none;
  border-radius: var(--gf-web-radius);
  overflow: hidden;
  line-height: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gf-web-hero-banner-link:hover,
.gf-web-hero-banner-link:focus {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0, 102, 255, 0.15);
}

.gf-web-hero-banner-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--gf-web-radius);
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (min-width: 1920px) {
  .gf-web-hero-banner-link {
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;
  }

  .gf-web-hero-banner-img {
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.1);
  }
}

.gf-web-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gf-web-blue);
  border: 2px solid var(--gf-web-blue);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gf-web-btn-primary:hover {
  color: #fff;
  text-decoration: none;
  background: var(--gf-web-blue-dark);
  border-color: var(--gf-web-blue-dark);
  transform: translateY(-1px);
}

.gf-web-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gf-web-blue);
  background: #fff;
  border: 2px solid var(--gf-web-blue);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.gf-web-btn-secondary:hover {
  color: #fff;
  text-decoration: none;
  background: var(--gf-web-blue);
}

/* —— Títulos de sección —— */
.gf-web-heading {
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 2.5rem;
}

.gf-web-heading span {
  color: var(--gf-web-blue);
}

/* —— Sección incluido (mockup + animación) —— */
.gf-web-included {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.65);
}

.gf-web-included-title {
  margin-bottom: 2.75rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gf-web-included-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gf-web-included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .gf-web-included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 992px) {
  .gf-web-included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .gf-web-included-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.gf-web-included-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 1.5rem 1.1rem 1.35rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e8edf3;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

@keyframes gf-web-included-in {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gf-web-included-card.is-visible {
  animation: gf-web-included-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.gf-web-included-card[data-included-delay="0"].is-visible { animation-delay: 0.05s; }
.gf-web-included-card[data-included-delay="1"].is-visible { animation-delay: 0.12s; }
.gf-web-included-card[data-included-delay="2"].is-visible { animation-delay: 0.19s; }
.gf-web-included-card[data-included-delay="3"].is-visible { animation-delay: 0.26s; }

.gf-web-included-card.is-visible:hover {
  border-color: rgba(0, 102, 255, 0.45);
  box-shadow: 0 14px 36px rgba(0, 102, 255, 0.12);
  transform: translateY(-8px) scale(1.02);
}

.gf-web-included-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 6.25rem;
  height: 6.25rem;
  margin: 0 auto 1.25rem;
  background: #f8fafc;
  border: none;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.gf-web-included-icon-img {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 3px 8px rgba(15, 23, 42, 0.1));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gf-web-included-card.is-visible:hover .gf-web-included-icon {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 14px 28px rgba(46, 197, 240, 0.2);
}

.gf-web-included-card.is-visible:hover .gf-web-included-icon-img {
  transform: scale(1.1);
}

@keyframes gf-web-icon-pop {
  0% {
    transform: scale(0.5) rotate(-8deg);
    opacity: 0;
  }
  65% {
    transform: scale(1.12) rotate(2deg);
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.gf-web-included-card.is-visible .gf-web-included-icon-img {
  animation: gf-web-icon-pop 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.gf-web-included-card[data-included-delay="0"].is-visible .gf-web-included-icon-img { animation-delay: 0.2s; }
.gf-web-included-card[data-included-delay="1"].is-visible .gf-web-included-icon-img { animation-delay: 0.28s; }
.gf-web-included-card[data-included-delay="2"].is-visible .gf-web-included-icon-img { animation-delay: 0.36s; }
.gf-web-included-card[data-included-delay="3"].is-visible .gf-web-included-icon-img { animation-delay: 0.44s; }

.gf-web-included-card h3 {
  width: 100%;
  font-size: clamp(0.68rem, 1.1vw, 0.82rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin-bottom: 0.55rem;
  color: #0f172a;
}

.gf-web-included-card p {
  width: 100%;
  font-size: clamp(0.75rem, 1vw, 0.86rem);
  line-height: 1.55;
  color: #64748b;
  margin: 0;
  flex: 1 1 auto;
}

@media (max-width: 1199.98px) {
  .gf-web-included-icon {
    width: 5.75rem;
    height: 5.75rem;
  }

  .gf-web-included-icon-img {
    width: 3.25rem;
    height: 3.25rem;
  }

  .gf-web-included-card h3 {
    font-size: 0.84rem;
  }

  .gf-web-included-card p {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gf-web-included-title {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gf-web-included-card {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .gf-web-included-card.is-visible:hover {
    transform: none;
  }

  .gf-web-included-card.is-visible:hover .gf-web-included-icon {
    transform: none;
  }

  .gf-web-included-card.is-visible .gf-web-included-icon-img {
    animation: none;
  }
}

/* —— Planes (animación alto impacto) —— */
.gf-web-pricing-section {
  overflow: hidden;
  position: relative;
}

.gf-web-pricing-section.is-pricing-active::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(820px, 95vw);
  height: min(580px, 75vh);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse 55% 45% at 50% 50%, rgba(0, 102, 255, 0.28) 0%, transparent 62%),
    radial-gradient(ellipse 40% 35% at 30% 55%, rgba(46, 197, 240, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 70% 55%, rgba(0, 102, 255, 0.12) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
  animation: gf-pricing-ambient 3.2s ease-in-out infinite;
}

.gf-web-pricing-section.is-pricing-active::after {
  content: "";
  position: absolute;
  inset: 8% 5%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.35) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 22%, rgba(46, 197, 240, 0.3) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 78%, rgba(0, 102, 255, 0.25) 0 2px, transparent 3px),
    radial-gradient(circle at 12% 72%, rgba(0, 102, 255, 0.2) 0 2px, transparent 3px);
  animation: gf-pricing-sparkle 5s ease-in-out infinite;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 48%, black 20%, transparent 72%);
}

@keyframes gf-pricing-ambient {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.96);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

@keyframes gf-pricing-sparkle {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.75;
    transform: translateY(-12px) scale(1.04);
  }
}

.gf-web-pricing-section .container-fluid {
  position: relative;
  z-index: 1;
}

.gf-web-pricing-title {
  opacity: 0;
  transform: translateY(50px) scale(0.88);
  filter: blur(10px);
}

.gf-web-pricing-title.is-visible {
  animation: gf-pricing-title-in 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes gf-pricing-title-in {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.88);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.gf-web-pricing-title.is-visible span {
  display: inline-block;
  animation: gf-pricing-title-accent 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s backwards;
}

@keyframes gf-pricing-title-accent {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gf-web-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
  perspective: 1200px;
}

@media (min-width: 992px) {
  .gf-web-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 1.75rem;
  }
}

.gf-web-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2.15rem 1.55rem 2rem;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--gf-web-border);
  border-radius: var(--gf-web-radius);
  box-shadow: var(--gf-web-shadow);
  overflow: hidden;
  transform-style: preserve-3d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gf-web-plan-animate {
  opacity: 0;
}

@keyframes gf-web-plan-in {
  0% {
    opacity: 0;
    transform: translateY(80px) rotateX(18deg) scale(0.82);
    filter: blur(6px);
  }
  55% {
    opacity: 1;
    transform: translateY(-14px) rotateX(-4deg) scale(1.04);
    filter: blur(0);
  }
  75% {
    transform: translateY(6px) rotateX(2deg) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes gf-web-plan-in-left {
  0% {
    opacity: 0;
    transform: translate(-70px, 70px) rotateY(14deg) scale(0.82);
    filter: blur(8px);
  }
  55% {
    opacity: 1;
    transform: translate(8px, -12px) rotateY(-3deg) scale(1.03);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes gf-web-plan-in-right {
  0% {
    opacity: 0;
    transform: translate(70px, 70px) rotateY(-14deg) scale(0.82);
    filter: blur(8px);
  }
  55% {
    opacity: 1;
    transform: translate(-8px, -12px) rotateY(3deg) scale(1.03);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotateY(0) scale(1);
    filter: blur(0);
  }
}

.gf-web-plan-animate.is-visible {
  animation: gf-web-plan-in 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (min-width: 992px) {
  .gf-web-plan-animate[data-plan-delay="0"].is-visible {
    animation-name: gf-web-plan-in-left;
  }

  .gf-web-plan-animate[data-plan-delay="2"].is-visible {
    animation-name: gf-web-plan-in-right;
  }
}

.gf-web-plan-animate[data-plan-delay="0"].is-visible { animation-delay: 0.1s; }
.gf-web-plan-animate[data-plan-delay="1"].is-visible { animation-delay: 0.28s; }
.gf-web-plan-animate[data-plan-delay="2"].is-visible { animation-delay: 0.46s; }

.gf-web-plan-animate.is-visible {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.gf-web-plan-animate.is-visible:hover {
  transform: translateY(-16px);
  box-shadow: 0 28px 56px rgba(0, 102, 255, 0.2);
  border-color: rgba(0, 102, 255, 0.55);
}

.gf-web-plan-animate:not(.gf-web-plan--featured).is-visible:hover {
  transform: translateY(-16px) scale(1.02);
}

.gf-web-plan--featured {
  border-color: var(--gf-web-blue);
  box-shadow: 0 16px 48px rgba(0, 102, 255, 0.22);
}

/* Contenido por encima del brillo (::after) para no lavar el texto */
.gf-web-plan--featured > * {
  position: relative;
  z-index: 2;
}

.gf-web-plan--featured::before {
  display: none;
}

.gf-web-plan--featured::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 255, 255, 0.65) 48%,
    transparent 58%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.gf-web-plan--featured.gf-web-plan-animate.is-visible::after {
  animation: gf-plan-shine 1.6s ease 0.7s 2;
}

@keyframes gf-plan-shine {
  0% {
    opacity: 0;
    transform: translateX(-130%) skewX(-16deg);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(130%) skewX(-16deg);
  }
}

.gf-web-plan--featured.gf-web-plan-animate.is-visible {
  animation:
    gf-web-plan-in-featured 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    gf-plan-glow-pulse 2.8s ease-in-out 1.1s infinite;
}

@keyframes gf-web-plan-in-featured {
  0% {
    opacity: 0;
    transform: translateY(90px) scale(0.88) rotateX(14deg);
  }
  45% {
    opacity: 1;
    transform: translateY(-18px) scale(1.03) rotateX(-4deg);
  }
  65% {
    transform: translateY(8px) scale(0.99) rotateX(2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
  }
}

@keyframes gf-plan-glow-pulse {
  0%,
  100% {
    box-shadow:
      0 16px 48px rgba(0, 102, 255, 0.22),
      0 0 0 0 rgba(0, 102, 255, 0);
  }
  50% {
    box-shadow:
      0 28px 64px rgba(0, 102, 255, 0.38),
      0 0 0 10px rgba(0, 102, 255, 0.12);
  }
}

@media (min-width: 992px) {
  .gf-web-plan {
    min-height: 640px;
  }

  .gf-web-plan--featured.gf-web-plan-animate.is-visible {
    padding: 2.45rem 1.65rem 2.15rem;
    min-height: 680px;
  }

  .gf-web-plan--featured.gf-web-plan-animate.is-visible:hover {
    transform: translateY(-18px) scale(1);
  }
}

.gf-web-plan--featured.gf-web-plan-animate.is-visible:hover {
  box-shadow:
    0 32px 72px rgba(0, 102, 255, 0.35),
    0 0 0 12px rgba(0, 102, 255, 0.14);
}

@keyframes gf-web-plan-badge-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3) rotate(-12deg);
  }
  55% {
    transform: translate(-50%, -50%) scale(1.2) rotate(4deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0);
  }
}

.gf-web-plan-animate.is-visible .gf-web-plan-badge {
  animation: gf-web-plan-badge-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s backwards;
}

.gf-web-plan--featured.is-visible .gf-web-plan-badge {
  animation:
    gf-web-plan-badge-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s backwards,
    gf-badge-float 2.2s ease-in-out 1.2s infinite;
}

@keyframes gf-badge-float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-4px);
  }
}

.gf-web-plan-animate.is-visible .gf-web-plan-price {
  animation: gf-web-plan-price-reveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes gf-web-plan-price-reveal {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gf-web-price-symbol-pop {
  0% {
    opacity: 0;
    transform: translateY(-14px) scale(0.5);
  }
  65% {
    transform: translateY(3px) scale(1.12);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gf-web-price-amount-pop {
  0% {
    opacity: 0;
    transform: scale(0.55);
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gf-web-price-amount-glow {
  0%,
  100% {
    text-shadow:
      0 0 0 rgba(0, 102, 255, 0),
      0 4px 14px rgba(0, 102, 255, 0.2);
  }
  50% {
    text-shadow:
      0 0 24px rgba(0, 102, 255, 0.45),
      0 0 48px rgba(0, 163, 255, 0.2),
      0 4px 16px rgba(0, 102, 255, 0.35);
  }
}

@keyframes gf-web-price-underline {
  0%,
  100% {
    transform: scaleX(0.55);
    opacity: 0.5;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.gf-web-plan-animate.is-visible .gf-web-plan-price-symbol {
  animation: gf-web-price-symbol-pop 0.65s cubic-bezier(0.34, 1.5, 0.64, 1) 0.35s both;
}

.gf-web-plan-animate.is-visible .gf-web-plan-price-amount {
  animation:
    gf-web-price-amount-pop 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both,
    gf-web-price-amount-glow 2.8s ease-in-out 1.2s infinite;
}


.gf-web-plan-animate .gf-web-plan-list li {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-16px);
}

.gf-web-plan-animate.is-visible .gf-web-plan-list li {
  animation: gf-web-plan-li-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes gf-web-plan-li-in {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-20px);
  }
  70% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(4px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

.gf-web-plan-animate.is-visible .gf-web-plan-list li::before {
  animation:
    gf-plan-check-pop 0.55s cubic-bezier(0.34, 1.65, 0.64, 1) backwards,
    gf-plan-check-glow 2.6s ease-in-out infinite;
}

@keyframes gf-plan-check-pop {
  0% {
    transform: scale(0) rotate(-160deg);
    opacity: 0;
  }
  55% {
    transform: scale(1.25) rotate(12deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes gf-plan-check-glow {
  0%,
  100% {
    box-shadow: 0 2px 6px rgba(0, 102, 255, 0.25);
    background: var(--gf-web-blue);
  }
  50% {
    box-shadow:
      0 2px 8px rgba(0, 102, 255, 0.45),
      0 0 0 4px rgba(0, 102, 255, 0.18);
    background: #0077ff;
  }
}

.gf-web-plan-animate .gf-web-plan-ideal-list li {
  opacity: 0;
  transform: translateX(14px);
}

.gf-web-plan-animate.is-visible .gf-web-plan-ideal-list li {
  animation: gf-web-plan-ideal-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes gf-web-plan-ideal-in {
  0% {
    opacity: 0;
    transform: translateX(16px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.gf-web-plan-animate.is-visible .gf-web-plan-ideal-list li::before {
  animation:
    gf-plan-ideal-dot-pop 0.45s cubic-bezier(0.34, 1.5, 0.64, 1) backwards,
    gf-plan-ideal-dot-pulse 2.4s ease-in-out infinite;
}

@keyframes gf-plan-ideal-dot-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes gf-plan-ideal-dot-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.35);
    background: var(--gf-web-blue);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(0, 102, 255, 0);
    background: #0077ff;
  }
}

.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(1) { animation-delay: 0.42s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(2) { animation-delay: 0.47s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(3) { animation-delay: 0.52s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(4) { animation-delay: 0.57s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(5) { animation-delay: 0.62s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(6) { animation-delay: 0.67s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(7) { animation-delay: 0.72s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(8) { animation-delay: 0.77s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(9) { animation-delay: 0.82s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(10) { animation-delay: 0.87s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(11) { animation-delay: 0.92s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(12) { animation-delay: 0.97s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(13) { animation-delay: 1.02s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(14) { animation-delay: 1.07s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(15) { animation-delay: 1.12s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(16) { animation-delay: 1.17s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(17) { animation-delay: 1.22s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(18) { animation-delay: 1.27s; }

.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(1)::before { animation-delay: 0.5s, 2.1s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(2)::before { animation-delay: 0.55s, 2.25s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(3)::before { animation-delay: 0.6s, 2.4s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(4)::before { animation-delay: 0.65s, 2.55s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(5)::before { animation-delay: 0.7s, 2.7s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(6)::before { animation-delay: 0.75s, 2.85s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(7)::before { animation-delay: 0.8s, 3s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(8)::before { animation-delay: 0.85s, 3.15s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(9)::before { animation-delay: 0.9s, 2.15s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(10)::before { animation-delay: 0.95s, 2.3s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(11)::before { animation-delay: 1s, 2.45s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(12)::before { animation-delay: 1.05s, 2.6s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(13)::before { animation-delay: 1.1s, 2.75s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(14)::before { animation-delay: 1.15s, 2.9s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(15)::before { animation-delay: 1.2s, 3.05s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(16)::before { animation-delay: 1.25s, 3.2s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(17)::before { animation-delay: 1.3s, 2.2s; }
.gf-web-plan-animate.is-visible .gf-web-plan-list li:nth-child(18)::before { animation-delay: 1.35s, 2.35s; }

.gf-web-plan-animate.is-visible .gf-web-plan-ideal-list li:nth-child(1) { animation-delay: 0.22s; }
.gf-web-plan-animate.is-visible .gf-web-plan-ideal-list li:nth-child(2) { animation-delay: 0.28s; }
.gf-web-plan-animate.is-visible .gf-web-plan-ideal-list li:nth-child(3) { animation-delay: 0.34s; }
.gf-web-plan-animate.is-visible .gf-web-plan-ideal-list li:nth-child(4) { animation-delay: 0.4s; }
.gf-web-plan-animate.is-visible .gf-web-plan-ideal-list li:nth-child(5) { animation-delay: 0.46s; }

.gf-web-plan-animate.is-visible .gf-web-plan-ideal-list li:nth-child(1)::before { animation-delay: 0.28s, 2s; }
.gf-web-plan-animate.is-visible .gf-web-plan-ideal-list li:nth-child(2)::before { animation-delay: 0.34s, 2.2s; }
.gf-web-plan-animate.is-visible .gf-web-plan-ideal-list li:nth-child(3)::before { animation-delay: 0.4s, 2.4s; }
.gf-web-plan-animate.is-visible .gf-web-plan-ideal-list li:nth-child(4)::before { animation-delay: 0.46s, 2.6s; }
.gf-web-plan-animate.is-visible .gf-web-plan-ideal-list li:nth-child(5)::before { animation-delay: 0.52s, 2.8s; }

.gf-web-plan-animate.is-visible .gf-web-btn-plan {
  animation:
    gf-web-plan-btn-in 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 1.05s backwards,
    gf-web-plan-btn-glow 2.4s ease-in-out 1.85s infinite;
}

@keyframes gf-web-plan-btn-in {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.82) rotateX(12deg);
  }
  55% {
    opacity: 1;
    transform: translateY(-6px) scale(1.06);
  }
  75% {
    transform: translateY(2px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gf-web-plan-btn-glow {
  0%,
  100% {
    box-shadow:
      0 10px 28px rgba(0, 102, 255, 0.35),
      0 0 0 0 rgba(0, 102, 255, 0.45);
  }
  50% {
    box-shadow:
      0 16px 40px rgba(0, 102, 255, 0.5),
      0 0 0 10px rgba(0, 102, 255, 0);
  }
}

@keyframes gf-web-plan-btn-shine {
  0% {
    transform: translateX(-130%) skewX(-18deg);
  }
  18%,
  100% {
    transform: translateX(130%) skewX(-18deg);
  }
}

@keyframes gf-web-plan-btn-wa-bounce {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.18) rotate(-8deg);
  }
  50% {
    transform: scale(1.12) rotate(6deg);
  }
  75% {
    transform: scale(1.16) rotate(-4deg);
  }
}

@keyframes gf-web-plan-btn-outline-pulse {
  0%,
  100% {
    box-shadow:
      0 8px 22px rgba(0, 102, 255, 0.18),
      inset 0 0 0 0 rgba(0, 102, 255, 0.08);
  }
  50% {
    box-shadow:
      0 14px 32px rgba(0, 102, 255, 0.32),
      inset 0 0 0 2px rgba(0, 102, 255, 0.12);
  }
}

.gf-web-pricing-note-animate {
  opacity: 0;
  transform: translateY(24px) scale(0.95);
}

.gf-web-pricing-note-animate.is-visible {
  animation: gf-pricing-note-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

@keyframes gf-pricing-note-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gf-web-pricing-note-animate.is-visible i {
  animation: gf-plan-check-pop 0.5s cubic-bezier(0.34, 1.5, 0.64, 1) 0.95s backwards;
}

.gf-web-plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gf-web-blue);
  white-space: nowrap;
}

.gf-web-plan h3 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 0.35rem;
}

.gf-web-plan-animate h3 {
  opacity: 0;
  transform: translateY(14px);
}

.gf-web-plan-animate.is-visible h3 {
  animation: gf-web-plan-h3-in 0.55s cubic-bezier(0.34, 1.4, 0.64, 1) 0.22s forwards;
}

.gf-web-plan--featured.gf-web-plan-animate.is-visible h3 {
  animation-delay: 0.38s;
}

@keyframes gf-web-plan-h3-in {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.92);
  }
  70% {
    transform: translateY(-3px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gf-web-plan-audience {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gf-web-blue);
  margin: 0 0 0.65rem;
}

.gf-web-plan-desc {
  text-align: center;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--gf-web-muted);
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gf-web-border);
}

.gf-web-plan-list-heading {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #0f172a;
  margin: 0 0 0.65rem;
  text-align: left;
}

.gf-web-plan-list-heading + .gf-web-plan-list-heading {
  margin-top: 1rem;
}

.gf-web-plan-ideal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.25rem;
}

.gf-web-plan-ideal-list li {
  position: relative;
  padding: 0.28rem 0 0.28rem 1.15rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--gf-web-muted);
}

.gf-web-plan-ideal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gf-web-blue);
}

.gf-web-plan-animate .gf-web-plan-time {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: perspective(600px) rotateY(-18deg) translateX(-20px);
}

@keyframes gf-web-plan-time-reveal {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: perspective(600px) rotateY(-22deg) translateX(-32px);
  }
  55% {
    opacity: 1;
    clip-path: inset(0 8% 0 0);
    transform: perspective(600px) rotateY(4deg) translateX(4px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: perspective(600px) rotateY(0deg) translateX(0);
  }
}

@keyframes gf-web-plan-time-border-beat {
  0%,
  100% {
    outline-color: rgba(0, 102, 255, 0.15);
    outline-offset: 0;
  }
  50% {
    outline-color: rgba(0, 102, 255, 0.45);
    outline-offset: 3px;
  }
}

@keyframes gf-web-plan-time-scan {
  0% {
    top: -8%;
    opacity: 0;
  }
  8% {
    opacity: 0.85;
  }
  92% {
    opacity: 0.85;
  }
  100% {
    top: 108%;
    opacity: 0;
  }
}

@keyframes gf-web-plan-time-bar-grow {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

@keyframes gf-web-plan-time-clock-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes gf-web-plan-time-clock-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 102, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
  }
}

@keyframes gf-web-plan-time-badge-pop {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  40% {
    transform: scale(1.08);
    filter: brightness(1.15);
  }
}

@keyframes gf-web-plan-time-badge-underline {
  0%,
  100% {
    transform: scaleX(0.35);
    opacity: 0.5;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.gf-web-plan-time {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  margin: 0 0 1.35rem;
  padding: 0.9rem 1rem 0.9rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background: #f4f9ff;
  border-radius: 10px;
  border: 2px dashed rgba(0, 102, 255, 0.38);
  outline: 2px solid transparent;
  outline-offset: 0;
  box-shadow: 0 4px 18px rgba(0, 102, 255, 0.1);
  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.gf-web-plan-animate.is-visible .gf-web-plan-time {
  animation:
    gf-web-plan-time-reveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.95s both,
    gf-web-plan-time-border-beat 2.8s ease-in-out 1.85s infinite;
}

.gf-web-plan-time::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 10px 0 0 10px;
  background: linear-gradient(180deg, #0077ff, #0066ff, #0052cc);
  transform: scaleY(0);
  transform-origin: center bottom;
  z-index: 2;
}

.gf-web-plan-animate.is-visible .gf-web-plan-time::before {
  animation: gf-web-plan-time-bar-grow 0.55s cubic-bezier(0.22, 1, 0.36, 1) 1.15s both;
}

.gf-web-plan-time::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 102, 255, 0.35),
    rgba(0, 119, 255, 0.75),
    rgba(0, 102, 255, 0.35),
    transparent
  );
  pointer-events: none;
  z-index: 1;
  top: -8%;
}

.gf-web-plan-animate.is-visible .gf-web-plan-time::after {
  animation: gf-web-plan-time-scan 2.8s ease-in-out 1.9s infinite;
}

.gf-web-plan--featured .gf-web-plan-time {
  border-color: rgba(0, 102, 255, 0.55);
  background: linear-gradient(180deg, #edf5ff 0%, #dceaff 100%);
}

.gf-web-plan--featured.gf-web-plan-animate.is-visible .gf-web-plan-time {
  animation:
    gf-web-plan-time-reveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.95s both,
    gf-web-plan-time-border-beat 2.4s ease-in-out 1.8s infinite;
}

.gf-web-plan-time:hover {
  border-color: rgba(0, 102, 255, 0.7);
  box-shadow: 0 10px 28px rgba(0, 102, 255, 0.22);
}

.gf-web-plan-time .fa-clock {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  color: #fff;
  font-size: 0.92rem;
  background: linear-gradient(145deg, #0077ff, #0066ff);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.35);
}

.gf-web-plan-animate.is-visible .gf-web-plan-time .fa-clock {
  animation:
    gf-web-plan-time-clock-spin 6s linear 1.7s infinite,
    gf-web-plan-time-clock-ping 2s ease-out 1.9s infinite;
}

.gf-web-plan-time strong {
  position: relative;
  z-index: 3;
  display: inline-block;
  padding: 0.2rem 0.55rem 0.28rem;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(135deg, #0077ff 0%, #0066ff 50%, #0052cc 100%);
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 102, 255, 0.35);
}

.gf-web-plan-time strong::after {
  content: "";
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  bottom: 0.18rem;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.85);
  transform: scaleX(0.35);
  transform-origin: left center;
}

.gf-web-plan-animate.is-visible .gf-web-plan-time strong {
  animation: gf-web-plan-time-badge-pop 2.2s ease-in-out 2.05s infinite;
}

.gf-web-plan-animate.is-visible .gf-web-plan-time strong::after {
  animation: gf-web-plan-time-badge-underline 2.2s ease-in-out 2.05s infinite;
}

.gf-web-plan-price {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.12rem;
  width: 100%;
  margin: 0.35rem auto 1.2rem;
  padding: 0;
  text-align: center;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transform: none;
  transform-style: flat;
}

.gf-web-plan-price::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.35rem;
  width: min(12rem, 70%);
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, #0066ff, #00a3ff, #0066ff, transparent);
  transform: translateX(-50%) scaleX(0.55);
  transform-origin: center;
  opacity: 0.55;
  pointer-events: none;
}

.gf-web-plan-animate.is-visible .gf-web-plan-price::after {
  animation: gf-web-price-underline 2.6s ease-in-out 1.1s infinite;
}

.gf-web-plan-price-symbol,
.gf-web-plan-price-amount {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-family: inherit;
  font-weight: 900;
  line-height: 1;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.gf-web-plan-price-symbol {
  font-size: clamp(1.35rem, 5.5vw, 2rem);
  color: #0047b3;
  align-self: flex-start;
  margin-top: 0.15em;
}

.gf-web-plan-price-amount {
  font-size: clamp(2.35rem, 9.5vw, 3.35rem);
  letter-spacing: -0.03em;
  color: #0066ff;
}

.gf-web-plan--featured .gf-web-plan-price-amount {
  font-size: clamp(2.55rem, 10.5vw, 3.75rem);
}

.gf-web-plan-animate.is-visible .gf-web-plan-price:hover .gf-web-plan-price-amount {
  transform: scale(1.04);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.gf-web-plan-price small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gf-web-muted);
  margin-top: 0.5rem;
}

.gf-web-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex: 1 1 auto;
}

.gf-web-plan-list li {
  position: relative;
  padding: 0.42rem 0.42rem 0.42rem 1.75rem;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--gf-web-text);
  border-radius: 8px;
  transition:
    background 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    padding-left 0.3s ease;
}

.gf-web-plan-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #0077ff, #0066ff);
  transform: scaleY(0);
  transform-origin: center top;
  opacity: 0;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
}

.gf-web-plan-list li:hover {
  background: rgba(232, 241, 255, 0.7);
  transform: translateX(4px);
  padding-left: 1.9rem;
}

.gf-web-plan-list li:hover::after {
  transform: scaleY(1);
  opacity: 1;
}

.gf-web-plan-list li:hover::before {
  transform: scale(1.12);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.45);
}

.gf-web-plan-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0.15rem;
  top: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  font-size: 0.55rem;
  color: #fff;
  background: var(--gf-web-blue);
  box-shadow: 0 2px 6px rgba(0, 102, 255, 0.25);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.gf-web-plan-ideal-list li {
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.gf-web-plan-ideal-list li:hover {
  transform: translateX(5px);
  color: var(--gf-web-text);
}

.gf-web-plan-ideal-list li::before {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gf-web-plan-ideal-list li:hover::before {
  transform: scale(1.35);
}

.gf-web-plan .gf-web-btn-plan {
  position: relative;
  z-index: 4;
  width: 100%;
  justify-content: center;
  margin-top: auto;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  border-radius: 12px;
  border-width: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.gf-web-plan .gf-web-btn-plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 35%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.15) 65%,
    transparent 100%
  );
  transform: translateX(-130%) skewX(-18deg);
  pointer-events: none;
  z-index: 1;
}

.gf-web-plan-animate.is-visible .gf-web-btn-plan::before {
  animation: gf-web-plan-btn-shine 3.2s ease-in-out 2s infinite;
}

.gf-web-plan .gf-web-btn-plan::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  border: 2px solid rgba(0, 102, 255, 0.35);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.35s ease;
}

.gf-web-plan-animate.is-visible .gf-web-btn-plan:not(.gf-web-btn-plan--outline) {
  background: linear-gradient(135deg, #0077ff 0%, #0066ff 45%, #0052cc 100%);
  background-size: 200% 200%;
  border-color: #0052cc;
  animation:
    gf-web-plan-btn-in 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 1.05s backwards,
    gf-web-plan-btn-glow 2.4s ease-in-out 1.85s infinite,
    gf-web-plan-btn-gradient 4s ease infinite;
}

@keyframes gf-web-plan-btn-gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.gf-web-plan-animate.is-visible .gf-web-btn-plan:hover {
  transform: translateY(-6px) scale(1.04);
  filter: brightness(1.08);
  box-shadow:
    0 20px 48px rgba(0, 102, 255, 0.55),
    0 0 32px rgba(0, 102, 255, 0.35);
}

.gf-web-plan-animate.is-visible .gf-web-btn-plan:hover::after {
  opacity: 1;
  animation: gf-web-plan-btn-ring 1.2s ease-out infinite;
}

@keyframes gf-web-plan-btn-ring {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

.gf-web-plan-animate.is-visible .gf-web-btn-plan:active {
  transform: translateY(-2px) scale(0.98);
  transition-duration: 0.1s;
}

.gf-web-btn-plan .fa-whatsapp {
  position: relative;
  z-index: 2;
  font-size: 1.35em;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.gf-web-plan-animate.is-visible .gf-web-btn-plan .fa-whatsapp {
  animation: gf-web-plan-btn-wa-bounce 2.5s ease-in-out 2.2s infinite;
}

.gf-web-btn-plan--outline {
  color: var(--gf-web-blue);
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border: 2px solid var(--gf-web-blue);
  box-shadow: 0 8px 22px rgba(0, 102, 255, 0.15);
  text-shadow: none;
}

.gf-web-plan-animate.is-visible .gf-web-btn-plan--outline {
  background: linear-gradient(180deg, #fff 0%, #f0f6ff 100%);
  animation:
    gf-web-plan-btn-in 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 1.05s backwards,
    gf-web-plan-btn-outline-pulse 2.6s ease-in-out 1.9s infinite;
}

.gf-web-btn-plan--outline:hover {
  color: #fff;
  background: linear-gradient(135deg, #0077ff 0%, #0066ff 50%, #0052cc 100%);
  border-color: #0052cc;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.gf-web-plan-animate.is-visible .gf-web-btn-plan--outline:hover {
  box-shadow:
    0 18px 44px rgba(0, 102, 255, 0.45),
    0 0 24px rgba(0, 102, 255, 0.25);
}

.gf-web-pricing-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.65rem;
  max-width: 42rem;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gf-web-muted);
}

.gf-web-pricing-note i {
  color: var(--gf-web-blue);
  margin-top: 0.15rem;
}

/* —— Proceso —— */
.gf-web-process {
  background: rgba(241, 246, 252, 0.85);
  border-top: 1px solid rgba(226, 232, 240, 0.5);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.gf-web-process-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .gf-web-process-track {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }

  .gf-web-process-track::before {
    content: "";
    position: absolute;
    top: 1.65rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      var(--gf-web-blue) 0,
      var(--gf-web-blue) 6px,
      transparent 6px,
      transparent 12px
    );
    opacity: 0.35;
    z-index: 0;
  }
}

.gf-web-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}

.gf-web-process-num {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  background: var(--gf-web-blue);
}

.gf-web-process-step > i {
  display: block;
  font-size: 1.35rem;
  color: var(--gf-web-blue);
  margin-bottom: 0.65rem;
}

.gf-web-process-step h3 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
  color: #0f172a;
}

.gf-web-process-step p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--gf-web-muted);
  margin: 0;
}

/* —— Showcase final (solo mockup) —— */
.gf-web-showcase {
  padding: 2.5rem 0 3rem;
  background: #fff;
}

.gf-web-showcase-visual {
  margin: 0 auto;
  max-width: 100%;
}

.gf-web-showcase-visual picture,
.gf-web-showcase-visual img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 0;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}

/* —— Reveal —— */
.gf-web-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.gf-web-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gf-web-reveal-delay-1 { transition-delay: 0.08s; }
.gf-web-reveal-delay-2 { transition-delay: 0.16s; }
.gf-web-reveal-delay-3 { transition-delay: 0.24s; }

@media (max-width: 991.98px) {
  .gf-web-hero--banner {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

  /* Móvil: menor a mayor precio (Básico → Empresa → Premium) */
  .gf-web-plan-animate[data-plan-delay="0"] {
    order: 1;
  }

  .gf-web-plan--featured {
    order: 2;
  }

  .gf-web-plan-animate[data-plan-delay="2"] {
    order: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gf-web-reveal,
  .gf-web-pricing-title,
  .gf-web-pricing-note-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gf-web-pricing-section.is-pricing-active::before,
  .gf-web-pricing-section.is-pricing-active::after {
    animation: none;
    opacity: 0.4;
    transform: none;
  }

  .gf-web-plan--featured.gf-web-plan-animate.is-visible::after {
    animation: none;
  }

  .gf-web-plan-animate.is-visible .gf-web-plan-price-symbol,
  .gf-web-plan-animate.is-visible .gf-web-plan-price-amount,
  .gf-web-plan-animate.is-visible .gf-web-plan-price::after {
    animation: none;
    transform: none;
    text-shadow: none;
  }

  .gf-web-plan-animate.is-visible h3 {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .gf-web-pricing-title.is-visible,
  .gf-web-pricing-title.is-visible span,
  .gf-web-pricing-note-animate.is-visible,
  .gf-web-pricing-note-animate.is-visible i {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .gf-web-plan-animate,
  .gf-web-plan--featured::after {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .gf-web-plan-animate.is-visible:hover,
  .gf-web-plan--featured.gf-web-plan-animate.is-visible:hover {
    transform: none;
  }

  .gf-web-plan-animate .gf-web-plan-list li,
  .gf-web-plan-animate.is-visible .gf-web-plan-list li,
  .gf-web-plan-animate .gf-web-plan-ideal-list li,
  .gf-web-plan-animate.is-visible .gf-web-plan-ideal-list li,
  .gf-web-plan-animate.is-visible .gf-web-plan-badge,
  .gf-web-plan-animate .gf-web-plan-price,
  .gf-web-plan-animate.is-visible .gf-web-plan-price,
  .gf-web-plan-animate.is-visible .gf-web-plan-price-symbol,
  .gf-web-plan-animate.is-visible .gf-web-plan-price-amount,
  .gf-web-plan-animate.is-visible .gf-web-btn-plan,
  .gf-web-plan-animate.is-visible .gf-web-plan-list li::before,
  .gf-web-plan-animate.is-visible .gf-web-plan-ideal-list li::before {
    opacity: 1;
    clip-path: none;
    transform: none;
    animation: none;
  }

  .gf-web-plan-list li:hover,
  .gf-web-plan-ideal-list li:hover {
    transform: none;
    padding-left: inherit;
  }

  .gf-web-plan-list li:hover::after {
    transform: none;
    opacity: 0;
  }

  .gf-web-plan .gf-web-btn-plan::before,
  .gf-web-plan .gf-web-btn-plan::after,
  .gf-web-plan-animate.is-visible .gf-web-btn-plan .fa-whatsapp {
    animation: none;
  }

  .gf-web-plan-animate.is-visible .gf-web-btn-plan:hover {
    transform: none;
    filter: none;
    box-shadow: 0 8px 22px rgba(0, 102, 255, 0.25);
  }

  .gf-web-plan-animate .gf-web-plan-time,
  .gf-web-plan-animate.is-visible .gf-web-plan-time {
    opacity: 1;
    clip-path: none;
    transform: none;
    animation: none;
  }

  .gf-web-plan-time::before,
  .gf-web-plan-time::after,
  .gf-web-plan-animate.is-visible .gf-web-plan-time .fa-clock,
  .gf-web-plan-animate.is-visible .gf-web-plan-time strong,
  .gf-web-plan-animate.is-visible .gf-web-plan-time strong::after {
    animation: none;
    transform: none;
  }

  .gf-web-plan-time:hover {
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.14);
  }

  .gf-web-plan-price:hover {
    transform: none;
  }
}
