    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #FFFFFF;
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      color: #1a1a1a;
    }

    .prelaunch-banner {
      background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
      color: #FFFFFF;
      padding: 15px 20px;
      text-align: center;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
      animation: slideDown 0.6s ease-out;
      position: relative;
      overflow: hidden;
    }

    .prelaunch-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      animation: shine 3s infinite;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-100%);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes shine {
      0% {
        left: -100%;
      }
      100% {
        left: 100%;
      }
    }

    .prelaunch-text {
      position: relative;
      z-index: 1;
      text-transform: uppercase;
    }

    .prelaunch-icon {
      margin-right: 8px;
      font-size: 18px;
    }

    .hero-section {
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      color: #FFFFFF;
      padding: 80px 20px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-30px) scale(1.1); }
    }

    .hero-title {
      font-size: 52px;
      font-weight: 900;
      margin-bottom: 20px;
      letter-spacing: -2px;
      position: relative;
      z-index: 1;
      animation: fadeInDown 0.8s ease-out;
    }

    .hero-subtitle {
      font-size: 20px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.8);
      max-width: 600px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      animation: fadeInUp 0.8s ease-out 0.2s backwards;
    }

    .hero-accent {
      color: #FF6B00;
      font-weight: 700;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .pricing-section {
      padding: 40px 20px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-title {
      font-size: 32px;
      font-weight: 800;
      text-align: center;
      margin-bottom: 30px;
      color: #1a1a1a;
      letter-spacing: -1px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto 100px;
      padding-top: 30px;
    }

    .pricing-card {
      background: #FFFFFF;
      border: 2px solid #e5e5e5;
      border-radius: 20px;
      padding: 24px 22px;
      display: flex;
      flex-direction: column;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      animation: slideUp 0.6s ease-out backwards;
    }

    .pricing-card:nth-child(1) {
      animation-delay: 0.1s;
    }

    .pricing-card:nth-child(2) {
      animation-delay: 0.2s;
    }

    .pricing-card:nth-child(3) {
      animation-delay: 0.3s;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .pricing-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
      border-color: #FF6B00;
    }

    .pricing-card.featured {
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      border: 3px solid #FF6B00;
      color: #FFFFFF;
      transform: scale(1.05);
      box-shadow: 0 20px 60px rgba(255, 107, 0, 0.25);
    }

    .pricing-card.featured:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 25px 70px rgba(255, 107, 0, 0.35);
    }

    .popular-badge {
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
      color: #FFFFFF;
      padding: 8px 28px;
      border-radius: 25px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
      animation: bounceIn 0.8s ease-out 0.4s backwards;
    }

    @keyframes bounceIn {
      0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.3);
      }
      50% {
        transform: translateX(-50%) scale(1.05);
      }
      70% {
        transform: translateX(-50%) scale(0.9);
      }
      100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
      }
    }

    .card-header {
      text-align: center;
      margin-bottom: 14px;
      padding-bottom: 12px;
      border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    }

    .featured .card-header {
      border-bottom-color: rgba(255, 255, 255, 0.15);
    }

    .card-title {
      font-size: 24px;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 8px;
      letter-spacing: -0.5px;
    }

    .featured .card-title {
      color: #FFFFFF;
    }

    .card-subtitle {
      font-size: 14px;
      color: #666;
      font-weight: 500;
    }

    .featured .card-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .price-container {
      text-align: center;
      margin-bottom: 20px;
      position: static;
    }

    .old-price {
      font-size: 24px;
      font-weight: 700;
      color: #999;
      text-decoration: line-through;
      text-decoration-color: #FF0000;
      text-decoration-thickness: 3px;
      margin-bottom: 10px;
      opacity: 0.8;
      position: relative;
    }

    .discount-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 2;
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #FF0000 0%, #FF6B00 100%);
      color: #FFFFFF;
      padding: 0;
      border-radius: 50%;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0;
      box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
      animation: pulse 2s ease-in-out infinite;
      border: 2px solid #FFFFFF;
      transform: scale(1);
    }


    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
      }
      50% {
        transform: scale(1.05);
        box-shadow: 0 8px 35px rgba(255, 0, 0, 0.7);
      }
    }

    .price {
      font-size: 56px;
      font-weight: 900;
      color: #1a1a1a;
      line-height: 1;
      letter-spacing: -2px;
    }

    .pricing-card:not(.pymes-plan) .price {
      color: #FF0000;
      text-shadow: 0 2px 10px rgba(255, 0, 0, 0.2);
    }

    .pricing-card.featured .price {
      color: #FF3333;
      text-shadow: 0 2px 15px rgba(255, 51, 51, 0.4);
    }

    .price-decimal {
      font-size: 24px;
      color: #999;
      font-weight: 600;
    }

    .price-period {
      font-size: 16px;
      color: #666;
      margin-top: 8px;
      font-weight: 500;
    }

    .featured .price-period {
      color: rgba(255, 255, 255, 0.7);
    }

    .features-list {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .collections-list {
      flex-grow: 0;
      margin-bottom: 12px;
    }

    .features-list li {
      margin-bottom: 12px;
      font-size: 14px;
      padding-left: 28px;
      position: relative;
      line-height: 1.5;
      color: #333;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .promo-feature {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .promo-old {
      font-size: 13px;
      color: #999;
      text-decoration: line-through;
      text-decoration-color: #FF0000;
      text-decoration-thickness: 2px;
      font-weight: 500;
    }

    .promo-new {
      color: #FF0000;
      font-weight: 800;
      font-size: 15px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .promo-badge-small {
      background: linear-gradient(135deg, #FF0000 0%, #FF6B00 100%);
      color: #FFFFFF;
      padding: 4px 10px;
      border-radius: 12px;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
      animation: glow 2s ease-in-out infinite;
    }

    @keyframes glow {
      0%, 100% {
        box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
      }
      50% {
        box-shadow: 0 2px 20px rgba(255, 0, 0, 0.8);
      }
    }

    .featured .promo-new {
      color: #FFB366;
      font-size: 15px;
      text-shadow: 0 1px 5px rgba(255, 179, 102, 0.3);
    }

    .featured .features-list li {
      color: rgba(255, 255, 255, 0.9);
    }

    .plugin-highlight {
      color: #FF6B00 !important;
      font-weight: 800 !important;
      font-size: 15px !important;
    }

    .featured .plugin-highlight {
      color: #FF6B00 !important;
      font-weight: 800 !important;
      font-size: 15px !important;
    }

    .promo-new {
      color: #FF8C42;
      font-weight: 800;
      font-size: 15px;
      display: flex;
      align-items: center;
      gap: 6px;
      animation: glow-text 2s ease-in-out infinite;
    }

    .featured .promo-new {
      color: #FF8C42;
      font-size: 15px;
      text-shadow: 0 0 5px rgba(255, 140, 66, 0.8);
      animation: glow-text 2s ease-in-out infinite;
    }

    @keyframes glow-text {
      0%, 100% {
        text-shadow: 0 0 5px rgba(255, 140, 66, 0.8);
      }
      50% {
        text-shadow: 0 0 20px rgba(255, 140, 66, 1);
      }
    }

    .features-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #FFFFFF;
      font-size: 14px;
      font-weight: 900;
      width: 20px;
      height: 20px;
      background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px rgba(255, 107, 0, 0.25);
    }

    .featured .features-list li::before {
      background: linear-gradient(135deg, #FFB366 0%, #FFCC99 100%);
      box-shadow: 0 2px 8px rgba(255, 179, 102, 0.35);
    }

    .pricing-card:hover .features-list li::before {
      transform: scale(1.1);
      box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
    }
      .featured .value-highlight {
      background: rgba(255, 179, 102, 0.15);
      color: #FFB366;
    }


    .featured:hover .features-list li::before {
      box-shadow: 0 4px 12px rgba(255, 179, 102, 0.5);
    }
    .value-highlight {
      background: rgba(0, 200, 83, 0.1);
      color: #00C853;
      padding: 12px 20px;
      border-radius: 10px;
      text-align: center;
      font-weight: 800;
      font-size: 14px;
      margin-bottom: 20px;
    }
    .cta-button {
      background: #1a1a1a;
      border: 2px solid #1a1a1a;
      color: #FFFFFF;
      padding: 14px 32px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      text-decoration: none;
      display: inline-block;
      text-align: center;
    }

    .pricing-card .cta-button {
      margin-top: auto;
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      transform: translate(-50%, -50%);
      transition: width 0.6s ease, height 0.6s ease;
    }

    .cta-button:hover::before {
      width: 400px;
      height: 400px;
    }

    .cta-button:hover {
      background: #FF6B00;
      border-color: #FF6B00;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    }

    .featured .cta-button {
      background: linear-gradient(135deg, #FF6B00 0%, #FF8533 100%);
      border: none;
      box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    }

    .featured .cta-button:hover {
      background: linear-gradient(135deg, #FF7A1A 0%, #FF9547 100%);
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
    }

    .comparison-section {
      background: #f8f8f8;
      padding: 80px 20px;
      margin-top: 60px;
    }

    .comparison-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .comparison-title {
      font-size: 38px;
      font-weight: 800;
      text-align: center;
      margin-bottom: 50px;
      color: #1a1a1a;
      letter-spacing: -1px;
    }

    .comparison-table-wrapper {
      overflow-x: auto;
      background: #FFFFFF;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      animation: fadeIn 1s ease-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 800px;
    }

    .comparison-table thead {
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      color: #FFFFFF;
    }

    .comparison-table th {
      padding: 30px 20px;
      text-align: center;
      font-weight: 800;
      font-size: 18px;
      letter-spacing: -0.5px;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .comparison-table th:first-child {
      text-align: left;
      font-size: 16px;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 600;
    }

    .comparison-table th.featured-col {
      background: #FF6B00;
      position: relative;
    }

    .comparison-table tbody tr {
      border-bottom: 1px solid #e5e5e5;
      transition: background 0.3s ease;
    }

    .comparison-table tbody tr:hover {
      background: #fafafa;
    }

    .comparison-table td {
      padding: 25px 20px;
      text-align: center;
      font-size: 15px;
      color: #333;
      font-weight: 500;
      border-right: 1px solid #f0f0f0;
    }

    .comparison-table td:first-child {
      text-align: left;
      font-weight: 600;
      color: #1a1a1a;
      font-size: 15px;
    }

    .comparison-table .featured-col {
      background: rgba(255, 107, 0, 0.03);
    }

    .check-icon {
      color: #FF6B00;
      font-size: 24px;
      font-weight: 900;
      display: inline-block;
      animation: scaleIn 0.4s ease-out;
    }

    @keyframes scaleIn {
      from {
        transform: scale(0);
      }
      to {
        transform: scale(1);
      }
    }
    .cross-icon {
      color: #ccc;
      font-size: 20px;
      font-weight: 600;
    }

    .table-promo {
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: center;
    }

    .table-promo-old {
      font-size: 13px;
      color: #999;
      text-decoration: line-through;
      text-decoration-color: #FF0000;
      text-decoration-thickness: 2px;
      font-weight: 500;
    }

    .table-promo-new {
      color: #FF0000;
      font-weight: 800;
      font-size: 15px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .collection-spacing {
      margin-bottom: 2px !important;
      padding-left: 36px !important;
      border-bottom: none;
      font-size: 13px !important;
      color: white !important;
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 10px;
    }
    .collection-spacing-white {
      margin-bottom: 2px !important;
      padding-left: 36px !important;
      border-bottom: none;
      font-size: 13px !important;
      color: black !important;
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 10px;
    }

    .collection-spacing::before,
    .collection-spacing-white::before {
      width: 18px;
      height: 18px;
      font-size: 12px;
    }

    .coming-soon-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 3px 10px;
      margin-left: 0;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      background: #0F0F10;
      border: 1px solid rgba(255, 255, 255, 0.35);
      color: #FFFFFF;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
      vertical-align: middle;
      white-space: nowrap;
      flex: 0 0 auto;
    }

    .coming-soon-note {
      font-size: 11px;
      line-height: 1.4;
      margin-top: 8px;
      margin-bottom: 14px;
      color: rgba(255, 255, 255, 0.75);
      font-weight: 500;
      
    }

    .pricing-card:not(.featured) .coming-soon-badge {
      border-color: rgba(15, 15, 16, 0.18);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    }

    .pricing-card:not(.featured) .coming-soon-note {
      color: rgba(26, 26, 26, 0.7);
    }

    .pymes-price-note {
      margin-top: 10px;
      margin-bottom: 14px;
      font-size: 12px;
      line-height: 1.4;
      color: rgba(26, 26, 26, 0.75);
      font-weight: 500;
      text-align: center;
    }

    .pymes-price-note strong {
      color: rgba(26, 26, 26, 0.95);
      font-weight: 800;
    }

    .pymes-plan .price-container {
      margin-bottom: 10px;
    }

    .pymes-plan .price {
      display: block;
      background: transparent;
      color: #1a1a1a;
      border: none;
      box-shadow: none;
      padding: 0;
      border-radius: 0;
    }

    .pymes-plan .price-decimal {
      color: #999;
    }

    .pymes-from {
      text-align: center;
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: rgba(26, 26, 26, 0.7);
      margin-bottom: 6px;
    }

    .pymes-plan .pymes-price-note {
      max-width: 320px;
      margin-left: auto;
      margin-right: auto;
    }

    .featured-col .table-promo-new {
      color: #FF6B00;
      font-weight: 800;
    }

    .whatsapp-container {
      text-align: center;
     
      
    }
    .group-title {
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #FF6B00;
      margin-bottom: 12px !important;
      padding-bottom: 8px;
      border-bottom: 2px solid rgba(255, 107, 0, 0.2);
    }
  .featured .group-title {
      color: #FFB366;
      border-bottom-color: rgba(255, 179, 102, 0.3);
    }

  .featured .group-title {
      color: #FFFFFF;
      border-bottom-color: rgba(255, 255, 255, 0.3);
    }

    .whatsapp-button {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #075E54 100%);
      color: #FFFFFF;
      padding: 24px 48px;
      border-radius: 16px;
      font-weight: 800;
      font-size: 20px;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
      box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
      cursor: pointer;
      overflow: hidden;
    }

    .whatsapp-button::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
      opacity: 0.25;
      mix-blend-mode: screen;
    }

    .whatsapp-button:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 22px 48px rgba(13, 124, 107, 0.5);
      filter: brightness(1.08);
    }

    .whatsapp-button:active {
      transform: translateY(-1px) scale(0.99);
    }

    .whatsapp-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background: transparent;
      border-radius: 0;
      box-shadow: none;
    }

    .whatsapp-icon img {
      width: 32px;
      height: 32px;
      display: block;
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
    }

    
    @media (max-width: 1024px) {
      .pricing-card.featured {
        transform: scale(1);
      }

      .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1);
      }
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 36px;
      }

      .hero-subtitle {
        font-size: 16px;
      }

      .pricing-section {
        padding: 60px 15px;
      }

      .section-title,
      .comparison-title {
        font-size: 28px;
        margin-bottom: 35px;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto 60px;
      }

      .pricing-card {
        padding: 35px 25px;
      }

      .price {
        font-size: 52px;
      }

      .card-title {
        font-size: 24px;
      }

      .comparison-section {
        padding: 60px 15px;
      }

      .comparison-table th,
      .comparison-table td {
        padding: 20px 15px;
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 28px;
      }

      .price {
        font-size: 44px;
      }

      .cta-button {
        padding: 16px 32px;
        font-size: 14px;
      }
    }

    .pymes-plan .plugin-highlight2 {
      color: #000000;
      font-weight: 900;
      text-shadow:
        0 0 10px rgba(255, 199, 74, 0.7),
        0 0 22px rgba(255, 199, 74, 0.45);
    }
