/* =========================================
   1. VARIABLES & CONFIG
   ========================================= */
   :root {
    --color-primary: #02FB7E;
    --color-bg-dark: #191919;
    --color-bg-card: rgba(25, 25, 25, 0.6);
    --color-bg-card-hover: rgba(25, 25, 25, 0.95);

    --text-white: rgb(227, 227, 227);
    --text-gray: rgb(170, 170, 170);

    --font-main: "DM Sans", sans-serif;
    --font-display: "Formula Condensed", sans-serif;

    --border-light: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    --radius-card: 16px;
    --radius-pill: 30px;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Global Link Override */
  a {
    color: var(--color-primary);
    text-decoration: none;
  }

  /* =========================================
     2. BUTTONS
     ========================================= */
  .button-solid,
  .button-stroke {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 16px 32px;
    gap: 8px;
    width: 171px;
    height: 56px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    touch-action: manipulation;
    transition: all 0.5s;
    text-decoration: none;
  }

  /* Solid Button */
  .button-solid {
    color: #191919;
    border: 0;
    background: var(--color-primary);
  }

  .button-solid:hover {
    background: #F2FFF9;
    color: #F2FFF9 !important; /* Kept important for hover override specificity */
  }

  .button-solid:disabled {
    background: #333333;
    color: #B0B0B0;
  }

  /* Stroke Button */
  .button-stroke {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    background: transparent;
    user-select: none;
  }

  .button-stroke:hover {
    color: #F2FFF9;
    border-color: #F2FFF9;
  }

  .button-stroke.btn-link:hover {
    color: white;
  }

  .button-stroke:disabled {
    color: #B0B0B0;
    border-color: #B0B0B0;
  }

  /* Icon Filters */
  .button-solid:disabled .button-solid-icon {
    filter: invert(95%) sepia(0%) saturate(2581%) hue-rotate(0deg) brightness(76%) contrast(89%);
  }
  .button-stroke .button-stroke-icon {
    filter: invert(77%) sepia(80%) saturate(2895%) hue-rotate(95deg) brightness(105%) contrast(98%);
  }
  .button-stroke:hover .button-stroke-icon {
    filter: invert(89%) sepia(13%) saturate(281%) hue-rotate(80deg) brightness(110%) contrast(109%);
  }
  .button-stroke:disabled .button-stroke-icon {
    filter: invert(94%) sepia(0%) saturate(306%) hue-rotate(209deg) brightness(78%) contrast(79%);
  }

  /* =========================================
     3. HEADER & BADGES
     ========================================= */
  .stocks {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 52px;
    padding-left: 16px;
    padding-right: 16px;
    gap: 48px;
    margin-bottom: 132px;
    position: relative;
  }

  /* AI Badge */
  .ai-assistant-badge {
    margin: 20px auto 24px;
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid rgb(44, 44, 44);
    background-color: rgba(25, 25, 25, 0.7);
    width: fit-content;
    position: relative;
    z-index: 10;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .sparkles-icon {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
    display: block;
  }

  .ai-assistant-text {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1;
  }

  /* About Header */
  .about-header {
    text-align: center;
    margin-bottom: 64px;
    padding: 0 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-title {
    font-family: var(--font-main);
    font-size: 60px;
    font-weight: bold;
    color: var(--text-white);
    margin: 0 0 16px 0;
    line-height: 1.2;
    position: relative;
    z-index: 1;
  }

  .about-title-highlight {
    color: var(--color-primary);
  }

  .about-subtitle {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-gray);
    margin: 0 0 32px 0;
    padding: 1% 10%;
    position: relative;
    z-index: 1;
  }

  @media (max-width: 768px) {
    .about-header { margin-bottom: 48px; padding: 0; }
    .about-title { font-size: 36px; line-height: 1.3; padding: 0 30px; }
    .about-subtitle { font-size: 16px; padding: 0 30px; }
  }

  /* =========================================
     4. COMPANY STATS WIDGET
     ========================================= */
  .stock-list {
    padding: 0 16px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 768px) {
    .stock-list { padding: 0 30px; }
  }

  .stock-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .company-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }

  .company-stats-widget {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }

  /* Stat Card Base */
  .stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    background: rgba(19, 19, 19, 0.9);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: var(--transition-smooth);
  }

  /* Card Animation Delays */
  .stat-card:nth-child(1) { animation: cardEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards; }
  .stat-card:nth-child(2) { animation: cardEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards; }
  .stat-card:nth-child(3) { animation: cardEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards; }

  .stat-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--border-hover);
    background: var(--color-bg-card-hover);
  }

  /* Shine Effect */
  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.5s ease;
  }
  .stat-card:hover::before { left: 100%; }

  /* Card Variants */
  .stat-primary { border-left: 3px solid var(--color-primary); }
  .stat-primary .stat-icon { color: var(--color-primary); }

  .stat-local { border-left: 3px solid rgb(59, 130, 246); }
  .stat-local .stat-icon { color: rgb(59, 130, 246); }

  .stat-global { border-left: 3px solid rgb(168, 85, 247); }
  .stat-global .stat-icon { color: rgb(168, 85, 247); }

  /* Card Content */
  .stat-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }
  .stat-card:hover .stat-icon { transform: rotate(5deg) scale(1.1); background: rgba(255, 255, 255, 0.08); }

  .stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .stat-value {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 42px;
    line-height: 1;
    color: var(--text-white);
    letter-spacing: -0.03em;
    position: relative;
  }

  .stat-value::after {
    content: '+';
    font-size: 24px;
    color: var(--color-primary);
    margin-left: 2px;
    opacity: 0;
    animation: pulsePlus 2s infinite 1s;
  }

  .stat-label {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* Badges inside Cards */
  .stat-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(2, 251, 126, 0.15);
    color: var(--color-primary);
    border: 1px solid rgba(2, 251, 126, 0.3);
    animation: badgePulse 2s infinite;
  }

  .stat-badge-local { background: rgba(59, 130, 246, 0.15); color: rgb(59, 130, 246); border-color: rgba(59, 130, 246, 0.3); }
  .stat-badge-global { background: rgba(168, 85, 247, 0.15); color: rgb(168, 85, 247); border-color: rgba(168, 85, 247, 0.3); }

  /* Mobile Stats Adjustments */
  @media (max-width: 768px) {
    .company-stats-widget {
      display: flex;
      flex-direction: row;
      gap: 8px;
      padding: 0 30px;
      overflow: visible;
    }

    .stat-card {
      flex: 1;
      min-width: 0;
      padding: 12px 14px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-align: center;
    }

    .stat-icon, .stat-badge { display: none; }
    .stat-content { width: 100%; align-items: center; }
    .stat-value { font-size: 22px; }
    .stat-label { font-size: 9px; margin-top: 2px; text-align: center; }
  }

  /* =========================================
     5. TABS & STOCK GRID
     ========================================= */
  .tab-bar-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
  }

  .tab-bar {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: rgba(25, 25, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 4px;
    gap: 4px;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .tab-button {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 12px 24px;
    width: 50%;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    color: var(--text-gray);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
  }

  .tab-button span { position: relative; z-index: 1; }
  .tab-button.active { color: var(--text-white); }
  .tab-button:hover:not(.active) { color: rgb(200, 200, 200); }
  .tab-button:focus-visible { outline: 2px solid rgba(2, 251, 126, 0.5); outline-offset: 2px; }

  .tab-indicator {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: calc(50% - 4px);
    background: rgba(2, 251, 126, 0.15);
    border: 1px solid rgba(2, 251, 126, 0.3);
    border-radius: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  /* Tab indicator movement logic (CSS fallback) */
  .tab-bar .tab-button:nth-child(2).active ~ .tab-indicator,
  .tab-bar:has(.tab-button:nth-child(2).active) .tab-indicator {
    transform: translateX(100%);
  }

  @media (max-width: 768px) {
    .tab-bar-wrapper { padding: 0; }
    .tab-bar { padding: 3px; gap: 3px; }
    .tab-button { font-size: 12px; padding: 8px 8px; }
  }

  /* Stock Grid */
  .stock-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    scroll-behavior: smooth;
  }

  .stock-container:focus { outline: none; }

  .stock-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  @media (min-width: 768px) { .stock-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
  @media (min-width: 1024px) { .stock-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

  @media (max-width: 768px) { .stock-grid { gap: 8px; padding: 0; } }

  /* Stock Card Item */
  .stock-item {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
  }

  /* Staggered animation */
  .stock-item:nth-child(1) { animation-delay: 0.05s; }
  .stock-item:nth-child(2) { animation-delay: 0.1s; }
  .stock-item:nth-child(3) { animation-delay: 0.15s; }
  .stock-item:nth-child(4) { animation-delay: 0.2s; }
  .stock-item:nth-child(5) { animation-delay: 0.25s; }
  .stock-item:nth-child(6) { animation-delay: 0.3s; }
  .stock-item:nth-child(7) { animation-delay: 0.35s; }
  .stock-item:nth-child(8) { animation-delay: 0.4s; }

  .card_stock {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .card_stock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 251, 126, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .card_stock:hover {
    transform: translateY(-2px);
    border-color: rgba(2, 251, 126, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(2, 251, 126, 0.1);
    background: rgba(25, 25, 25, 0.8);
  }

  .card_stock:hover::before { opacity: 1; }
  .card_stock:active { transform: translateY(0); }
  .card_stock:focus-visible { outline: 2px solid rgba(2, 251, 126, 0.5); outline-offset: 2px; }

  .card_stock-info {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    flex: 1;
    min-width: 0;
  }

  .stock-logo-wrapper {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
  }

  .card_stock img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
  }

  .card_stock-description {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
  }

  .card_stock-description h2 {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    color: var(--text-white);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }

  .card_stock-description h3 {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    color: var(--text-gray);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }

  .stock-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-shrink: 0;
    font-family: var(--font-main);
  }

  .price-symbol { font-weight: 600; font-size: 14px; color: var(--text-gray); }
  .price-value { font-weight: 700; font-size: 18px; line-height: 1.2; color: rgb(242, 255, 249); letter-spacing: -0.01em; }

  /* Mobile Card Adjustments */
  @media (max-width: 768px) {
    .card_stock {
      padding: 12px 10px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: auto;
    }
    .card_stock-info { flex-direction: column; align-items: center; gap: 8px; width: 100%; }
    .stock-logo-wrapper { width: 48px; height: 48px; }
    .card_stock img { width: 48px; height: 48px; }
    .card_stock-description { align-items: center; text-align: center; width: 100%; }
    .card_stock-description h2 {
      font-size: 12px;
      white-space: normal;
      line-height: 1.3;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
    }
    .card_stock-description h3 { font-size: 10px; white-space: normal; margin-top: 2px; }
    .stock-price { flex-direction: row; align-items: baseline; gap: 2px; }
    .price-symbol { font-size: 10px; }
    .price-value { font-size: 14px; }
  }

  /* =========================================
     6. PAGINATION
     ========================================= */
  .pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 1rem;
    gap: 8px;
    flex-wrap: wrap;
  }

  .pagination-numbers-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
  }

  .pagination-number,
  .pagination-button {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    background: rgba(25, 25, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    height: 40px;
    min-width: 40px;
    color: var(--text-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pagination-button { width: 40px; padding: 0; }
  .pagination-button:hover:not(:disabled) { background: rgba(25, 25, 25, 0.8); border-color: rgba(2, 251, 126, 0.3); }
  .pagination-button:active:not(:disabled) { transform: translateY(0); }
  .pagination-button:disabled { opacity: 0.4; cursor: not-allowed; background: rgba(25, 25, 25, 0.3); }
  .pagination-button:disabled img { filter: invert(52%) sepia(1%) saturate(0%) hue-rotate(25deg) brightness(96%) contrast(87%); }

  .pagination-number { padding: 0 12px; }
  .pagination-number:hover:not(.active) { background: rgba(25, 25, 25, 0.8); border-color: rgba(255, 255, 255, 0.1); color: rgb(255, 255, 255); }
  .pagination-number.active { color: rgb(25, 25, 25); background: var(--color-primary); border-color: var(--color-primary); }

  .pagination-button:focus-visible,
  .pagination-number:focus-visible { outline: 2px solid rgba(2, 251, 126, 0.5); outline-offset: 2px; }

  .pagination-ellipsis {
    font-size: 14px;
    color: var(--text-gray, #AAAAAA);
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    user-select: none;
  }

  /* =========================================
     7. PREMIUM CTA SECTION (Cleaned)
     ========================================= */
  .premium-cta {
    position: relative;
    padding: 10px 32px;
    margin-top: 0;
    margin-bottom: 132px;
    overflow: hidden;
    width: 100%;
    display: block;
    visibility: visible;
    opacity: 1;
    background: transparent;
    box-sizing: border-box;
  }

  .premium-cta-background { display: none; }

  .premium-cta-gradient {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: gradientFloat 20s ease-in-out infinite;
  }

  .premium-cta-gradient-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(2, 251, 126, 0.4) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
  }

  .premium-cta-gradient-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(2, 251, 126, 0.3) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-delay: 10s;
  }

  .premium-cta-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }

  .premium-cta-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 40px;
    background: transparent;
    text-align: center;
    animation: premiumCtaEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: visible;
    opacity: 1;
    width: 100%;
  }

  .premium-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(2, 251, 126, 0.15);
    border: 1px solid rgba(2, 251, 126, 0.4);
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    animation: badgeEntrance 0.6s ease-out 0.2s both;
    visibility: visible;
    margin: 0 auto;
  }

  .premium-cta-badge-icon { width: 16px; height: 16px; color: var(--color-primary); }

  .premium-cta-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    animation: titleEntrance 0.8s ease-out 0.4s both;
    visibility: visible;
    width: 100%;
    text-align: center;
  }

  .premium-cta-title-line {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    color: rgb(255, 255, 255);
  }

  .premium-cta-title-accent {
    background: linear-gradient(135deg, rgb(2, 251, 126) 0%, rgb(2, 251, 126) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-primary);
    display: block;
  }

  .premium-cta-description {
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-main);
    font-size: clamp(0.9375rem, 1.8vw, 1rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-gray);
    animation: descriptionEntrance 0.8s ease-out 0.6s both;
    display: block;
    visibility: visible;
    text-align: center;
    width: 100%;
  }

  .premium-cta-button-wrapper {
    animation: buttonEntrance 0.8s ease-out 0.8s both;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }

  .premium-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 56px;
    background: var(--color-primary);
    color: rgb(25, 25, 25);
    border: none;
    border-radius: 16px;
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 360px;
  }

  .premium-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }

  .premium-cta-button:hover {
    transform: translateY(-2px);
    background: rgb(3, 220, 110);
  }

  .premium-cta-button:hover::before { left: 100%; }
  .premium-cta-button:active { transform: translateY(0); }

  .premium-cta-button-text { position: relative; z-index: 1; }
  .premium-cta-button-arrow {
    width: 20px;
    height: 20px;
    color: rgb(25, 25, 25);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
  }
  .premium-cta-button:hover .premium-cta-button-arrow { transform: translateX(6px); }

  /* Premium CTA Mobile & Tablet Overrides */
  @media (max-width: 1024px) {
    .premium-cta { padding: 10px 24px; }
    .premium-cta-content { padding: 0 48px; }
  }

  @media (max-width: 768px) {
    .premium-cta { padding: 5px 16px; overflow-x: hidden; }
    .premium-cta-content { padding: 0 16px; gap: 24px; border-radius: 24px; }
    .premium-cta-container { padding: 0; }
    .premium-cta-title-line { font-size: clamp(1.5rem, 4vw, 2rem); word-wrap: break-word; overflow-wrap: break-word; }
    .premium-cta-description { padding: 0 8px; font-size: 16px; }
    .premium-cta-badge { padding: 8px 16px; font-size: 12px; }
    .premium-cta-title { gap: 6px; }
    .premium-cta-button { padding: 18px 36px; font-size: 16px; width: 100%; max-width: 300px; }

    .premium-cta-gradient-1 { width: 300px; height: 300px; top: -150px; left: -150px; }
    .premium-cta-gradient-2 { width: 250px; height: 250px; bottom: -125px; right: -125px; }
  }

  /* =========================================
     8. ANIMATIONS
     ========================================= */
  @keyframes cardEntrance {
    0% { opacity: 0; transform: translateY(30px) scale(0.95) rotateX(-10deg); }
    100% { opacity: 1; transform: translateY(0) scale(1) rotateX(0deg); }
  }

  @keyframes pulsePlus {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
  }

  @keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.95); }
  }

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

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

  @keyframes premiumCtaEntrance {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

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

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

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

  @keyframes buttonEntrance {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* =========================================
     9. UTILITIES
     ========================================= */
  ul { list-style: none; }
  .hidden { display: none; }

  /* Legacy Download Section Support */
  .download {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 132px;
  }

  .download-button {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
  }

  .download .title {
    display: inline;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0px;
    text-align: center;
  }
