
  /* EVERSALE HYBRID COLOR SYSTEM (Intercom + Gorgias) */
  :root {
    /* Primary Actions (Intercom inspired) */
    --primary: #0B5CFF;
    --primary-hover: #0047CC;

    /* Accent Energy (Gorgias inspired) */
    --accent: #FF5A5F;
    --accent-hover: #E5454A;

    /* Dark Backgrounds (Intercom) */
    --dark-bg: #001132;
    --dark-bg-alt: #0A1929;

    /* Light Backgrounds (Intercom) */
    --light-bg: #F7F9FC;
    --light-bg-alt: #FFFFFF;

    /* Success (Universal) */
    --success: #10B981;
    --success-bg: #D1FAE5;

    /* Warning/Urgency (Gorgias) */
    --warning: #FF8C42;
    --error: #EF4444;
    --error-bg: #FEE2E2;

    /* Neutrals (Intercom) */
    --text-primary: #0D1829;
    --text-secondary: #67758D;
    --border: #E5E9F2;
    --white: #FFFFFF;
  }

  /* BRUTALIST TEXTURES - COMPREHENSIVE */
  .support-agent-page.svelte-3o00l8 {
    position: relative;
    background: var(--light-bg);
  }

  /* Global grain texture overlay - Enhanced */
  .support-agent-page.svelte-3o00l8::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='5.2' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.045'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
  }

  /* Subtle dots pattern overlay */
  .support-agent-page.svelte-3o00l8::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.4;
  }

  /* Urgency Banner */
  .urgency-banner.svelte-3o00l8 {
    background: #FAFAFA;
    color: #0A0A0A;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 12px 24px;
    border-bottom: 1px solid #E5E5E5;
  }

  /* Speed Revenue Section */
  .speed-revenue-section.svelte-3o00l8 {
    background: #FFFFFF;
    padding: 96px 24px;
  }

  .scenario-grid.svelte-3o00l8 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 64px;
  }

  @media (max-width: 768px) {
    .scenario-grid.svelte-3o00l8 {
      grid-template-columns: 1fr;
    }
  }

  .scenario-card.svelte-3o00l8 {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 24px;
    position: relative;
  }

  .scenario-time.svelte-3o00l8 {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
  }

  .scenario-timeline.svelte-3o00l8 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .scenario-step.svelte-3o00l8 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .scenario-step-time.svelte-3o00l8 {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    min-width: 60px;
  }

  .scenario-step-text.svelte-3o00l8 {
    font-size: 14px;
    color: #0A0A0A;
    line-height: 1.5;
  }

  .scenario-result.svelte-3o00l8 {
    padding-top: 20px;
    border-top: 1px solid var(--border-gray);
    font-size: 15px;
    font-weight: 600;
    color: var(--success);
  }

  .scenario-without.svelte-3o00l8 {
    font-size: 13px;
    color: #EF4444;
    margin-top: 8px;
    font-style: italic;
    font-weight: 400;
  }

  .revenue-total.svelte-3o00l8 {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(11, 92, 255, 0.05) 0%, rgba(11, 92, 255, 0.08) 100%);
    border: 2px solid var(--primary);
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto 64px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 17, 50, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  /* Subtle animated rays */
  .revenue-total.svelte-3o00l8::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-conic-gradient(
      from 0deg at 50% 50%,
      transparent 0deg,
      rgba(11, 92, 255, 0.03) 2deg,
      transparent 4deg,
      transparent 8deg
    );
    animation: svelte-3o00l8-rotateRays 30s linear infinite;
  }

  @keyframes svelte-3o00l8-rotateRays {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .revenue-total-amount.svelte-3o00l8 {
    font-size: 72px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
  }

  .revenue-total-label.svelte-3o00l8 {
    font-size: 15px;
    color: #4B5563;
  }

  .stats-row.svelte-3o00l8 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    background: #FAFAFA;
    background-image:
      linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 20px 20px;
  }

  .stat.svelte-3o00l8 {
    padding: 32px;
    text-align: center;
    border-right: 1px solid #E5E5E5;
  }

  .stat.svelte-3o00l8:last-child {
    border-right: none;
  }

  .stat-value.svelte-3o00l8 {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    display: block;
    margin-bottom: 8px;
  }

  .stat-label.svelte-3o00l8 {
    font-size: 12px;
    color: #4B5563;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* Snowfall animation */
  .snowflake.svelte-3o00l8 {
    top: -20px;
    animation: svelte-3o00l8-snowfall linear infinite;
    opacity: 0;
  }

  @keyframes svelte-3o00l8-snowfall {
    0% {
      transform: translateY(-20px) rotate(0deg);
      opacity: 0;
    }
    10% {
      opacity: 0.3;
    }
    90% {
      opacity: 0.3;
    }
    100% {
      transform: translateY(100vh) rotate(360deg);
      opacity: 0;
    }
  }

  .animate-bounce-slow.svelte-3o00l8 {
    animation: svelte-3o00l8-bounce-slow 2s ease-in-out infinite;
  }

  @keyframes svelte-3o00l8-bounce-slow {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(-10px);
    }
  }

  .metric-card {
    position: relative;
    transition: all var(--sa-transition-normal);
    will-change: transform, box-shadow;
    backdrop-filter: blur(16px);
  }

  .metric-card:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(11, 92, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 17, 50, 0.08);
  }

  .metric-card:focus-visible {
    outline: 2px solid rgba(11, 92, 255, 0.6);
    outline-offset: 2px;
  }

  .metric-value {
    background: linear-gradient(135deg, #fff 0%, #a7f3d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .comparison-card {
    position: relative;
    transition: all var(--sa-transition-normal);
    will-change: transform;
    backdrop-filter: blur(16px);
  }

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

  .differentiator-card {
    position: relative;
    overflow: hidden;
    transition: all var(--sa-transition-normal);
    will-change: transform, box-shadow;
    backdrop-filter: blur(16px);
  }

  .differentiator-card:focus-visible {
    outline: 2px solid rgba(11, 92, 255, 0.6);
    outline-offset: 2px;
  }

  .differentiator-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 20px rgba(0, 17, 50, 0.08);
  }

  .differentiator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(11, 92, 255, 0.15), transparent);
    transition: left var(--sa-transition-slow);
  }

  .differentiator-card:hover::before {
    left: 100%;
  }

  .glossary-card {
    position: relative;
    transition: all var(--sa-transition-normal);
    will-change: transform, box-shadow;
    backdrop-filter: blur(16px);
  }

  .glossary-card:focus-visible {
    outline: 2px solid rgba(11, 92, 255, 0.6);
    outline-offset: 2px;
  }

  .glossary-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 20px rgba(0, 17, 50, 0.08);
  }

  .glossary-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle at top right, rgba(11, 92, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity var(--sa-transition-fast);
    pointer-events: none;
  }

  .glossary-card:hover::after {
    opacity: 1;
  }

  @media (max-width: 640px) {
    .support-agent-main {
      gap: 2rem;
    }

    .support-agent-section {
      padding-left: 1rem;
      padding-right: 1rem;
      padding-top: 2rem;
      padding-bottom: 2rem;
    }

    .metric-card,
    .differentiator-card,
    .glossary-card {
      padding: 1rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .metric-card:hover,
    .differentiator-card,
    .differentiator-card:hover,
    .glossary-card:hover {
      animation: none;
      transform: none;
    }

    .metric-card,
    .differentiator-card,
    .glossary-card {
      transition: none;
      will-change: auto;
    }

    .differentiator-card::before,
    .glossary-card::after {
      display: none;
    }
  }

  .animate-slide-in-left {
    animation: svelte-3o00l8-slideInLeft 0.4s ease-out;
  }

  @keyframes svelte-3o00l8-slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-100px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
  }

  .animate-slide-up {
    animation: svelte-3o00l8-slideUp 0.3s ease-out;
  }

  @keyframes svelte-3o00l8-slideUp {
    from {
      opacity: 0;
      transform: translateY(100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-pulse-fast {
    animation: svelte-3o00l8-pulseFast 0.5s ease-in-out infinite;
  }

  @keyframes svelte-3o00l8-pulseFast {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.8;
    }
  }

  /* Premium notification styling */
  .animate-slide-in-left {
    animation: svelte-3o00l8-slideInLeft 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  /* Value stack premium styling */
  .value-stack-item {
    position: relative;
    transition: all 0.3s ease;
  }

  .value-stack-item:hover {
    background: rgba(255, 255, 255, 0.02);
    transform: translateX(4px);
  }

  .value-stack-item .line-through {
    position: relative;
  }

  .value-stack-item .line-through::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  }

  /* Premium price reveal */
  .price-reveal {
    animation: svelte-3o00l8-priceReveal 1s ease-out 0.5s both;
  }

  @keyframes svelte-3o00l8-priceReveal {
    from {
      opacity: 0;
      transform: scale(0.8);
      filter: blur(10px);
    }
    to {
      opacity: 1;
      transform: scale(1);
      filter: blur(0);
    }
  }

  /* Subtle shimmer effect */
  .shimmer-text {
    background: linear-gradient(
      110deg,
      var(--primary) 0%,
      #5B8FFF 25%,
      #94B8FF 50%,
      #5B8FFF 75%,
      var(--primary) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: svelte-3o00l8-shimmer 3s linear infinite;
  }

  @keyframes svelte-3o00l8-shimmer {
    0% {
      background-position: -200% 0;
    }
    100% {
      background-position: 200% 0;
    }
  }

  /* Glassmorphism cards */
  .glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      0 4px 24px rgba(0, 0, 0, 0.12),
      inset 0 1px 1px rgba(255, 255, 255, 0.04);
  }

  .glass-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
  }

  /* Subtle glow on interactive elements */
  .glow-subtle {
    box-shadow: 0 0 20px rgba(11, 92, 255, 0.2);
    transition: box-shadow 0.4s ease;
  }

  .glow-subtle:hover {
    box-shadow: 0 0 40px rgba(11, 92, 255, 0.3);
  }

  /* Premium badge animation */
  .badge-pulse {
    animation: svelte-3o00l8-badgePulse 2s ease-in-out infinite;
  }

  @keyframes svelte-3o00l8-badgePulse {
    0%, 100% {
      box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
      box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
  }

  /* Smooth counter animation */
  .counter-text {
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
  }

  /* Trust indicator micro-interaction */
  .trust-badge {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .trust-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
  }

  /* Notification toast premium feel */
  .notification-toast {
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(16, 185, 129, 0.15);
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.3),
      0 2px 8px rgba(16, 185, 129, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
  }

  /* Subtle gradient overlay on notifications */
  .notification-toast::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, transparent 100%);
    border-radius: 12px;
    pointer-events: none;
  }

  /* Countdown timer styling */
  .countdown-digit {
    font-variant-numeric: tabular-nums;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 6px;
    padding: 4px 8px;
    font-weight: 600;
  }

  /* Scarcity text subtle animation */
  .scarcity-text {
    animation: svelte-3o00l8-scarcityFade 4s ease-in-out infinite;
  }

  @keyframes svelte-3o00l8-scarcityFade {
    0%, 100% {
      opacity: 0.3;
    }
    50% {
      opacity: 0.5;
    }
  }

  /* Risk reversal shield glow */
  .shield-glow {
    filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.3));
    animation: svelte-3o00l8-shieldGlow 3s ease-in-out infinite;
  }

  @keyframes svelte-3o00l8-shieldGlow {
    0%, 100% {
      filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.3));
    }
    50% {
      filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
    }
  }

  /* Entrance animations for sections */
  .support-agent-section {
    opacity: 0;
    transform: translateY(20px);
    animation: svelte-3o00l8-fadeInUp 0.6s ease-out forwards;
  }

  .support-agent-section:nth-child(1) { animation-delay: 0.1s; }
  .support-agent-section:nth-child(2) { animation-delay: 0.2s; }
  .support-agent-section:nth-child(3) { animation-delay: 0.3s; }
  .support-agent-section:nth-child(4) { animation-delay: 0.4s; }
  .support-agent-section:nth-child(5) { animation-delay: 0.5s; }
  .support-agent-section:nth-child(6) { animation-delay: 0.6s; }

  @keyframes svelte-3o00l8-fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Tighter mobile spacing */
  @media (max-width: 640px) {
    .support-agent-section {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .support-agent-section h2 {
      font-size: 1.75rem;
    }
  }

  /* How It Works Section */
  .how-it-works-section.svelte-3o00l8 {
    background: #FAFAFA;
    position: relative;
  }

  .how-it-works-grid.svelte-3o00l8 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
  }

  @media (max-width: 768px) {
    .how-it-works-grid.svelte-3o00l8 {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }

  .how-it-works-card.svelte-3o00l8 {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 32px;
    position: relative;
    transition: all 0.2s ease;
    overflow: hidden;
  }

  /* Paper texture on cards */
  .how-it-works-card.svelte-3o00l8::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.005) 3px, rgba(0,0,0,0.005) 6px),
      repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(0,0,0,0.005) 3px, rgba(0,0,0,0.005) 6px);
    pointer-events: none;
    opacity: 0.5;
  }

  .how-it-works-card.svelte-3o00l8:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 17, 50, 0.08);
    transform: translateY(-4px);
  }

  /* Blue glow on hover (Intercom style) */
  .how-it-works-card.svelte-3o00l8:hover::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(11, 92, 255, 0.08), rgba(11, 92, 255, 0.03));
    border-radius: 8px;
    z-index: -1;
    opacity: 0.6;
  }

  .step-number.svelte-3o00l8 {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 4px 12px rgba(11, 92, 255, 0.3);
  }

  /* Subtle shine effect on step numbers */
  .step-number.svelte-3o00l8::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
  }

  .step-title.svelte-3o00l8 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .step-description.svelte-3o00l8 {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .step-detail.svelte-3o00l8 {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    padding-top: 16px;
    border-top: 1px solid var(--border-gray);
  }

  .how-it-works-cta.svelte-3o00l8 {
    text-align: center;
  }

  .btn-primary-large.svelte-3o00l8 {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    padding: 18px 48px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(11, 92, 255, 0.35);
    position: relative;
    overflow: hidden;
  }

  /* Subtle grain texture on buttons */
  .btn-primary-large.svelte-3o00l8::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.1'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    pointer-events: none;
    border-radius: 8px;
  }

  /* Shimmer sweep on hover */
  .btn-primary-large.svelte-3o00l8::after {
    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;
  }

  .btn-primary-large.svelte-3o00l8:hover {
    background: var(--primary-hover);
    box-shadow: 0 12px 32px rgba(11, 92, 255, 0.45);
    transform: scale(1.03);
  }

  .btn-primary-large.svelte-3o00l8:hover::after {
    left: 100%;
  }

  .cta-subtext.svelte-3o00l8 {
    font-size: 14px;
    color: #A3A3A3;
    margin-top: 12px;
  }

  /* Competitor Comparison Section */
  .comparison-section.svelte-3o00l8 {
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
  }

  /* Brutalist concrete texture - Enhanced */
  .comparison-section.svelte-3o00l8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
      repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(0,0,0,0.015) 1px, rgba(0,0,0,0.015) 2px),
      repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(0,0,0,0.015) 1px, rgba(0,0,0,0.015) 2px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.7;
  }

  /* Diagonal stripe accent */
  .comparison-section.svelte-3o00l8::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 200%;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(11, 92, 255, 0.02) 20px,
      rgba(11, 92, 255, 0.02) 40px
    );
    pointer-events: none;
    opacity: 0.6;
  }

  .comparison-header.svelte-3o00l8 {
    text-align: center;
    margin-bottom: 48px;
  }

  .comparison-label.svelte-3o00l8 {
    display: inline-block;
    background: #FEE2E2;
    color: #991B1B;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
  }

  .comparison-title.svelte-3o00l8 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .comparison-subhead.svelte-3o00l8 {
    font-size: 16px;
    color: #4B5563;
  }

  .comparison-table-wrapper.svelte-3o00l8 {
    max-width: 800px;
    margin: 0 auto 32px;
  }

  .comparison-table.svelte-3o00l8 {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 17, 50, 0.08);
    position: relative;
  }

  /* Subtle texture on table */
  .comparison-table.svelte-3o00l8::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.008) 2px, rgba(0,0,0,0.008) 4px);
    pointer-events: none;
    border-radius: 12px;
  }

  .comparison-table.svelte-3o00l8 thead:where(.svelte-3o00l8) {
    background: #FAFAFA;
  }

  .comparison-table.svelte-3o00l8 th:where(.svelte-3o00l8) {
    padding: 16px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    border-bottom: 2px solid #E5E5E5;
  }

  .comparison-table.svelte-3o00l8 th:where(.svelte-3o00l8):first-child {
    width: 35%;
  }

  .comparison-table.svelte-3o00l8 td:where(.svelte-3o00l8) {
    padding: 20px 24px;
    font-size: 15px;
    border-bottom: 1px solid #E5E5E5;
  }

  .comparison-table.svelte-3o00l8 tbody:where(.svelte-3o00l8) tr:where(.svelte-3o00l8):last-child td:where(.svelte-3o00l8) {
    border-bottom: none;
  }

  .row-label.svelte-3o00l8 {
    font-weight: 500;
    color: #4B5563;
  }

  .competitor-col.svelte-3o00l8 {
    color: #000000;
  }

  .eversale-col.svelte-3o00l8 {
    color: var(--success);
    font-weight: 600;
  }

  .total-row.svelte-3o00l8 {
    background: #FAFAFA;
    font-weight: 600;
  }

  .total-row.svelte-3o00l8 .row-label:where(.svelte-3o00l8) {
    color: #000000;
  }

  .total-row.svelte-3o00l8 .competitor-col:where(.svelte-3o00l8) {
    color: #EF4444;
    font-size: 18px;
  }

  .total-row.svelte-3o00l8 .eversale-col:where(.svelte-3o00l8) {
    color: var(--success);
    font-size: 18px;
  }

  .comparison-result.svelte-3o00l8 {
    text-align: center;
    margin-top: 32px;
  }

  .badge-half-cost.svelte-3o00l8 {
    display: inline-block;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px 32px;
    border-radius: 8px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 17, 50, 0.08);
  }

  /* Diagonal stripe texture on badge */
  .badge-half-cost.svelte-3o00l8::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 3px,
      rgba(255,255,255,0.02) 3px,
      rgba(255,255,255,0.02) 6px
    );
    pointer-events: none;
  }

  /* Green highlight edge (Gorgias energy) */
  .badge-half-cost.svelte-3o00l8::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #34D399 0%, #10B981 50%, #34D399 100%);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
  }

  .savings-text.svelte-3o00l8 {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
  }

  @media (max-width: 768px) {
    .comparison-table.svelte-3o00l8 {
      font-size: 14px;
    }

    .comparison-table.svelte-3o00l8 th:where(.svelte-3o00l8),
    .comparison-table.svelte-3o00l8 td:where(.svelte-3o00l8) {
      padding: 12px 16px;
    }

    .badge-half-cost.svelte-3o00l8 {
      font-size: 18px;
      padding: 12px 24px;
    }

    .savings-text.svelte-3o00l8 {
      font-size: 16px;
    }
  }

  .comparison-note.svelte-3o00l8 {
    font-size: 13px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 32px;
    font-style: italic;
  }

  .comparison-cta.svelte-3o00l8 {
    text-align: center;
  }

  /* Guarantee Section */
  .guarantee-section.svelte-3o00l8 {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  }

  .guarantee-card.svelte-3o00l8 {
    background: var(--white);
    border: 2px solid var(--success);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 17, 50, 0.08);
    position: relative;
    overflow: hidden;
  }

  /* Radial gradient texture on guarantee card */
  .guarantee-card.svelte-3o00l8::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: svelte-3o00l8-rotateGlow 20s linear infinite;
  }

  @keyframes svelte-3o00l8-rotateGlow {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .guarantee-icon.svelte-3o00l8 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    margin-bottom: 24px;
    color: var(--success);
  }

  .guarantee-title.svelte-3o00l8 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
  }

  .guarantee-text.svelte-3o00l8 {
    font-size: 17px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .guarantee-features.svelte-3o00l8 {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }

  .guarantee-feature.svelte-3o00l8 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #000000;
    font-weight: 500;
  }

  .guarantee-feature.svelte-3o00l8 svg:where(.svelte-3o00l8) {
    flex-shrink: 0;
    color: var(--success);
  }

  @media (max-width: 768px) {
    .guarantee-card.svelte-3o00l8 {
      padding: 32px 24px;
    }

    .guarantee-title.svelte-3o00l8 {
      font-size: 24px;
    }

    .guarantee-features.svelte-3o00l8 {
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
  }

  /* Final CTA Banner - BOLD SaaS Style */
  .final-cta-banner.svelte-3o00l8 {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-alt) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(11, 92, 255, 0.2);
  }

  /* Clean grid texture (Stripe style) */
  .final-cta-banner.svelte-3o00l8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(11, 92, 255, 0.05) 49px, rgba(11, 92, 255, 0.05) 50px),
      repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(11, 92, 255, 0.05) 49px, rgba(11, 92, 255, 0.05) 50px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.6;
  }

  /* Bold blue gradient accent */
  .final-cta-banner.svelte-3o00l8::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(11, 92, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
  }

  @keyframes svelte-3o00l8-slideTexture {
    0% {
      transform: translateX(0) translateY(0);
    }
    100% {
      transform: translateX(80px) translateY(80px);
    }
  }

  .final-cta-card.svelte-3o00l8 {
    text-align: center;
    padding: 48px 32px;
    position: relative;
    z-index: 1;
  }

  .final-cta-title.svelte-3o00l8 {
    font-size: 56px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  .final-cta-text.svelte-3o00l8 {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-weight: 400;
  }

  .final-cta-buttons.svelte-3o00l8 {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }

  .btn-final-primary.svelte-3o00l8 {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    padding: 18px 48px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(11, 92, 255, 0.4), 0 0 0 1px rgba(11, 92, 255, 0.1);
  }

  .btn-final-primary.svelte-3o00l8:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 92, 255, 0.5), 0 0 0 1px rgba(11, 92, 255, 0.2);
  }

  .btn-final-secondary.svelte-3o00l8 {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    padding: 18px 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
  }

  .btn-final-secondary.svelte-3o00l8:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .final-cta-guarantee.svelte-3o00l8 {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 40px;
    font-weight: 500;
  }

  .final-cta-guarantee.svelte-3o00l8::before {
    content: "\2713 ";
    color: var(--primary);
    font-weight: 700;
    margin-right: 6px;
  }

  @media (max-width: 768px) {
    .final-cta-title.svelte-3o00l8 {
      font-size: 28px;
    }

    .final-cta-text.svelte-3o00l8 {
      font-size: 16px;
    }

    .final-cta-buttons.svelte-3o00l8 {
      flex-direction: column;
      align-items: center;
    }

    .btn-final-primary.svelte-3o00l8,
    .btn-final-secondary.svelte-3o00l8 {
      width: 100%;
      max-width: 300px;
    }
  }

  /* ============================================
     GLOBAL DESIGN SYSTEM IMPROVEMENTS
     ============================================ */

  /* 1. BASE TYPOGRAPHY & SPACING */
  .support-agent-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
                 Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #1F2937;
    background: #FAFAFA;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* 2. SECTION SPACING - DRAMATICALLY INCREASED */
  .support-agent-page section,
  .comparison-section.svelte-3o00l8,
  .final-cta-banner.svelte-3o00l8,
  .how-it-works-section.svelte-3o00l8 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  /* Alternate section backgrounds for visual rhythm */
  .support-agent-page section:nth-child(odd):not(.final-cta-banner) {
    background: #FFFFFF;
  }

  .support-agent-page section:nth-child(even):not(.final-cta-banner) {
    background: #FAFAFA;
  }

  /* 3. TYPOGRAPHY HIERARCHY - LARGER SIZES */
  .comparison-title.svelte-3o00l8,
  .support-agent-page h2 {
    font-size: 42px !important;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }

  /* Final CTA title stays white on dark */
  .final-cta-title.svelte-3o00l8 {
    font-size: 56px !important;
    font-weight: 800;
    color: #FFFFFF !important;
  }

  .support-agent-page h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
  }

  .support-agent-page p {
    margin-bottom: 24px;
    line-height: 1.7;
  }

  /* 4. PRIMARY CTA BUTTONS - INTERCOM BLUE */
  .btn-primary-large.svelte-3o00l8,
  .btn-final-primary.svelte-3o00l8,
  .cta-button,
  .get-started-btn,
  button[type="submit"] {
    background-color: var(--primary) !important;
    color: #FFFFFF !important;
    border: none !important;
    padding: 16px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary-large.svelte-3o00l8:hover,
  .btn-final-primary.svelte-3o00l8:hover,
  .cta-button:hover,
  .get-started-btn:hover {
    background-color: var(--primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 17, 50, 0.08);
  }

  /* 5. COMPARISON TABLE - CARD STYLE */
  .comparison-table-wrapper.svelte-3o00l8 {
    max-width: 900px !important;
    margin: 60px auto !important;
  }

  .comparison-table.svelte-3o00l8 {
    border-collapse: separate !important;
    border-spacing: 0;
    border: 2px solid #E5E7EB;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 17, 50, 0.08) !important;
  }

  .comparison-table.svelte-3o00l8 thead:where(.svelte-3o00l8) {
    background: #F9FAFB !important;
  }

  .comparison-table.svelte-3o00l8 th:where(.svelte-3o00l8),
  .comparison-table.svelte-3o00l8 td:where(.svelte-3o00l8) {
    padding: 24px 32px !important;
  }

  .eversale-col.svelte-3o00l8 {
    color: var(--success) !important;
    font-weight: 700;
    position: relative;
  }

  /* Highlight EverSale column */
  .comparison-table.svelte-3o00l8 tbody:where(.svelte-3o00l8) tr:where(.svelte-3o00l8) .eversale-col:where(.svelte-3o00l8) {
    background: rgba(16, 185, 129, 0.05) !important;
  }

  .total-row.svelte-3o00l8 {
    background: #FAFAFA !important;
    font-weight: 700 !important;
    font-size: 17px !important;
  }

  /* 6. IMPROVED CARD SPACING */
  .pricing-card,
  .testimonial-card,
  .step-card.svelte-3o00l8 {
    margin-bottom: 40px !important;
  }

  /* 7. MOBILE RESPONSIVENESS */
  @media (max-width: 768px) {
    .support-agent-page section,
    .comparison-section.svelte-3o00l8,
    .final-cta-banner.svelte-3o00l8 {
      padding-top: 60px;
      padding-bottom: 60px;
    }

    .comparison-title.svelte-3o00l8,
    .final-cta-title.svelte-3o00l8,
    .support-agent-page h2 {
      font-size: 32px !important;
    }

    .support-agent-page h3 {
      font-size: 20px;
    }

    .btn-primary-large.svelte-3o00l8,
    .btn-final-primary.svelte-3o00l8 {
      font-size: 16px;
      padding: 14px 28px;
    }
  }

  /* 8. CONTENT WIDTH CONSISTENCY */
  .comparison-section.svelte-3o00l8 > div:where(.svelte-3o00l8),
  .final-cta-banner.svelte-3o00l8 > div:where(.svelte-3o00l8),
  .support-agent-page .container,
  .support-agent-page .content-wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  /* 9. REFINED ACCENT COLOR */
  .eversale-col.svelte-3o00l8,
  .step-detail.svelte-3o00l8,
  .text-emerald-500,
  .text-emerald-600,
  .text-amber-400,
  .text-amber-600,
  .text-orange-500,
  .text-orange-600 {
    color: var(--success) !important;
  }

  .bg-emerald-500,
  .bg-amber-500,
  .bg-amber-100,
  .bg-orange-500,
  .bg-orange-100 {
    background-color: var(--success) !important;
  }

  .bg-orange-100 {
    background-color: rgba(16, 185, 129, 0.1) !important;
  }

  /* 10. CLEANER BADGE STYLE (Gorgias green) */
  .badge-half-cost.svelte-3o00l8 {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 12px;
  }

  /* ============================================
     WOW FACTOR ENHANCEMENTS
     ============================================ */

  /* Animated gradient backgrounds */
  .gradient-bg-animated {
    background: linear-gradient(
      -45deg,
      rgba(11, 92, 255, 0.05),
      rgba(11, 92, 255, 0.1),
      rgba(16, 185, 129, 0.05),
      rgba(11, 92, 255, 0.08)
    );
    background-size: 400% 400%;
    animation: svelte-3o00l8-gradientShift 15s ease infinite;
  }

  @keyframes svelte-3o00l8-gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* Premium card hover with lift and glow */
  .how-it-works-card.svelte-3o00l8,
  .guarantee-card.svelte-3o00l8 {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
  }

  .how-it-works-card.svelte-3o00l8:hover,
  .guarantee-card.svelte-3o00l8:hover {
    transform: translateY(-8px) scale(1.02);
  }

  /* Floating animation for icons */
  @keyframes svelte-3o00l8-float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  .step-number.svelte-3o00l8 {
    animation: svelte-3o00l8-float 3s ease-in-out infinite;
  }

  .step-number.svelte-3o00l8:nth-child(2n) {
    animation-delay: 0.5s;
  }

  /* Shimmer effect on hover for CTAs */
  .btn-primary-large.svelte-3o00l8::after,
  .btn-final-primary.svelte-3o00l8::after {
    animation: svelte-3o00l8-shimmerSweep 3s ease-in-out infinite;
  }

  @keyframes svelte-3o00l8-shimmerSweep {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
  }

  /* Enhanced glassmorphism */
  .glass-card-premium {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.15),
      0 2px 8px rgba(11, 92, 255, 0.1),
      inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }

  .glass-card-premium:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(11, 92, 255, 0.3);
    transform: translateY(-4px);
    box-shadow:
      0 12px 48px rgba(0, 0, 0, 0.2),
      0 4px 12px rgba(11, 92, 255, 0.2),
      inset 0 1px 1px rgba(255, 255, 255, 0.3);
  }

  /* Particle-like dots decoration */
  .dots-decoration {
    position: relative;
  }

  .dots-decoration::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(11, 92, 255, 0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.4;
    animation: svelte-3o00l8-dotsFloat 20s linear infinite;
  }

  @keyframes svelte-3o00l8-dotsFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
  }

  /* Enhanced button interactions */
  .btn-primary-large.svelte-3o00l8,
  .btn-final-primary.svelte-3o00l8 {
    position: relative;
    overflow: hidden;
  }

  .btn-primary-large.svelte-3o00l8:active,
  .btn-final-primary.svelte-3o00l8:active {
    transform: scale(0.98);
  }

  /* Smooth scroll reveal */
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* Glowing border animation */
  .glow-border {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(#FFFFFF, #FFFFFF) padding-box,
                linear-gradient(135deg, rgba(11, 92, 255, 0.5), rgba(16, 185, 129, 0.5)) border-box;
  }

  .glow-border::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg,
      rgba(11, 92, 255, 0.5),
      rgba(16, 185, 129, 0.5),
      rgba(11, 92, 255, 0.5)
    );
    background-size: 200% 200%;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: svelte-3o00l8-glowRotate 3s linear infinite;
    pointer-events: none;
  }

  @keyframes svelte-3o00l8-glowRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* Ripple effect on card click */
  @keyframes svelte-3o00l8-ripple {
    0% {
      transform: scale(0);
      opacity: 0.8;
    }
    100% {
      transform: scale(4);
      opacity: 0;
    }
  }

  /* Premium text gradient */
  .text-gradient-premium {
    background: linear-gradient(135deg, #0B5CFF 0%, #5B8FFF 50%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: svelte-3o00l8-gradientShift 8s ease infinite;
  }

  /* Pulse glow animation for important elements */
  .pulse-glow {
    animation: svelte-3o00l8-pulseGlowEffect 2s ease-in-out infinite;
  }

  @keyframes svelte-3o00l8-pulseGlowEffect {
    0%, 100% {
      box-shadow: 0 0 20px rgba(11, 92, 255, 0.3);
    }
    50% {
      box-shadow: 0 0 40px rgba(11, 92, 255, 0.6);
    }
  }

  .pricing-details-box.svelte-3o00l8 :where(.svelte-3o00l8)::-moz-selection {
    background-color: rgba(11, 92, 255, 0.9);
    color: #ffffff;
  }

  .pricing-details-box.svelte-3o00l8 :where(.svelte-3o00l8)::selection {
    background-color: rgba(11, 92, 255, 0.9);
    color: #ffffff;
  }

  .pricing-details-box.svelte-3o00l8 :where(.svelte-3o00l8)::-moz-selection {
    background-color: rgba(11, 92, 255, 0.9);
    color: #ffffff;
  }
