  /* ===== WIDGET LANDING CSS ===== */
  :root {
    --wl-primary: #6366f1;
    --wl-primary-dark: #4f46e5;
    --wl-primary-light: #818cf8;
    --wl-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --wl-gradient-hero: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    --wl-shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --wl-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --wl-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --wl-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.15), 0 10px 10px -5px rgba(0,0,0,0.04);
    --wl-radius-sm: 8px;
    --wl-radius-md: 12px;
    --wl-radius-lg: 16px;
    --wl-radius-xl: 24px;
    --wl-font: 'Inter', sans-serif;
  }

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

  .wl-landing-wrapper {
    font-family: var(--wl-font);
    color: #1e1b4b;
    overflow-x: hidden;
    background: #fff;
  }

  /* ===== NAVBAR ===== */
  .wl-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(99,102,241,0.1);
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 20px rgba(99,102,241,0.08);
    transition: all 0.3s ease;
  }

  .wl-navbar-logo {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--wl-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .wl-navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .wl-navbar-links a {
    text-decoration: none;
    color: #4b5563;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
  }

  .wl-navbar-links a:hover { color: var(--wl-primary); }

  .wl-navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .wl-btn-login {
    background: none;
    border: none;
    color: #4b5563;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: var(--wl-radius-sm);
    transition: all 0.2s;
    font-family: var(--wl-font);
  }

  .wl-btn-login:hover { color: var(--wl-primary); background: rgba(99,102,241,0.06); }

  .wl-btn-cta {
    background: var(--wl-gradient);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: var(--wl-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    font-family: var(--wl-font);
    box-shadow: 0 4px 14px rgba(99,102,241,0.35);
    white-space: nowrap;
  }

  .wl-btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99,102,241,0.45);
  }

  .wl-navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #4b5563;
  }

  /* ===== HERO ===== */
  .wl-hero {
    min-height: 100vh;
    background: var(--wl-gradient-hero);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .wl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99,102,241,0.25) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 80% 60%, rgba(118,75,162,0.3) 0%, transparent 60%);
    animation: wl-aurora 8s ease-in-out infinite alternate;
  }

  @keyframes wl-aurora {
    0%   { opacity: 0.6; transform: scale(1) rotate(0deg); }
    100% { opacity: 1;   transform: scale(1.1) rotate(3deg); }
  }

  .wl-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .wl-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    animation: wl-float linear infinite;
  }

  @keyframes wl-float {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-20px) scale(1); opacity: 0; }
  }

  .wl-hero-inner { position: relative; z-index: 1; max-width: 780px; }

  .wl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #e0e7ff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    letter-spacing: 0.02em;
    animation: wl-badge-pulse 3s ease-in-out infinite;
  }

  @keyframes wl-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.4); }
    50%       { box-shadow: 0 0 0 8px rgba(99,102,241,0); }
  }

  .wl-badge-dot {
    width: 8px; height: 8px;
    background: #34d399;
    border-radius: 50%;
    animation: wl-dot-blink 1.5s ease-in-out infinite;
  }

  @keyframes wl-dot-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
  }

  .wl-hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }

  .wl-hero h1 span {
    background: linear-gradient(135deg, #a5b4fc 0%, #e879f9 50%, #fb7185 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .wl-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
  }

  .wl-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }

  .wl-btn-hero-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: var(--wl-radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--wl-font);
    box-shadow: 0 8px 30px rgba(99,102,241,0.5);
    transition: all 0.3s;
    letter-spacing: -0.01em;
  }

  .wl-btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99,102,241,0.6);
  }

  .wl-btn-hero-outline {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 16px 32px;
    border-radius: var(--wl-radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--wl-font);
    transition: all 0.3s;
    backdrop-filter: blur(8px);
    letter-spacing: -0.01em;
  }

  .wl-btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
  }

  .wl-hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .wl-stat-item {
    text-align: center;
  }

  .wl-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
  }

  .wl-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .wl-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
  }

  /* ===== SECTIONS COMMON ===== */
  .wl-section {
    padding: 96px 24px;
  }

  .wl-container {
    max-width: 1140px;
    margin: 0 auto;
  }

  .wl-section-tag {
    display: inline-block;
    background: rgba(99,102,241,0.1);
    color: var(--wl-primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }

  .wl-section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #1e1b4b;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }

  .wl-section-sub {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .wl-section-header {
    text-align: center;
    margin-bottom: 64px;
  }

  /* ===== FEATURES ===== */
  .wl-features { background: #fff; }

  .wl-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .wl-feature-card {
    background: #fff;
    border: 1px solid #f0f0f8;
    border-radius: var(--wl-radius-lg);
    padding: 32px 28px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
  }

  .wl-feature-card.wl-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .wl-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--wl-gradient);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
  }

  .wl-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--wl-shadow-xl);
    border-color: rgba(99,102,241,0.15);
  }

  .wl-feature-card:hover::before { transform: scaleX(1); }

  .wl-feature-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, rgba(118,75,162,0.12) 100%);
    border-radius: var(--wl-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .wl-feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .wl-feature-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.65;
  }

  /* ===== HOW IT WORKS ===== */
  .wl-howitworks { background: #faf9ff; }

  .wl-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }

  .wl-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7, #764ba2);
    z-index: 0;
  }

  .wl-step {
    text-align: center;
    padding: 0 20px 32px;
    position: relative;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.5s ease;
  }

  .wl-step.wl-visible { opacity: 1; transform: translateY(0); }

  .wl-step-num {
    width: 80px; height: 80px;
    background: var(--wl-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(99,102,241,0.35);
    transition: transform 0.3s;
  }

  .wl-step:hover .wl-step-num { transform: scale(1.1); }

  .wl-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .wl-step-desc {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.6;
  }

  /* ===== USE CASES ===== */
  .wl-usecases {
    background: var(--wl-gradient);
    padding: 96px 24px;
    position: relative;
    overflow: hidden;
  }

  .wl-usecases::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .wl-usecases .wl-section-title { color: #fff; }
  .wl-usecases .wl-section-sub { color: rgba(255,255,255,0.7); }
  .wl-usecases .wl-section-tag { background: rgba(255,255,255,0.15); color: #fff; }

  .wl-usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .wl-usecase-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--wl-radius-lg);
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(25px);
  }

  .wl-usecase-card.wl-visible { opacity: 1; transform: translateY(0); }

  .wl-usecase-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  }

  .wl-usecase-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }

  .wl-usecase-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .wl-usecase-desc {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
  }

  /* ===== AI CHAT SHOWCASE ===== */
  .wl-chat-showcase { background: #faf9ff; }

  .wl-showcase-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
  }

  .wl-showcase-block {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.5s ease;
  }

  .wl-showcase-block.wl-visible { opacity: 1; transform: translateY(0); }

  .wl-showcase-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, rgba(118,75,162,0.12) 100%);
    border-radius: var(--wl-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
  }

  .wl-showcase-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }

  .wl-showcase-desc {
    font-size: 0.92rem;
    color: #6b7280;
    line-height: 1.65;
  }

  .wl-showcase-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
  }

  .wl-showcase-tag {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(99,102,241,0.08);
    color: var(--wl-primary);
  }

  /* ===== INTEGRATIONS ===== */
  .wl-integrations { background: #fff; }

  .wl-integrations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .wl-integration-badge {
    background: #fff;
    border: 1px solid #f0f0f8;
    border-radius: var(--wl-radius-md);
    padding: 24px 28px;
    text-align: center;
    min-width: 130px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
  }

  .wl-integration-badge.wl-visible { opacity: 1; transform: translateY(0); }

  .wl-integration-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--wl-shadow-lg);
    border-color: rgba(99,102,241,0.15);
  }

  .wl-integration-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
  }

  .wl-integration-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e1b4b;
  }

  /* ===== HOW IT WORKS TABS ===== */
  .wl-hiw-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
  }

  .wl-hiw-tab {
    padding: 10px 24px;
    border-radius: 100px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--wl-font);
  }

  .wl-hiw-tab:hover { border-color: var(--wl-primary); color: var(--wl-primary); }
  .wl-hiw-tab.active { background: var(--wl-gradient); border-color: transparent; color: #fff; }

  .wl-hiw-content { display: none; }
  .wl-hiw-content.active { display: block; }

  /* ===== HERO PRODUCT CARDS ===== */
  .wl-hero-products {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin: 32px 0;
    flex-wrap: wrap;
  }

  .wl-hero-product {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--wl-radius-lg);
    padding: 32px 28px;
    max-width: 340px;
    flex: 1;
    min-width: 260px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
  }

  .wl-hero-product:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
  }

  .wl-hero-product-icon { font-size: 36px; margin-bottom: 12px; }
  .wl-hero-product h3 { color: #fff; font-size: 20px; margin: 0 0 8px; }
  .wl-hero-product p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0; line-height: 1.5; }

  .wl-hero-product ul {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .wl-hero-product ul li {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
  }

  .wl-hero-product ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a78bfa;
    font-weight: 700;
  }

  /* ===== COMPARISON ===== */
  .wl-comparison { background: #fff; }

  .wl-table-wrap {
    overflow-x: auto;
    border-radius: var(--wl-radius-lg);
    box-shadow: var(--wl-shadow-xl);
    border: 1px solid #f0f0f8;
  }

  .wl-compare-table {
    width: 100%;
    border-collapse: collapse;
  }

  .wl-compare-table th {
    padding: 20px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: left;
    border-bottom: 2px solid #f0f0f8;
  }

  .wl-compare-table th:first-child { color: #6b7280; font-weight: 600; background: #fafafa; }

  .wl-th-us {
    background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(118,75,162,0.08) 100%);
    color: var(--wl-primary) !important;
    position: relative;
  }

  .wl-th-us::before {
    content: '⭐ Наш выбор';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wl-gradient);
    color: #fff;
    font-size: 0.72rem;
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 700;
    white-space: nowrap;
  }

  .wl-compare-table td {
    padding: 16px 28px;
    font-size: 0.93rem;
    border-bottom: 1px solid #f5f5fa;
    color: #374151;
  }

  .wl-compare-table tr:last-child td { border-bottom: none; }
  .wl-compare-table tr:hover td { background: #fafafe; }

  .wl-td-us { background: rgba(99,102,241,0.04); font-weight: 600; color: #1e1b4b !important; }

  .wl-check { color: #10b981; font-size: 1.1rem; font-weight: 700; }
  .wl-cross { color: #ef4444; font-size: 1.1rem; }

  /* ===== PRICING ===== */
  .wl-pricing { background: #faf9ff; }

  .wl-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
  }

  .wl-price-card {
    background: #fff;
    border: 2px solid #f0f0f8;
    border-radius: var(--wl-radius-xl);
    padding: 36px 32px;
    transition: all 0.35s;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
  }

  .wl-price-card.wl-visible { opacity: 1; transform: translateY(0); }

  .wl-price-card:hover {
    box-shadow: var(--wl-shadow-xl);
    transform: translateY(-4px);
  }

  .wl-price-card-popular {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border-color: var(--wl-primary);
    transform: translateY(-12px) !important;
    box-shadow: 0 24px 60px rgba(99,102,241,0.35) !important;
    z-index: 2;
  }

  .wl-price-card-popular.wl-visible { transform: translateY(-12px) !important; }
  .wl-price-card-popular:hover { transform: translateY(-18px) !important; }

  .wl-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(245,158,11,0.4);
  }

  .wl-plan-name {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--wl-primary);
    margin-bottom: 16px;
  }

  .wl-price-card-popular .wl-plan-name { color: #a5b4fc; }

  .wl-price-num {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
  }

  .wl-price-amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1e1b4b;
    letter-spacing: -0.03em;
  }

  .wl-price-card-popular .wl-price-amount { color: #fff; }

  .wl-price-period {
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 500;
  }

  .wl-price-card-popular .wl-price-period { color: rgba(255,255,255,0.55); }

  .wl-price-old {
    font-size: 0.9rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 24px;
  }

  .wl-price-card-popular .wl-price-old { color: rgba(255,255,255,0.4); }

  .wl-price-divider {
    height: 1px;
    background: #f0f0f8;
    margin: 24px 0;
  }

  .wl-price-card-popular .wl-price-divider { background: rgba(255,255,255,0.1); }

  .wl-price-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .wl-price-features li {
    font-size: 0.9rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .wl-price-card-popular .wl-price-features li { color: rgba(255,255,255,0.82); }

  .wl-price-features li::before {
    content: '✓';
    width: 20px; height: 20px;
    background: rgba(16,185,129,0.12);
    color: #10b981;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
  }

  .wl-btn-pricing {
    width: 100%;
    padding: 14px;
    border-radius: var(--wl-radius-md);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--wl-font);
    transition: all 0.3s;
    border: 2px solid var(--wl-primary);
    background: transparent;
    color: var(--wl-primary);
  }

  .wl-btn-pricing:hover {
    background: var(--wl-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99,102,241,0.3);
  }

  .wl-btn-pricing-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(99,102,241,0.4);
  }

  .wl-btn-pricing-primary:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    box-shadow: 0 12px 32px rgba(99,102,241,0.5);
    transform: translateY(-2px);
    color: #fff;
  }

  /* ===== CALC PILLS ===== */
  .calc-pill {
    padding: 8px 16px;
    border-radius: 100px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .calc-pill:hover { border-color: #2563eb; color: #2563eb; }
  .calc-pill.active { background: #2563eb; border-color: #2563eb; color: #fff; }

  /* ===== FAQ ===== */
  .wl-faq { background: #fff; }

  .wl-faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .wl-faq-item {
    border: 1px solid #e8e8f4;
    border-radius: var(--wl-radius-md);
    overflow: hidden;
    transition: all 0.3s;
  }

  .wl-faq-item.wl-open { border-color: var(--wl-primary); box-shadow: 0 4px 16px rgba(99,102,241,0.1); }

  .wl-faq-q {
    padding: 20px 24px;
    font-size: 0.97rem;
    font-weight: 600;
    color: #1e1b4b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    transition: background 0.2s;
  }

  .wl-faq-q:hover { background: #faf9ff; }
  .wl-faq-item.wl-open .wl-faq-q { background: rgba(99,102,241,0.04); color: var(--wl-primary); }

  .wl-faq-icon {
    width: 28px; height: 28px;
    background: #f0f0f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    transition: all 0.3s;
    color: #6b7280;
  }

  .wl-faq-item.wl-open .wl-faq-icon {
    background: var(--wl-primary);
    color: #fff;
    transform: rotate(45deg);
  }

  .wl-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 0.92rem;
    color: #6b7280;
    line-height: 1.7;
    padding: 0 24px;
  }

  .wl-faq-item.wl-open .wl-faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
  }

  /* ===== CTA SECTION ===== */
  .wl-cta-section {
    background: var(--wl-gradient);
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .wl-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
  }

  .wl-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }

  .wl-cta-section .wl-section-tag { background: rgba(255,255,255,0.15); color: #fff; }

  .wl-cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.15;
  }

  .wl-cta-section p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 40px;
    line-height: 1.65;
  }

  .wl-btn-cta-main {
    background: #fff;
    color: var(--wl-primary-dark);
    border: none;
    padding: 18px 40px;
    border-radius: var(--wl-radius-md);
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    font-family: var(--wl-font);
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    letter-spacing: -0.01em;
  }

  .wl-btn-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.25);
  }

  /* ===== FOOTER ===== */
  .wl-footer {
    background: #0f0e1a;
    padding: 56px 24px 32px;
    color: rgba(255,255,255,0.55);
  }

  .wl-footer-inner {
    max-width: 1140px;
    margin: 0 auto;
  }

  .wl-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .wl-footer-brand { max-width: 280px; }

  .wl-footer-logo {
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--wl-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 12px;
  }

  .wl-footer-tagline {
    font-size: 0.87rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.45);
  }

  .wl-footer-nav {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
  }

  .wl-footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
  }

  .wl-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .wl-footer-col ul li a {
    text-decoration: none;
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    transition: color 0.2s;
    cursor: pointer;
  }

  .wl-footer-col ul li a:hover { color: rgba(255,255,255,0.85); }

  .wl-footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin-bottom: 24px;
  }

  .wl-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.3);
  }

  /* ===== WAVE DIVIDER ===== */
  .wl-wave-top { display: block; line-height: 0; }
  .wl-wave-bottom { display: block; line-height: 0; }

  /* ===== ANIMATIONS ===== */
  .wl-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .wl-fade-up.wl-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .wl-features-grid { grid-template-columns: repeat(2, 1fr); }
    .wl-usecases-grid { grid-template-columns: repeat(2, 1fr); }
    .wl-showcase-block { grid-template-columns: 1fr; gap: 16px; }
    .wl-steps { grid-template-columns: repeat(2, 1fr); }
    .wl-steps::before { display: none; }
    .wl-pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .wl-price-card-popular { transform: translateY(0) !important; }
    .wl-price-card-popular.wl-visible { transform: translateY(0) !important; }
    .wl-price-card-popular:hover { transform: translateY(-4px) !important; }
  }

  @media (max-width: 768px) {
    .wl-navbar-links { display: none; }
    .wl-navbar-toggle { display: block; }
    .wl-navbar.wl-menu-open .wl-navbar-links {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 64px;
      left: 0; right: 0;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      padding: 20px 24px;
      gap: 8px;
      border-bottom: 1px solid rgba(99,102,241,0.1);
      box-shadow: var(--wl-shadow-lg);
    }
    .wl-navbar.wl-menu-open .wl-navbar-links a { padding: 10px 0; font-size: 1rem; }
    .wl-hero-stats { gap: 28px; }
    .wl-section { padding: 72px 20px; }
    .wl-features-grid { grid-template-columns: 1fr; }
    .wl-compare-table th, .wl-compare-table td { padding: 12px 16px; font-size: 0.85rem; }
    .wl-integration-badge { min-width: 110px; padding: 18px 20px; }
    .wl-footer-nav { gap: 32px; }
  }

  @media (max-width: 480px) {
    .wl-hero { padding: 100px 20px 60px; }
    .wl-hero-btns { flex-direction: column; align-items: center; }
    .wl-btn-hero-primary, .wl-btn-hero-outline { width: 100%; max-width: 300px; }
    .wl-hero-stats { gap: 20px; }
    .wl-steps { grid-template-columns: 1fr; }
    .wl-usecases-grid { grid-template-columns: 1fr; }
    .wl-footer-top { flex-direction: column; }
    .wl-footer-nav { flex-direction: column; gap: 24px; }
  }
