/* =======================================================================================================================
   RESET & BASE
   ======================================================================================================================= */

   :root {
    /* Espacios y paleta principal */
    --margin-h: 64px;
    --green-neutral: #6da08d;
    --green-medium: #269069;
    --green-high: #0bcf7d;
    --blue-dark: #0f2631;
    --white-neutral: #cecece;
    --bg-gradient-start: #0d3d39;
    --bg-gradient-end: #0f2631;
  
    /* Breakpoints */
    --bp-desktop: 1440px;
    --bp-tablet: 1024px;
    --bp-mobile: 768px;
  
    /* Container padding */
    --container-padding: 64px;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica,
      sans-serif;
    color: var(--white-neutral);
    background: var(--blue-dark);
  }
  
  /* Base styles to prevent horizontal scroll */
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }
  
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }
  
  /* =======================================================================================================================
     HERO PRICING SECTION
     ======================================================================================================================= */
  
  .hero-solana-ai {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-top: 72px;
    padding: 128px 0 60px 0;
    background: radial-gradient(163.72% 221.64% at 48.54% 99.96%, #0A1921 33.45%, rgba(11, 207, 125, 0.3) 100%);
    box-sizing: border-box;
  }
  
  .hero-solana-ai__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  
  .hero-solana-ai__title {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 65px;
    line-height: 125%;
    letter-spacing: 0%;
    text-align: center;
    background: linear-gradient(89.88deg, #BDFEE3 24.43%, #5CDFA8 58.4%, #A169E7 92.37%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
  }
  
  .hero-solana-ai__description {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 125%;
    letter-spacing: 0%;
    text-align: center;
    background: linear-gradient(90.05deg, #BDFEE3 15.45%, #5CDFA8 48.73%, #A169E7 82%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
  }
  
  .hero-solana-ai__plans {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    justify-content: center;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
  }
  
  .hero-solana-ai__plan-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0px 211px 84px 0px rgba(59, 130, 246, 0.01), 0px 330px 92px 0px rgba(59, 130, 246, 0);
    flex: 1;
    max-width: 380px;
    min-width: 320px;
    position: relative;
    box-sizing: border-box;
  }
  
  .hero-solana-ai__plan-card--dev {
    border: 2px solid #3B82F6;
    background: linear-gradient(180deg, #0F2631 0%, rgba(84, 96, 100, 0.5) 100%),
    radial-gradient(75.98% 75.98% at 50% 23.94%, rgba(38, 144, 105, 0.2) 0%, rgba(15, 38, 49, 0.2) 100%);
  }
  
  .hero-solana-ai__plan-card--pro {
    border: 2px solid #C084FC;
    background: linear-gradient(180deg, #0F2631 0%, rgba(84, 96, 100, 0.5) 100%),
    radial-gradient(75.98% 75.98% at 50% 23.94%, rgba(38, 144, 105, 0.2) 0%, rgba(15, 38, 49, 0.2) 100%);
  }
  
  .hero-solana-ai__plan-card--custom {
    border: 2px solid #0BCF7D;
    background: linear-gradient(180deg, #0F2631 0%, rgba(84, 96, 100, 0.5) 100%),
    radial-gradient(75.98% 75.98% at 50% 23.94%, rgba(38, 144, 105, 0.2) 0%, rgba(15, 38, 49, 0.2) 100%);
  }
  
  .hero-solana-ai__plan-card-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-solana-ai__plan-card-title {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #F8F8F8;
    margin: 0;
  }
  
  .hero-solana-ai__plan-card-price {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 65px;
    line-height: 75px;
    letter-spacing: 0%;
    color: #F8F8F8;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
  }
  
  .hero-solana-ai__plan-card-price-badge-container {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  
  .hero-solana-ai__plan-card-price-badge {
    font-size: 15px;
    font-weight: 700;
    border-radius: 5px;
    border: 1px solid #F8F8F8;
    color: #F8F8F8;
    font-family: Inter, sans-serif;
    padding: 5px 10px;
    white-space: nowrap;
    line-height: 20px;
  }
  
  .hero-solana-ai__plan-card-price-month {
    font-size: 25px;
    line-height: 40px;
    font-weight: 400;
    color: #F8F8F8;
    font-family: Inter, sans-serif;
    margin-top: -2px;
  }
  
  
  .hero-solana-ai__plan-card-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
  }
  
  .hero-solana-ai__plan-card-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-solana-ai__plan-card-feature-title {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #CECECE;
    margin: 0;
  }
  
  .hero-solana-ai__plan-card-feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-solana-ai__plan-card-feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0%;
    color: #BAC0C7;
  }
  
  .hero-solana-ai__plan-card-feature-subtitle {
    font-family: Inter, sans-serif;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0%;
    color: #BAC0C7;
    font-weight: 600;
    vertical-align: middle;
    margin: 0;
  }
  
  /* Puntos de colores según la tarjeta */
  .hero-solana-ai__plan-card--dev .hero-solana-ai__plan-card-feature-list-item::before {
    content: "●";
    color: #3B82F6;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 20px;
  }
  
  .hero-solana-ai__plan-card--pro .hero-solana-ai__plan-card-feature-list-item::before {
    content: "●";
    color: #C084FC;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 20px;
  }
  
  .hero-solana-ai__plan-card--custom .hero-solana-ai__plan-card-feature-list-item::before {
    content: "●";
    color: #0BCF7D;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 20px;
  }
  
  .hero-solana-ai__plan-card-feature-list-item span {
    flex: 1;
  }
  
  .hero-solana-ai__plan-card-feature-list-item strong {
    font-weight: 700;
  }
  
  .hero-solana-ai__plan-card-additional-text {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .hero-solana-ai__plan-card-additional-text p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0%;
    color: #BAC0C7;
    margin: 0;
    font-style: italic;
  }
  
  /* Coming Soon text styling */
  .coming-soon-text {
    color: #C084FC !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    margin-left: 4px;
    display: inline-block;
  }
  
  /* Lighter text for certain elements */
  .hero-solana-ai__plan-card-feature-list-item .lighter-text {
    color: var(--white-neutral) !important;
    font-weight: 400 !important;
    font-size: 13px !important;
  }
  
  .hero-solana-ai__actions {
    width: 100%;
    height: 70px;
    padding: 20px 40px;
    border-radius: 10px;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    margin-top: auto;
  }
  
  .hero-solana-ai__actions--dev {
    border-color: #3B82F6;
    background: #3B82F6;
  }
  
  .hero-solana-ai__actions--dev:hover {
    background: #60A5FA;
    color: #130520;
    transform: translateY(-2px);
  }
  
  .hero-solana-ai__actions--pro {
    border-color: #C084FC;
    background: transparent;
    cursor: not-allowed;
  }
  
  .hero-solana-ai__actions--pro:hover {
    background: #C084FC1A;
  }
  
  .hero-solana-ai__actions--custom {
    border-color: #0BCF7D;
    background: #0BCF7D;
  }
  
  .hero-solana-ai__actions--custom:hover {
    background: #2BF29F;
    color: #130520;
    transform: translateY(-2px);
  }
  
  /* Coming Soon Chip Styles */
  .hero-solana-ai__actions-chip {
    width: auto;
    height: 40px;
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(196, 132, 252, 0.15);
    border: 1px solid rgba(196, 132, 252, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: auto;
    cursor: not-allowed;
    align-self: center;
  }
  
  .hero-solana-ai__actions-chip-text {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: #C084FC;
    opacity: 0.8;
    white-space: nowrap;
  }
  
  .hero-solana-ai__actions-btn {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .hero-solana-ai__actions--dev .hero-solana-ai__actions-btn {
    color: #0F2631;
  }
  
  .hero-solana-ai__actions--pro .hero-solana-ai__actions-btn {
    color: #C084FC;
  }
  
  .hero-solana-ai__actions--custom .hero-solana-ai__actions-btn {
    color: #0F2631;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .hero-solana-ai {
      padding: 100px var(--container-padding) 60px var(--container-padding);
      gap: 60px;
    }
    
    .hero-solana-ai__title {
      font-size: 48px;
    }
    
    .hero-solana-ai__description {
      font-size: 28px;
    }
    
    .hero-solana-ai__plan-card-price {
      font-size: 48px;
      line-height: 55px;
    }
    
    .hero-solana-ai__plans {
      gap: 15px;
      padding: 0;
    }
    
    .hero-solana-ai__plan-card {
      flex: 1;
      min-width: 300px;
      max-width: 350px;
    }
    
    .compare-table-section__container {
      padding: 0 var(--container-padding);
    }
    
    .compare-table-cell {
      padding: 12px 15px;
      font-size: 14px;
    }
    
    .compare-table-cell--feature {
      width: 180px;
      min-width: 180px;
      max-width: 180px;
    }
    
    .compare-table-cell--dev,
    .compare-table-cell--pro,
    .compare-table-cell--custom {
      width: 120px;
      min-width: 120px;
      max-width: 120px;
    }
  }
  
  @media (max-width: 900px) {
    .hero-solana-ai {
      padding: 90px var(--container-padding) 50px var(--container-padding);
      gap: 50px;
    }
    
    .hero-solana-ai__title {
      font-size: 42px;
    }
    
    .hero-solana-ai__description {
      font-size: 24px;
    }
    
    .hero-solana-ai__plans {
      gap: 15px;
      padding: 0;
      justify-content: center;
    }
    
    .hero-solana-ai__plan-card {
      flex: 1;
      min-width: 280px;
      max-width: 320px;
      padding: 20px;
      gap: 30px;
    }
    
    .hero-solana-ai__plan-card-price {
      font-size: 42px;
      line-height: 48px;
    }
    
    .plan-price-custom {
      font-size: 22px;
    }
    
    .plan-price-row {
      min-height: 65px;
      height: 65px;
      padding-bottom: 16px;
    }
    
    .hero-solana-ai__plan-card-title {
      font-size: 22px;
      line-height: 28px;
      font-weight: 600;
    }
    
    .hero-solana-ai__plan-card-description {
      font-size: 18px;
      line-height: 26px;
    }
    
    .hero-solana-ai__plan-card-feature-title {
      font-size: 18px;
      line-height: 26px;
      font-weight: 400;
    }
    
    .hero-solana-ai__plan-card-feature-list-item {
      font-size: 14px;
      line-height: 22px;
    }
    
    .hero-solana-ai__actions {
      height: 55px;
      padding: 12px 25px;
    }
    
    .hero-solana-ai__actions-chip {
      height: 38px;
      padding: 7px 18px;
      border-radius: 19px;
    }
    
    .hero-solana-ai__actions-chip-text {
      font-size: 13px;
      line-height: 19px;
    }
    
    .hero-solana-ai__actions-btn {
      font-size: 17px;
      line-height: 26px;
    }
  }
  
  @media (max-width: 850px) {
    .hero-solana-ai__plans {
      flex-direction: column;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      padding: 0;
    }
    
    .hero-solana-ai__plan-card {
      max-width: 100%;
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 30px;
      min-width: unset;
      flex: none;
    }
    
    /* Show peek of next card */
    .hero-solana-ai__plan-card:not(:last-child) {
      margin-bottom: -20px;
    }
    
    /* Ensure buttons are properly sized and aligned */
    .hero-solana-ai__actions {
      height: 60px;
      padding: 15px 30px;
      margin-top: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      box-sizing: border-box;
    }
    
    .hero-solana-ai__actions-chip {
      height: 40px;
      padding: 8px 20px;
      margin-top: 20px;
      border-radius: 20px;
    }
    
    .hero-solana-ai__actions-chip-text {
      font-size: 14px;
      line-height: 20px;
    }
    
    .hero-solana-ai__actions-btn {
      font-size: 18px;
      line-height: 28px;
      width: 100%;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    .hero-solana-ai {
      padding: 80px var(--container-padding) 40px var(--container-padding);
      gap: 40px;
    }
    
    .compare-table-section__title {
      font-size: 24px;
      line-height: 32px;
    }
    
    .compare-table-section__description {
      font-size: 16px;
      line-height: 24px;
    }
    
    .compare-table-section__container {
      padding: 0 var(--container-padding);
    }
    
    /* Table container with horizontal scroll */
    .compare-table-section__table {
      overflow-x: auto;
      border-radius: 12px;
      border: 1px solid #334155;
      background: #0A1921;
      -webkit-overflow-scrolling: touch;
    }
    
    .compare-table-cell {
      padding: 12px 15px;
      font-size: 14px;
      line-height: 18px;
    }
    
    /* Fixed Feature column - 45% of screen width */
    .compare-table-cell--feature {
      position: sticky;
      left: 0;
      z-index: 10;
      background: #0A1921;
      width: 45%;
      min-width: 160px;
      max-width: 180px;
      justify-content: flex-start;
      text-align: left;
      font-weight: 500;
      color: #BAC0C7;
      border-top: 1px solid #3B82F666;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .compare-table-header .compare-table-cell--feature {
      font-weight: 600;
      text-align: center;
      justify-content: center;
      background: #0A1921;
      border-top: none;
      font-size: 16px;
      line-height: 22px;
    }
    
    /* Plan columns with equal width */
    .compare-table-cell--dev,
    .compare-table-cell--pro,
    .compare-table-cell--custom {
      width: 18%;
      min-width: 120px;
      max-width: 140px;
      text-align: center;
      justify-content: center;
    }
    
    .compare-table-header .compare-table-cell--dev,
    .compare-table-header .compare-table-cell--pro,
    .compare-table-header .compare-table-cell--custom {
      font-size: 16px;
      line-height: 22px;
    }
  
    .compare-table-cell--feature {
      width: 100px !important;
      min-width: 100px !important;
      max-width: 100px !important;
      position: sticky;
      left: 0;
      z-index: 10;
      background: #0A1921;
      justify-content: flex-start;
      text-align: left;
      font-weight: 500;
      color: #BAC0C7;
      border-top: 1px solid #3B82F666;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
  }
  
  @media (max-width: 480px) {
    .hero-solana-ai {
      padding: 70px var(--container-padding) 30px var(--container-padding);
      gap: 25px;
    }
    
    .hero-solana-ai__title {
      font-size: 32px;
    }
    
    .hero-solana-ai__description {
      font-size: 20px;
    }
    
    .hero-solana-ai__plans {
      max-width: 100%;
      gap: 25px;
    }
    
    .hero-solana-ai__plan-card {
      padding: 24px;
      gap: 20px;
      height: auto;
      min-height: auto;
    }
    
    .hero-solana-ai__plan-card-price {
      font-size: 40px;
      line-height: 45px;
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
    }
    
    .plan-price-custom {
      font-size: 20px;
      line-height: 24px;
    }
    
    .plan-price-row {
      min-height: 60px;
      height: 60px;
      padding-bottom: 14px;
    }
    
    .hero-solana-ai__plan-card-price-badge {
      margin-left: 0;
    }
    
    .hero-solana-ai__actions {
      height: 50px;
      padding: 12px 20px;
      margin-top: 15px;
      border-radius: 8px;
    }
    
    .hero-solana-ai__actions-chip {
      height: 34px;
      padding: 6px 16px;
      margin-top: 15px;
      border-radius: 17px;
    }
    
    .hero-solana-ai__actions-chip-text {
      font-size: 12px;
      line-height: 18px;
    }
    
    .hero-solana-ai__actions-btn {
      font-size: 16px;
      line-height: 24px;
    }
    
    /* Adjust card content spacing */
    .hero-solana-ai__plan-card-content {
      gap: 20px;
    }
    
    .hero-solana-ai__plan-card-features {
      gap: 12px;
    }
    
    .hero-solana-ai__plan-card-feature-list {
      gap: 10px;
    }
    
    .hero-solana-ai__plan-card-feature-list-item {
      font-size: 14px;
      line-height: 22px;
    }
    
    .hero-solana-ai__plan-card-feature-title {
      font-size: 18px;
      line-height: 26px;
      font-weight: 400;
    }
    
    .hero-solana-ai__plan-card-title {
      font-size: 22px;
      line-height: 28px;
      font-weight: 600;
    }
    
    .hero-solana-ai__plan-card-description {
      font-size: 18px;
      line-height: 26px;
    }
    
    .compare-table-section__title {
      font-size: 20px;
      line-height: 28px;
    }
    
    .compare-table-section__description {
      font-size: 14px;
      line-height: 20px;
    }
    
    .compare-table-section__container {
      padding: 0 var(--container-padding);
    }
    
    /* Adjust table cell padding for smaller screens */
    .compare-table-cell {
      padding: 10px 12px;
      font-size: 12px;
      line-height: 16px;
    }
    
    .compare-table-cell--feature {
      width: 45%;
      min-width: 140px;
      max-width: 160px;
    }
    
    .compare-table-cell--dev,
    .compare-table-cell--pro,
    .compare-table-cell--custom {
      width: 18%;
      min-width: 100px;
      max-width: 120px;
    }
    
    .compare-table-header .compare-table-cell--feature,
    .compare-table-header .compare-table-cell--dev,
    .compare-table-header .compare-table-cell--pro,
    .compare-table-header .compare-table-cell--custom {
      font-size: 14px;
      line-height: 18px;
    }
  
    .compare-table-cell--feature {
      width: 100px !important;
      min-width: 100px !important;
      max-width: 100px !important;
    }
  }
  
  .main-header__link.w--current, .footer__link.w--current {
    color: var(--green-high) !important;
    font-weight: 600;
  }
  
  .main-header__start-btn,
  .mobile-menu__start-btn {
    text-decoration: none !important;
  }
  
  /* Compare Table Section */
  .compare-table-section {
    background: #0A1921;
    padding: 80px 0;
  }
  
  .compare-table-section__container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 var(--container-padding);
  }
  
  .compare-table-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .compare-table-section__title {
    text-align: center;
    font-family: 'Fira Code', monospace;
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    margin: 0;
    background: linear-gradient(90.02deg, #BDFEE3 26.88%, #0BCF7D 51.05%, #9846FF 75.22%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .compare-table-section__line {
    width: 200px;
    height: 5px;
    border-radius: 9999px;
    background: var(--green-medium, #269069);
    margin: 0 auto;
  }
  
  .compare-table-section__description {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #BAC0C7;
    margin: 0;
    padding-top: 8px;
    padding-bottom: 20px;
  }
  
  /* Compare Table */
  .compare-table-section__table {
    border-radius: 12px;
    border: 1px solid #334155;
    background: #0A1921;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
    cursor: grab;
    user-select: none;
  }
  
  .compare-table-section__table:active {
    cursor: grabbing;
  }
  
  .compare-table-section__table::-webkit-scrollbar {
    height: 6px;
  }
  
  .compare-table-section__table::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
  }
  
  .compare-table-section__table::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    transition: background 0.2s ease;
  }
  
  .compare-table-section__table::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
  }
  
  .compare-table-section__table::-webkit-scrollbar-corner {
    background: transparent;
  }
  
  .compare-table-wrapper {
    display: table;
    min-width: 100%;
    width: 100%;
    border-collapse: collapse;
  }
  
  .compare-table-row {
    display: table-row;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .compare-table-row:last-child {
    border-bottom: none;
  }
  
  .compare-table-row:first-child {
    border-bottom: 1px solid #3B82F666;
  }
  
  .compare-table-header {
    background: #0A1921;
  }
  
  /* Border radius para esquinas */
  .compare-table-header .compare-table-cell--feature {
    border-top-left-radius: 12px;
  }
  
  .compare-table-header .compare-table-cell--custom {
    border-top-right-radius: 12px;
  }
  
  .compare-table-cell {
    display: table-cell;
    padding: 15px 25px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    vertical-align: middle;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
    color: #D1D5DB;
  }
  
  .compare-table-cell:last-child {
    border-right: none;
  }
  
  .compare-table-cell--feature {
    position: sticky;
    left: 0;
    z-index: 10;
    background: #0A1921;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    justify-content: flex-start;
    text-align: left;
    font-weight: 500;
    font-size: 12px;
    color: #BAC0C7;
    border-top: 1px solid #3B82F666;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .compare-table-header .compare-table-cell--feature {
    font-weight: 600;
    text-align: center;
    justify-content: center;
    background: #0A1921;
    border-top: none;
  }
  
  /* Primera fila después del header - sin border-top */
  .compare-table-row:nth-child(2) .compare-table-cell--feature {
    border-top: none;
  }
  
  .compare-table-row:nth-child(2) .compare-table-cell--dev {
    border-top: none;
  }
  
  .compare-table-row:nth-child(2) .compare-table-cell--pro {
    border-top: none;
  }
  
  .compare-table-row:nth-child(2) .compare-table-cell--custom {
    border-top: none;
  }
  
  /* Dev Plan Column */
  .compare-table-cell--dev {
    color: #D1D5DB;
    font-weight: 400;
    font-size: 14px;
    background: #173953;
    border-top: 1px solid #3B82F6;
    width: 160px;
    min-width: 160px;
    max-width: 160px;
  }
  
  .compare-table-header .compare-table-cell--dev {
    background: #0A1921;
    color: #60A5FA;
    font-weight: 700;
    font-size: 18px;
    border-top: none;
  }
  
  /* Pro Plan Column */
  .compare-table-cell--pro {
    color: #D1D5DB;
    font-weight: 400;
    font-size: 14px;
    background: #313466;
    border-top: 1px solid #9D6FFF;
    width: 160px;
    min-width: 160px;
    max-width: 160px;
  }
  
  .compare-table-header .compare-table-cell--pro {
    background: #0A1921;
    color: #C486FF;
    font-weight: 700;
    font-size: 18px;
    border-top: none;
  }
  
  /* Custom Plan Column */
  .compare-table-cell--custom {
    color: #D1D5DB;
    font-weight: 400;
    font-size: 14px;
    background: #1A4A3A;
    border-top: 1px solid #0BCF7D;
    width: 160px;
    min-width: 160px;
    max-width: 160px;
  }
  
  .compare-table-header .compare-table-cell--custom {
    background: #0A1921;
    color: #2BF29F;
    font-weight: 700;
    font-size: 18px;
    border-top: none;
  }
  
  /* Disabled cells (X) */
  .compare-table-cell--disabled {
    color: #5B6167 !important;
    font-weight: 500 !important;
  }
  
  /* Excepciones - celdas que NO deben tener bold (según las cruces en la imagen) */
  /* Collaboration/Test me SSO - Dev column */
  .compare-table-row:nth-child(12) .compare-table-cell--dev {
    font-weight: 500;
  }
  
  /* Security scans - All columns */
  .compare-table-row:nth-child(13) .compare-table-cell--dev,
  .compare-table-row:nth-child(13) .compare-table-cell--pro,
  .compare-table-row:nth-child(13) .compare-table-cell--custom {
    font-weight: 500;
  }
  
  /* Dedicated support - Dev column */
  .compare-table-row:nth-child(14) .compare-table-cell--dev {
    font-weight: 500;
  }
  
  /* High-touch onboarding - Dev column */
  .compare-table-row:nth-child(15) .compare-table-cell--dev {
    font-weight: 500;
  }
  
  /* Animations */
  @keyframes slideInFromBottom {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInFromRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  /* Reveal animations */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }
  
  .reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.3s;
  }
  
  .reveal-left.active {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0s;
  }
  
  .reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.3s;
  }
  
  .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0s;
  }
  
  .reveal-bottom {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.4s;
  }
  
  .reveal-bottom.active {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }
  
  /* Staggered card animations */
  .pricing-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.5s;
  }
  
  .pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }
  
  /* Staggered button animations */
  .button-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .button-animation.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Ensure all columns are visible */
  .compare-table-cell--dev,
  .compare-table-cell--pro,
  .compare-table-cell--custom {
    display: table-cell;
  }
  
  .compare-table-btn--dev, .compare-table-btn--pro, .compare-table-btn--custom {
    background: none;
    border: 1.5px solid;
    border-radius: 8px;
    font-weight: 600;
    font-family: Inter, sans-serif;
    font-size: 13px;
    line-height: 18px;
    padding: 10px 0;
    width: 100%;
    display: block;
    text-align: center;
    transition: all 0.2s;
  }
  
  .compare-table-btn--dev {
    color: #60A5FA;
    border-color: #60A5FA;
  }
  
  .compare-table-btn--pro {
    color: #A78BFA;
    border-color: #A78BFA;
  }
  
  .compare-table-btn--custom {
    color: #2BF29F;
    border-color: #2BF29F;
  }
  
  .compare-table-btn--dev:hover {
    background: #60A5FA1A;
  }
  
  .compare-table-btn--pro:hover {
    background: #A78BFA1A;
  }
  
  .compare-table-btn--custom:hover {
    background: #2BF29F1A;
  }
  
  @media (max-width: 480px) {
    .compare-table-btn--dev, .compare-table-btn--pro, .compare-table-btn--custom {
      font-size: 11px;
      line-height: 15px;
      padding: 7px 0;
    }
  }
  
  .compare-table-row--buttons {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
  }
  
  .compare-table-row--buttons .compare-table-cell {
    background: transparent !important;
  }
  
  .plan-price-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-top: 8px;
    gap: 8px;
    width: 100%;
    min-height: 80px;
    height: 80px;
    padding-bottom: 20px;
    border-bottom: 1px solid transparent;
  }
  
  /* Líneas divisorias por plan */
  .hero-solana-ai__plan-card--dev .plan-price-row {
    border-bottom-color: #3B82F6;
  }
  
  .hero-solana-ai__plan-card--pro .plan-price-row {
    border-bottom-color: #C084FC;
  }
  
  .hero-solana-ai__plan-card--custom .plan-price-row {
    border-bottom-color: #0BCF7D;
  }
  
  .plan-price-badge--top {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    border: 1.5px solid #fff;
    border-radius: 5px;
    padding: 1.5px 7px;
    background: transparent;
    align-self: flex-end;
    margin-left: auto;
    line-height: 1.1;
    display: inline-block;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .plan-price-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .plan-price-old {
    font-size: 36px;
    color: #BDBDBD;
    font-weight: 400;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    margin-right: 4px;
  }
  
  .plan-price-new {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    margin-right: 2px;
    line-height: 1;
    display: flex;
    align-items: baseline;
  }
  
  .plan-price-new--disabled {
    color: #6B7280 !important;
    opacity: 0.6;
  }
  
  .plan-price-month {
    font-size: 15px;
    color: #E0E0E0;
    font-weight: 400;
    margin-left: 2px;
    align-self: baseline;
    padding-bottom: 0;
    line-height: 1;
    display: inline-block;
  }
  
  .plan-price-month--disabled {
    color: #6B7280 !important;
    opacity: 0.6;
  }
  
  .plan-price-custom {
    font-size: 30px;
    color: #2BF29F;
    font-weight: 700;
    margin-right: 2px;
    line-height: 1.2;
    display: flex;
    align-items: flex-start;
    text-align: left;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .plan-price-badge {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    border: 1.5px solid #fff;
    border-radius: 6px;
    padding: 2px 10px;
    background: transparent;
    margin-left: 6px;
    line-height: 1.1;
    display: inline-block;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  @media (max-width: 480px) {
    .plan-price-row {
      gap: 2px;
      flex-wrap: wrap;
    }
    .plan-price-old {
      font-size: 22px;
    }
    .plan-price-new {
      font-size: 32px;
    }
    
    .plan-price-custom {
      font-size: 24px;
    }
    
    .plan-price-row {
      min-height: 70px;
      height: 70px;
      padding-bottom: 18px;
    }
    
    .hero-solana-ai__actions-chip {
      height: 36px;
      padding: 6px 16px;
      border-radius: 18px;
    }
    
    .hero-solana-ai__actions-chip-text {
      font-size: 13px;
      line-height: 18px;
    }
    .plan-price-badge {
      font-size: 11px;
      padding: 1.5px 7px;
      border-radius: 5px;
      margin-left: 4px;
    }
    .plan-price-month {
      font-size: 11px;
      padding-bottom: 0;
    }
    .plan-price-badge--top {
      font-size: 9px;
      padding: 1px 5px;
      border-radius: 4px;
    }
    .plan-price-main {
      gap: 2px;
    }
  }
  
  /* Responsive padding para móvil */
  @media (max-width: 768px) {
    :root {
      --container-padding: 10px;
    }
  }