/* Secciones de ficha de producto Nuvexa (compartidas por las 6 paginas). */
.nuvexa-phero {
    --nuvexa-phero-bg: #1e1423;
    --nuvexa-phero-text: #ffffff;
    --nuvexa-phero-accent: #f4a8d8;
    --nuvexa-phero-accent-rgb: 244, 168, 216;
    --nuvexa-phero-grad-1: #4b47ff;
    --nuvexa-phero-grad-2: #fdba74;
    --nuvexa-phero-pt: 40px;
    --nuvexa-phero-pb: 40px;
    background-color: var(--nuvexa-phero-bg);
    color: var(--nuvexa-phero-text);
    padding-top: var(--nuvexa-phero-pt);
    padding-bottom: var(--nuvexa-phero-pb);
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
  }

  .nuvexa-phero__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5vw;
    width: 100%;
  }

  .nuvexa-phero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  /* --- LEFT SIDE: CONTENT --- */
  .nuvexa-phero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nuvexa-phero__status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #CBD5E1;
    margin-bottom: 2rem;
  }

  .nuvexa-phero__status-dot {
    width: 6px;
    height: 6px;
    background-color: #10B981; /* Green available dot */
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 8px #10B981;
  }

  .nuvexa-phero__status-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    background-color: inherit;
    border-radius: 50%;
    animation: nuvexa-radar 2s infinite ease-out;
  }

  @keyframes nuvexa-radar {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
  }

  .nuvexa-phero__heading {
    font-family: var(--font-h);
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25em;
  }

  .nuvexa-phero__heading-base {
    color: #FFFFFF;
  }

  .nuvexa-phero__heading-accent {
    color: var(--nuvexa-phero-grad-2); /* Fallback */
    background: linear-gradient(135deg, var(--nuvexa-phero-grad-1) 0%, var(--nuvexa-phero-grad-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.15em; /* Anti-clipping safety */
    padding-right: 0.1em;
    margin-bottom: -0.15em;
  }

  .nuvexa-phero__description {
    font-family: var(--font-b);
    font-size: 1.15rem;
    line-height: 1.6;
    color: #94A3B8;
    max-width: 500px;
    margin: 0 0 2.5rem 0;
  }

  /* Stats Row */
  .nuvexa-phero__stats-container {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.8rem 0;
    margin-bottom: 2.5rem;
  }

  .nuvexa-phero__stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .nuvexa-phero__stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .nuvexa-phero__stat-value {
    font-family: var(--font-h);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -0.02em;
  }

  .nuvexa-phero__stat-label {
    font-family: var(--font-b);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94A3B8;
    margin: 0;
  }

  /* Actions */
  .nuvexa-phero__actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
  }

  .nuvexa-phero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem 1.8rem;
    font-family: var(--font-b);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .nuvexa-phero__btn--primary {
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #FFFFFF;
  }

  .nuvexa-phero__btn--primary:hover {
    background-color: #f1f1f1;
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
    transform: translateY(-2px);
  }

  .nuvexa-phero__btn-arrow {
    transition: transform 0.3s ease;
  }

  .nuvexa-phero__btn--primary:hover .nuvexa-phero__btn-arrow {
    transform: translateX(4px);
  }

  .nuvexa-phero__btn--outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nuvexa-phero__btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
  }

  /* --- RIGHT SIDE: MEDIA --- */
  .nuvexa-phero__media {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .nuvexa-phero__media-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: visible; /* To allow rings to pop out slightly */
  }

  .nuvexa-phero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: transform 10s ease;
  }

  .nuvexa-phero__placeholder {
    width: 100%;
    height: 100%;
    background-color: #1A1525;
    border-radius: 20px;
  }

  .nuvexa-phero__media-wrapper:hover .nuvexa-phero__image {
    transform: scale(1.03);
  }

  /* Floating Glass Card */
  .nuvexa-phero__floating-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    z-index: 10;
  }

  .nuvexa-phero__floating-title {
    font-family: var(--font-h);
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 0.3rem 0;
  }

  .nuvexa-phero__floating-subtitle {
    font-family: var(--font-b);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94A3B8;
    margin: 0;
  }

  /* Animated Concentric Rings */
  .nuvexa-phero__rings-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    transform: translate(25%, 25%);
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .nuvexa-phero__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
  }

  .nuvexa-phero__ring--outer {
    width: 100%;
    height: 100%;
    animation: nuvexa-spin 20s linear infinite;
  }

  .nuvexa-phero__ring--inner {
    width: 70%;
    height: 70%;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    animation: nuvexa-spin 15s linear infinite reverse;
  }

  .nuvexa-phero__ring-icon {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.4);
  }

  @keyframes nuvexa-spin {
    100% { transform: rotate(360deg); }
  }

  /* Reveal Animations */
  .nuvexa-phero--reveal-fade .vue-reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .nuvexa-phero.is-visible .vue-reveal-item,
  .nuvexa-phero.is-editor .vue-reveal-item {
    opacity: 1;
    transform: translateY(0);
  }

  .nuvexa-phero.is-visible .vue-reveal-item:nth-child(2) { transition-delay: 0.1s; }
  .nuvexa-phero.is-visible .vue-reveal-item:nth-child(3) { transition-delay: 0.2s; }
  .nuvexa-phero.is-visible .vue-reveal-item:nth-child(4) { transition-delay: 0.3s; }
  .nuvexa-phero.is-visible .vue-reveal-item:nth-child(5) { transition-delay: 0.4s; }
  .nuvexa-phero.is-visible .nuvexa-phero__media { transition-delay: 0.45s; }

  /* Responsive Constraints */
  @media (max-width: 1024px) {
    .nuvexa-phero__grid { gap: 4rem; }
  }

  @media (max-width: 768px) {
    .nuvexa-phero__grid { grid-template-columns: 1fr; gap: 4rem; }
    .nuvexa-phero__heading { font-size: 3.5rem; }
    .nuvexa-phero__btn { width: 100%; }
    .nuvexa-phero__stats-grid { flex-wrap: wrap; }
    .nuvexa-phero__stat-item { flex: 1 1 45%; }
  }

.nuvexa-potency {
    --nuvexa-potency-bg: #f8f9fa;
    --nuvexa-potency-text: #2d1b2e;
    --nuvexa-potency-accent: #4a2b42;
    --nuvexa-potency-competitor-bar: #cbd5e1;
    --nuvexa-potency-card-bg: #ffffff;
    --nuvexa-potency-pt: 40px;
    --nuvexa-potency-pb: 40px;
    background-color: var(--nuvexa-potency-bg);
    padding-top: var(--nuvexa-potency-pt);
    padding-bottom: var(--nuvexa-potency-pb);
    overflow: hidden;
    font-family: var(--font-b);
  }

  .nuvexa-potency__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5vw;
  }

  .nuvexa-potency__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* 55% / 45% Split */
    gap: 5rem;
    align-items: center;
  }

  /* --- LEFT COLUMN: EDITORIAL & CHART --- */
  .nuvexa-potency__left-col {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .nuvexa-potency__editorial {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .nuvexa-potency__heading {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--nuvexa-potency-accent); /* Dark purple based on reference */
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.15;
  }

  .nuvexa-potency__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555B6E; /* Dark slate grey for readability on light bg */
    margin: 0;
    max-width: 95%;
  }

  /* Chart Card */
  .nuvexa-potency__chart-card {
    background-color: var(--nuvexa-potency-card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
  }

  .nuvexa-potency__chart-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .nuvexa-potency__chart-title {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--nuvexa-potency-text);
    margin: 0;
  }

  .nuvexa-potency__bars-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .nuvexa-potency__bar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .nuvexa-potency__bar-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .nuvexa-potency__bar-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #718096;
  }

  .nuvexa-potency__bar-label.is-nuvexa {
    color: var(--nuvexa-potency-text);
    font-weight: 700;
    font-size: 0.95rem;
  }

  .nuvexa-potency__bar-value {
    font-family: var(--font-h);
    font-size: 0.9rem;
    font-weight: 600;
    color: #718096;
  }

  .nuvexa-potency__bar-value.is-nuvexa {
    color: var(--nuvexa-potency-accent);
    font-weight: 800;
    font-size: 1rem;
  }

  .nuvexa-potency__bar-track {
    width: 100%;
    height: 10px;
    background-color: #EDF2F7; /* Light grey track */
    border-radius: 100px;
    overflow: hidden;
  }

  .nuvexa-potency__bar-fill {
    height: 100%;
    background-color: var(--nuvexa-potency-competitor-bar);
    border-radius: 100px;
    transition: width 1.8s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .nuvexa-potency__bar-fill.is-nuvexa {
    background-color: var(--nuvexa-potency-accent);
  }

  .nuvexa-potency__footnote {
    margin-top: 2rem;
    font-size: 0.75rem;
    font-style: italic;
    color: #A0AEC0;
  }

  /* --- RIGHT COLUMN: FEATURES --- */
  .nuvexa-potency__features-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .nuvexa-potency__feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin: -1rem; /* Negative margin to keep alignment while allowing padding */
  }

  .nuvexa-potency__feature-item:hover {
    background-color: #FFFFFF;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  }

  .nuvexa-potency__feature-icon-box {
    width: 44px;
    height: 44px;
    background-color: #EFE9F4; /* Light tinted purple */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }

  .nuvexa-potency__feature-icon-box svg {
    width: 20px;
    height: 20px;
  }

  .nuvexa-potency__feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .nuvexa-potency__feature-title {
    font-family: var(--font-h);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--nuvexa-potency-text);
    margin: 0;
  }

  .nuvexa-potency__feature-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555B6E;
    margin: 0;
  }

  /* Reveal Animations */
  .nuvexa-potency--reveal-fade .vue-reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .nuvexa-potency.is-visible .vue-reveal-item,
  .nuvexa-potency.is-editor .vue-reveal-item {
    opacity: 1;
    transform: translateY(0);
  }

  .nuvexa-potency.is-visible .nuvexa-potency__chart-card { transition-delay: 0.2s; }

  /* Responsive Constraints */
  @media (max-width: 1024px) {
    .nuvexa-potency__grid { grid-template-columns: 1fr; gap: 4rem; }
    .nuvexa-potency__left-col { max-width: 800px; margin: 0 auto; width: 100%; }
    .nuvexa-potency__right-col { max-width: 800px; margin: 0 auto; width: 100%; }
    .nuvexa-potency__feature-item { margin: 0; padding: 0; }
    .nuvexa-potency__feature-item:hover { background-color: transparent; transform: none; box-shadow: none;}
  }

  @media (max-width: 768px) {
    .nuvexa-potency__chart-card { padding: 1.5rem; }
    .nuvexa-potency__heading { font-size: 2.2rem; }
    .nuvexa-potency__feature-item { gap: 1rem; }
  }

.nuvexa-purity {
    --nuvexa-purity-bg: #15111a;
    --nuvexa-purity-text: #ffffff;
    --nuvexa-purity-accent: #9f628d;
    --nuvexa-purity-card-bg: #221d28;
    --nuvexa-purity-check-bg: #10b981;
    --nuvexa-purity-pt: 40px;
    --nuvexa-purity-pb: 40px;
    background-color: var(--nuvexa-purity-bg);
    color: var(--nuvexa-purity-text);
    padding-top: var(--nuvexa-purity-pt);
    padding-bottom: var(--nuvexa-purity-pb);
    overflow: hidden;
    font-family: var(--font-b);
  }

  .nuvexa-purity__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5vw;
  }

  .nuvexa-purity__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Slightly larger left side */
    gap: 6rem;
    align-items: center;
  }

  /* --- LEFT COLUMN: EDITORIAL --- */
  .nuvexa-purity__left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nuvexa-purity__eyebrow {
    font-family: var(--font-b);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--nuvexa-purity-accent);
    margin-bottom: 1.2rem;
  }

  .nuvexa-purity__heading {
    font-family: var(--font-h);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
  }

  .nuvexa-purity__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #A0AEC0; /* Slate 400 for good contrast on dark */
    margin: 0 0 2.5rem 0;
    max-width: 90%;
  }

  /* Checklist */
  .nuvexa-purity__checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 3.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .nuvexa-purity__check-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }

  .nuvexa-purity__check-icon {
    width: 24px;
    height: 24px;
    background-color: var(--nuvexa-purity-check-bg);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.4); /* Green glow */
  }

  .nuvexa-purity__check-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #E2E8F0;
  }

  /* CTA Link */
  .nuvexa-purity__cta-wrapper {
    margin-top: 1rem;
  }

  .nuvexa-purity__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-b);
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    padding-bottom: 0.3rem;
    position: relative;
  }

  .nuvexa-purity__cta-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,0.4);
    transform-origin: right;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .nuvexa-purity__cta-arrow {
    transition: transform 0.3s ease;
  }

  .nuvexa-purity__cta-link:hover::after {
    background-color: #FFFFFF;
    transform: scaleX(0);
    transform-origin: left;
  }

  .nuvexa-purity__cta-link:hover .nuvexa-purity__cta-arrow {
    transform: translateX(4px);
  }


  /* --- RIGHT COLUMN: 2x2 GRID CARDS --- */
  .nuvexa-purity__cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .nuvexa-purity__card {
    background-color: var(--nuvexa-purity-card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    min-height: 180px;
  }

  .nuvexa-purity__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.15);
  }

  .nuvexa-purity__card-value {
    font-family: var(--font-h);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .nuvexa-purity__card-label {
    font-family: var(--font-b);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #718096; /* Slate 500 */
    margin: 0;
  }

  /* Reveal Animations */
  .nuvexa-purity--reveal-fade .vue-reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .nuvexa-purity.is-visible .vue-reveal-item,
  .nuvexa-purity.is-editor .vue-reveal-item {
    opacity: 1;
    transform: translateY(0);
  }

  .nuvexa-purity.is-visible .nuvexa-purity__eyebrow { transition-delay: 0.1s; }
  .nuvexa-purity.is-visible .nuvexa-purity__heading { transition-delay: 0.2s; }
  .nuvexa-purity.is-visible .nuvexa-purity__description { transition-delay: 0.3s; }

  /* Responsive Constraints */
  @media (max-width: 1024px) {
    .nuvexa-purity__grid { grid-template-columns: 1fr; gap: 5rem; }
    .nuvexa-purity__left-col { max-width: 800px; }
  }

  @media (max-width: 600px) {
    .nuvexa-purity__cards-grid { grid-template-columns: 1fr; }
    .nuvexa-purity__card { min-height: auto; padding: 2.5rem 2rem; }
    .nuvexa-purity__heading { font-size: 2.8rem; }
  }

.nuvexa-cta {
    --nuvexa-cta-bg: #f4f6f9;
    --nuvexa-cta-text: #2d3748;
    --nuvexa-cta-desc: #718096;
    --nuvexa-cta-accent: #43243c;
    --nuvexa-cta-accent-hover: #64365a;
    --nuvexa-cta-pt: 40px;
    --nuvexa-cta-pb: 40px;
    background-color: var(--nuvexa-cta-bg);
    padding-top: var(--nuvexa-cta-pt);
    padding-bottom: var(--nuvexa-cta-pb);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nuvexa-cta__inner {
    width: 100%;
    max-width: 900px; /* Constraints reading width for elegance */
    margin: 0 auto;
    padding: 0 5vw;
  }

  .nuvexa-cta__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nuvexa-cta__heading {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--nuvexa-cta-text);
    margin: 0 0 1.2rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .nuvexa-cta__description {
    font-family: var(--font-b);
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    line-height: 1.6;
    color: var(--nuvexa-cta-desc);
    margin: 0 0 3.5rem 0;
    max-width: 750px;
    text-wrap: balance;
  }

  /* Actions & Buttons */
  .nuvexa-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
  }

  .nuvexa-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-b);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .nuvexa-cta__btn--primary {
    background-color: var(--nuvexa-cta-accent);
    color: #FFFFFF;
    border: 1px solid var(--nuvexa-cta-accent);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.15);
  }

  .nuvexa-cta__btn--primary:hover {
    background-color: var(--nuvexa-cta-accent-hover);
    border-color: var(--nuvexa-cta-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(0,0,0,0.2);
  }

  .nuvexa-cta__btn--secondary {
    background-color: #FFFFFF;
    color: var(--nuvexa-cta-text);
    border: 1px solid #E2E8F0; /* Light gray border */
  }

  .nuvexa-cta__btn--secondary:hover {
    border-color: #CBD5E1;
    background-color: #F8FAFC;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.05);
  }

  /* Reveal Animations */
  .nuvexa-cta--reveal-fade .vue-reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .nuvexa-cta.is-visible .vue-reveal-item,
  .nuvexa-cta.is-editor .vue-reveal-item {
    opacity: 1;
    transform: translateY(0);
  }

  .nuvexa-cta.is-visible .vue-reveal-item:nth-child(2) { transition-delay: 0.15s; }
  .nuvexa-cta.is-visible .vue-reveal-item:nth-child(3) { transition-delay: 0.3s; }

  /* Responsive */
  @media (max-width: 600px) {
    .nuvexa-cta__actions {
      flex-direction: column;
      gap: 1rem;
    }
    .nuvexa-cta__btn {
      width: 100%;
    }
  }