/* Spinner para botón de envío */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top: 2px solid #d59de5;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Variables y fundamentos */
:root {
  --color-primary: #d59de5;
  --color-secondary: #b4c49f;
  --color-dark: #201a24;
  --color-bg: #ffffff;
  --color-muted: #e9e6ef;
  --color-accent: #f6eefe;

  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --maxw: 1120px;

  --surface-lavender: #f5eef9;
  --surface-sage: #f3f7ef;

  --pill-lavender: rgba(213, 157, 229, 0.22);
  --pill-sage: rgba(180, 196, 159, 0.22);

  --bg: #e9fff1; /* verde muy claro del fondo */
  --card: #ffffff;
  --brand: #b485e6; /* morado de la banda y botón */
  --brand-dark: #9b6ed6;
  --text: #23262f;
  --muted: #5d6778;
  --check: #19c37d;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --petrol: #defbe9;
}

.petrol-gradient {
  background: radial-gradient(
      1200px 1200px at 10% 10%,
      #dff8ea 10%,
      transparent 60%
    ),
    radial-gradient(1200px 1200px at 90% 20%, #dff8ea 10%, transparent 60%),
    var(--bg);
}

/* Asegura caja consistente */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Rubik", system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-dark);
}
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 20px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-muted);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 1rem;
}
.cta-desktop {
  justify-self: end;
}
.brand-link {
  display: flex;
  gap: 8px;
  align-items: center;
}
.brand-text {
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.brand-badge {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
nav {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
nav ul {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav a {
  display: block;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 15px;
  white-space: nowrap;
}
nav a:focus,
nav a:hover {
  background: var(--color-accent);
  outline: 2px solid transparent;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 15px;
  padding: 8px 10px;
  border-radius: 10px;
}
.cta {
  background: var(--color-primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: var(--shadow);
  white-space: nowrap;
  width: 260px; /* Tamaño fijo de 220px para todas las pantallas */
  text-align: center;
  border: none;
}

.cta[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Ocultar botón móvil en desktop */
.cta-mobile {
  display: none;
}

@media (max-width: 1180px) {
  nav {
    display: none; /* Ocultar completamente la navegación en móvil */
  }
  .nav {
    justify-content: space-between; /* Mantener logo a la izquierda y CTA a la derecha */
  }
  .cta-desktop {
    display: inline-block !important; /* Mantener visible el botón desktop */
  }
  .cta-mobile {
    display: none !important; /* Ocultar el botón móvil */
  }
}

/* Banners */
.banner {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-muted);
  background: #fff;
}
.banner .wrap {
  padding: 6px 0;
}
.banner img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Secciones */
section {
  padding: 56px 0;
  position: relative;
}

.section--lavender {
  background: var(--surface-lavender);
}

.section--sage {
  background: var(--surface-sage);
}

.white-background {
  background: #fff;
}

/* Mejoras para visualización móvil */
@media (max-width: 600px) {
  body {
    font-size: 16px;
    padding: 0;
  }
  .container {
    padding: 0 8px;
  }
  header {
    padding: 0;
    border-radius: 0;
  }
  .nav {
    justify-content: space-between; /* Mantener flexbox con logo y CTA */
  }
  .nav {
    padding: 1rem;
  }
}
.section-title {
  font-size: clamp(22px, 3.5vw, 32px);
  margin: 0 0 8px;
  z-index: 4;
}
.section-sub {
  opacity: 0.9;
  margin: 0 0 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Cards */
.card {
  position: relative;
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--color-muted);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card h3 {
  margin: 8px 0 8px;
  font-size: 18px;
}
.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.card--lavender {
  background: var(--surface-lavender);
  border-color: rgba(213, 157, 229, 0.45);
}
.card--lavender .pill {
  background: var(--pill-lavender);
}
.card--sage {
  background: var(--surface-sage);
  border-color: rgba(180, 196, 159, 0.45);
}
.card--sage .pill {
  background: var(--pill-sage);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  position: relative;
  border: 1px solid var(--color-muted);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.step strong {
  display: block;
  font-size: 13px;
  color: #5b5565;
  margin-bottom: 6px;
}
.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.steps .step:nth-child(1) {
  border-color: rgba(213, 157, 229, 0.4);
}
.steps .step:nth-child(2) {
  border-color: rgba(180, 196, 159, 0.4);
}
.steps .step:nth-child(3) {
  border-color: rgba(213, 157, 229, 0.32);
}

/* Métricas de eficacia */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat {
  background: #fff;
  border: 1px solid var(--color-muted);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
.stat strong {
  display: block;
  font-size: 28px;
}
.stat span {
  display: block;
  font-size: 14px;
  opacity: 0.85;
}

/* Equipo */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.member {
  background: #fff;
  border: 1px solid var(--color-muted);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
.member h3 {
  margin: 6px 0 4px;
  font-size: 18px;
}
.member p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* Lista incluye */
.includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.includes li {
  list-style: none;
  padding: 12px 14px;
  border: 1px solid var(--color-muted);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* FAQ */
.faq {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 20px;
}
.faq details {
  border: 1px solid var(--color-muted);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.faq details + details {
  margin-top: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  outline: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq p {
  margin: 10px 0 0;
}

/* Ilustraciones integradas */
.with-illustration {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}
.illustration {
  max-width: 360px;
  margin-inline: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08));
}
.illu-right {
  justify-self: end;
}

/* Flores decorativas */
.section-deco {
  position: relative;
}
.flower {
  position: absolute;
  opacity: 0.3;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.08));
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.flower--sm {
  width: 90px;
}
.flower--md {
  width: 140px;
}
.flower--lg {
  width: 180px;
}

/* Justificado */
#bienvenida p,
#fibromialgia p {
  text-align: justify;
  text-justify: inter-word;
}

/* Flor de equipo sobre el contenido (sin tapar en móvil) */
.flower--team {
  top: -12px;
  right: 12px;
  z-index: 3;
  opacity: 0;
}

/* CONTACTO limpio con límite de palabras */
.contact-wrap {
  max-width: 820px;
  margin-inline: auto;
}
.contact-form {
  display: grid;
  gap: 18px;
}

/* Dos columnas seguras contra solapamiento */
.field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-muted);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  background: #fff;
  min-width: 0;
}

/* Evitar que el usuario cambie el tamaño del cuadro de mensaje */
.contact-form textarea {
  resize: none;
}

.contact-form label {
  display: block;
  margin-bottom: 0;
  font-size: 14px;
}
.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}
.consent-row input {
  margin-top: 4px;
}
.note {
  font-size: 13px;
  opacity: 0.85;
  margin: 4px 0 0;
}
.note.center {
  text-align: center;
}
.note.error {
  color: #a22;
  opacity: 1;
}
.submit-wrap {
  display: flex;
  justify-content: center;
}
.submit-wrap .cta {
  width: 100%;
  max-width: 420px;
}

/* Responsive */
@media (max-width: 960px) {
  .grid-3,
  .steps,
  .stats,
  .team {
    grid-template-columns: 1fr;
  }
  .includes {
    grid-template-columns: 1fr;
  }
  .with-illustration {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .with-illustration > .illu-right {
    order: -1;
    justify-self: center;
  }
  .with-illustration > div:first-child {
    order: 0;
  }
  .illustration {
    max-width: 320px;
  }
  .illu-right {
    justify-self: center;
  }
  .flower {
    opacity: 0.22;
  }
  .flower--team {
    z-index: 0;
    opacity: 0.18;
    right: 6px;
    top: -6px;
    width: 72px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .label-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* CARDS */
/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(
      1200px 1200px at 10% 10%,
      #dff8ea 10%,
      transparent 60%
    ),
    radial-gradient(1200px 1200px at 90% 20%, #dff8ea 10%, transparent 60%),
    var(--bg);
}

/* Enhanced Pricing Cards - Similar to Image */
.pricing-cards {
  max-width: 1060px;
  margin: 48px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 32px;
}

.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(213, 157, 229, 0.1);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card__header {
  background: linear-gradient(135deg, #d59de5 0%, #b485e6 100%);
  color: #ffffff;
  padding: 24px 20px 20px;
  text-align: center;
  position: relative;
}

.pricing-card__title {
  font-weight: 800;
  font-size: 24px;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
}

.pricing-card__price {
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  margin: 0;
  letter-spacing: -1px;
}

.pricing-card__price-currency {
  font-size: 0.6em;
  font-weight: 700;
  opacity: 0.9;
  vertical-align: top;
  margin-right: 2px;
}

.pricing-card__price-period {
  font-weight: 700;
  font-size: 0.4em;
  opacity: 0.9;
  display: block;
  margin-top: 4px;
}

.pricing-card__body {
  padding: 28px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-card__subtitle {
  font-weight: 700;
  font-size: 16px;
  color: #23262f;
  margin: 0 0 8px 0;
}

.pricing-card__description {
  color: #5d6778;
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 24px 0;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
  font-size: 14px;
  color: #23262f;
}

.pricing-card__check {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: #e9fff1;
  border: 2px solid #19c37d;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.pricing-card__check::before {
  content: "✓";
  color: #19c37d;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
}

.pricing-card__note {
  color: #5d6778;
  font-size: 11px;
  line-height: 1.3;
  margin: 0;
  font-style: italic;
  padding: 12px 16px;
  background: rgba(213, 157, 229, 0.08);
  border-radius: 8px;
  border-left: 3px solid #d59de5;
}

.pricing-card__cta {
  padding: 0 24px 24px;
  margin-top: auto;
}

.pricing-card__button {
  width: 100%;
  border: 0;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 16px;
  padding: 16px 20px;
  cursor: pointer;
  background: linear-gradient(135deg, #d59de5 0%, #b485e6 100%);
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(213, 157, 229, 0.3);
}

.pricing-card__button:hover {
  background: linear-gradient(135deg, #b485e6 0%, #9b6ed6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(213, 157, 229, 0.4);
}

.pricing-card__button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(213, 157, 229, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 32px auto;
  }

  .pricing-card__header {
    padding: 20px 16px 16px;
  }

  .pricing-card__title {
    font-size: 22px;
  }

  .pricing-card__price {
    font-size: 36px;
  }

  .pricing-card__body {
    padding: 24px 20px 16px;
  }

  .pricing-card__cta {
    padding: 0 20px 20px;
  }
}

@media (max-width: 480px) {
  .pricing-cards {
    padding: 0 16px;
  }

  .pricing-card__header {
    padding: 18px 12px 14px;
  }

  .pricing-card__body {
    padding: 20px 16px 12px;
  }

  .pricing-card__cta {
    padding: 0 16px 16px;
  }
}

/* Plans Cards Section - Based on Image Design */
.plans-cards {
  text-align: center;
  margin-bottom: 1.125rem;
  background: linear-gradient(135deg, #d59de5 0%, #b485e6 100%);
  border-radius: 1rem;
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  box-shadow: 0 8px 32px rgba(213, 157, 229, 0.32),
    0 4px 16px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0 8px 32px rgba(213, 157, 229, 0.32),
    0 4px 16px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 8px 32px rgba(213, 157, 229, 0.32),
    0 4px 16px rgba(0, 0, 0, 0.16);
  z-index: 1;
}
.plans-cards::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: rgba(213, 157, 229, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.plans-cards__title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #23262f;
  margin: 0 0 50px 0;
  position: relative;
  z-index: 2;
}

.plans-cards__container {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.plans-card {
  background: #f8f9fa; /* light grey background */
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.plans-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.plans-card__header {
  background: #d59de5; /* light purple banner */
  color: #23262f;
  padding: 20px 24px;
  text-align: center;
  border-radius: 20px 20px 0 0;
}

.plans-card__title {
  font-weight: 800;
  font-size: 22px;
  margin: 0;
  color: #23262f;
}

.plans-card__price {
  background: #d59de5;
  color: #23262f;
  text-align: center;
  padding: 16px 24px 24px;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
}

.plans-card__price-period {
  font-weight: 700;
  font-size: 0.5em;
  opacity: 0.9;
  display: block;
  margin-top: 4px;
}

.plans-card__body {
  padding: 28px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plans-card__subtitle {
  font-weight: 700;
  font-size: 16px;
  color: #23262f;
  margin: 0 0 8px 0;
}

.plans-card__description {
  color: #5d6778;
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 24px 0;
}

.plans-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plans-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
  font-size: 14px;
  color: #23262f;
}

.plans-card__check {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: #e9fff1;
  border: 2px solid #19c37d;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.plans-card__check::before {
  content: "✓";
  color: #19c37d;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
}

.plans-card__price-note {
  color: #5d6778;
  font-size: 0.9em;
  font-weight: 400;
}

.plans-card__note {
  color: #5d6778;
  font-size: 11px;
  line-height: 1.3;
  margin: 0;
  font-style: italic;
}

.plans-card__cta {
  padding: 0 24px 24px;
  margin-top: auto;
}

.plans-card__button {
  width: 100%;
  border: 0;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 16px;
  padding: 16px 20px;
  cursor: pointer;
  background: #b485e6; /* darker purple button */
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(180, 133, 230, 0.3);
}

.plans-card__button:hover {
  background: #9b6ed6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 133, 230, 0.4);
}

.plans-card__button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(180, 133, 230, 0.3);
}

/* Responsive Design for Plans Cards */
@media (max-width: 768px) {
  .plans-cards {
    padding: 40px 16px;
    margin: 40px 0;
  }

  .plans-cards__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .plans-cards__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .plans-card__header {
    padding: 18px 20px;
  }

  .plans-card__title {
    font-size: 20px;
  }

  .plans-card__price {
    font-size: 32px;
    padding: 14px 20px 20px;
  }

  .plans-card__body {
    padding: 24px 20px 16px;
  }

  .plans-card__cta {
    padding: 0 20px 20px;
  }
}

@media (max-width: 480px) {
  .plans-cards {
    padding: 30px 12px;
  }

  .plans-cards__title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .plans-card__header {
    padding: 16px 16px;
  }

  .plans-card__body {
    padding: 20px 16px 12px;
  }

  .plans-card__cta {
    padding: 0 16px 16px;
  }
}

/* Loading Spinner for Submit Button */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.cta.loading {
  position: relative;
  pointer-events: none;
}

.cta.loading .spinner {
  display: inline-block;
}

.cta:not(.loading) .spinner {
  display: none;
}

/* Form Success and Error States */
.note.success {
  color: #19c37d;
  background: rgba(25, 195, 125, 0.1);
  border: 1px solid rgba(25, 195, 125, 0.2);
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
}

.note.error {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.2);
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
}

.form-field input.error,
.form-field textarea.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.05);
}

.form-field input.error:focus,
.form-field textarea.error:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Loading state for submit button */
.cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.cta:disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* PLANS CARDS */
.section-plans {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 3rem 1rem;
  border-radius: 1rem;
}
.plans-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3rem;
}

.cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cards .card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.cards .card:hover {
  transform: translateY(-4px);
}

.pricing-cards {
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 48px auto;
  max-width: 900px;
}

.plan-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-muted);
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  min-width: 280px;
  max-width: 340px;
  flex: 1 1 320px;
  transition: transform 0.18s, box-shadow 0.18s;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(213, 157, 229, 0.13);
}

.plan-title {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin: 0 0 1.5rem 0;
  text-align: center;
  font-weight: 400;
}

.plan-price {
  text-align: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #d59de5 0%, #b485e6 100%);
  border-radius: 1rem;
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  box-shadow: 0 4px 16px rgba(213, 157, 229, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 4px 16px rgba(213, 157, 229, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 4px 16px rgba(213, 157, 229, 0.18),
    0 2px 12px rgba(0, 0, 0, 0.16);
}

.plan-price small {
  font-weight: lighter;
  display: flex;
  align-items: center;
  justify-items: center;
}

.price-main {
  font-size: 1.3rem;
  font-weight: 900;
  margin-right: 6px;
}

.plan-price small {
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
}

.plan-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  font-style: italic;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  font-size: 15px;
  color: var(--color-dark);
  padding-left: 0;
  position: relative;
}

.plan-btn {
  width: 100%;
  background: linear-gradient(135deg, #d59de5 0%, #b485e6 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 14px;
  padding: 14px 0;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(213, 157, 229, 0.18);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  margin-top: auto;
}

.plan-btn:hover {
  background: linear-gradient(135deg, #b485e6 0%, #9b6ed6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(213, 157, 229, 0.22);
}

.plans-logo {
  width: 200px;
  position: absolute;
  right: 2rem;
  top: 1rem;

  @media (max-width: 900px) {
    display: none;
  }
}

@media (max-width: 700px) {
  .pricing-cards {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .plan-card {
    max-width: 100%;
    width: 100%;
    padding: 24px 14px 18px;
  }
}

.margin-top-50 {
  margin-top: 50px;
}

.padding-top-50 {
  padding-top: 50px;
}

.padding-bottom-50 {
  padding-bottom: 50px;
}

.plan-note {
  text-align: center;
}
