    :root {
      --c-bg: #FFFFFF;
      --c-bg-light: #F8F9FB;
      --c-text: #111827;
      --c-text-secondary: #4B5563;
      --c-text-muted: #9CA3AF;
      --c-accent: #4361EE;
      --c-accent-hover: #3651D4;
      --c-purple: #7C3AED;
      --c-magenta: #D946EF;
      --c-border: #E5E7EB;
      --c-border-light: #F3F4F6;
      --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      --radius: 12px;
      --radius-sm: 8px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.6;
      color: var(--c-text);
      background: var(--c-bg);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ── Container ── */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ── Scroll reveal ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ══════════════════════════════════
       NAV — ROCKET.red style
    ══════════════════════════════════ */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 24px 0;
      transition: all 0.3s ease;
    }
    nav.scrolled {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--c-border-light);
      padding: 16px 0;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      font-family: var(--font);
      font-size: 28px;
      font-weight: 900;
      color: var(--c-text);
      text-decoration: none;
      letter-spacing: -0.03em;
      text-transform: uppercase;
    }
    .logo-img {
      height: 38px;
      width: auto;
      display: block;
    }
    .nav-links {
      display: flex;
      gap: 8px;
      list-style: none;
    }
    .nav-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 20px;
      border-radius: 50px;
      background: rgba(67, 97, 238, 0.08);
      color: var(--c-accent);
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.01em;
      transition: all 0.25s ease;
      border: 1px solid rgba(67, 97, 238, 0.12);
    }
    .nav-pill:hover {
      background: rgba(67, 97, 238, 0.14);
      border-color: rgba(67, 97, 238, 0.25);
      color: var(--c-accent);
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-login {
      font-size: 13px;
      font-weight: 600;
      color: var(--c-text-secondary);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-login:hover {
      color: var(--c-accent);
    }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      padding: 9px 20px;
      border-radius: 50px;
      background: var(--c-accent);
      color: #FFFFFF;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.01em;
      transition: all 0.25s ease;
      border: 1px solid var(--c-accent);
    }
    .nav-cta:hover {
      background: var(--c-accent-hover);
      border-color: var(--c-accent-hover);
      box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
    }

    /* ══════════════════════════════════
       HERO — split layout like ROCKET.red
    ══════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 100px 0 40px;
      position: relative;
      overflow: hidden;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .hero h1 {
      font-size: clamp(32px, 3.6vw, 48px);
      font-weight: 900;
      line-height: 1.15;
      letter-spacing: -0.025em;
      margin-bottom: 20px;
      color: var(--c-text);
    }
    .hero h1 .accent {
      background: linear-gradient(135deg, var(--c-accent), var(--c-purple), var(--c-magenta));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: 16px;
      color: var(--c-text-secondary);
      line-height: 1.6;
      max-width: 480px;
      margin-bottom: 32px;
    }
    .hero-cta-group {
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--c-accent);
      color: #FFFFFF;
      padding: 14px 28px;
      border-radius: 60px;
      text-decoration: none;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-family: var(--font);
    }
    .btn-primary:hover {
      background: var(--c-accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(67, 97, 238, 0.35);
    }
    .btn-primary svg { transition: transform 0.3s; }
    .btn-primary:hover svg { transform: translateX(3px); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--c-text);
      padding: 14px 24px;
      text-decoration: none;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      border: 2px solid var(--c-border);
      border-radius: 60px;
      transition: all 0.3s;
    }
    .btn-secondary:hover {
      border-color: var(--c-text);
    }

    .hero-visual {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    /* ══════════════════════════════════
       HERO STORY MOCKUP — single card
    ══════════════════════════════════ */
    .mock {
      width: 100%;
      background: var(--c-bg);
      border-radius: 16px;
      border: 1px solid var(--c-border);
      box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
      overflow: hidden;
      font-family: var(--font);
      position: relative;
    }
    .mock-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      background: var(--c-bg-light);
      border-bottom: 1px solid var(--c-border-light);
    }
    .mock-bar-dot { width: 10px; height: 10px; border-radius: 50%; }
    .mock-bar-dot--r { background: #EF4444; }
    .mock-bar-dot--y { background: #F59E0B; }
    .mock-bar-dot--g { background: #22C55E; }
    .mock-bar-title {
      margin-left: 8px;
      font-size: 11px;
      color: var(--c-text-muted);
      font-weight: 500;
    }
    .mock-bar-right {
      margin-left: auto;
      display: flex; align-items: center; gap: 4px;
      font-size: 10px; color: #059669; font-weight: 500;
    }
    .mock-bar-right::before {
      content: ''; width: 6px; height: 6px;
      background: #22C55E; border-radius: 50%;
    }

    /* Scenes container — stacks scenes, only one visible */
    .mock-scenes {
      position: relative;
      height: 580px;
      overflow: hidden;
    }
    .mock-scene {
      position: absolute;
      inset: 0;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      opacity: 0;
      transform: translateX(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
      pointer-events: none;
      overflow: hidden;
    }
    .mock-scene.active {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
    }
    .mock-scene.exit {
      opacity: 0;
      transform: translateX(-30px);
    }

    /* Chat elements */
    .m-msg {
      max-width: 90%;
      padding: 10px 14px;
      border-radius: 14px;
      font-size: 12px;
      line-height: 1.55;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .m-msg.show { opacity: 1; transform: translateY(0); }
    .m-msg--user {
      align-self: flex-end;
      background: var(--c-accent);
      color: white;
      border-bottom-right-radius: 4px;
    }
    .m-msg--ai {
      align-self: flex-start;
      background: var(--c-bg-light);
      color: var(--c-text);
      border: 1px solid var(--c-border-light);
      border-bottom-left-radius: 4px;
    }
    .m-msg--ai strong { color: var(--c-accent); }

    /* Typing dots */
    .m-dots {
      align-self: flex-start;
      display: flex; gap: 4px;
      padding: 10px 16px;
      background: var(--c-bg-light);
      border-radius: 14px;
      border: 1px solid var(--c-border-light);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .m-dots.show { opacity: 1; }
    .m-dot {
      width: 6px; height: 6px;
      background: var(--c-text-muted);
      border-radius: 50%;
      animation: dotBounce 1.2s ease infinite;
    }
    .m-dot:nth-child(2) { animation-delay: 0.15s; }
    .m-dot:nth-child(3) { animation-delay: 0.3s; }
    @keyframes dotBounce {
      0%,60%,100% { transform: translateY(0); opacity: 0.4; }
      30% { transform: translateY(-4px); opacity: 1; }
    }

    /* AI inner card */
    .m-card {
      margin-top: 8px;
      background: white;
      border: 1px solid var(--c-border);
      border-radius: 8px;
      padding: 6px 10px;
      font-size: 11px;
    }
    .m-card-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 4px 0;
      gap: 8px;
    }
    .m-card-row + .m-card-row {
      border-top: 1px solid var(--c-border-light);
    }
    .m-card-deal { font-weight: 600; color: var(--c-text); flex: 1; }
    .m-card-sum { color: var(--c-text-muted); font-size: 10px; white-space: nowrap; }
    .m-card-tag {
      font-size: 9px; font-weight: 600;
      padding: 2px 7px; border-radius: 8px; white-space: nowrap;
    }
    .m-card-tag--risk { background: #FEF2F2; color: #DC2626; }
    .m-card-tag--warn { background: #FFFBEB; color: #D97706; }

    /* Deal detail card (scene 2) */
    .m-deal-header {
      display: flex; align-items: center; gap: 10px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--c-border-light);
    }
    .m-deal-avatar {
      width: 36px; height: 36px; border-radius: 10px;
      background: linear-gradient(135deg, var(--c-accent), var(--c-purple));
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 800; color: white;
    }
    .m-deal-info h4 {
      font-size: 14px; font-weight: 700; color: var(--c-text); margin: 0;
    }
    .m-deal-info span {
      font-size: 11px; color: var(--c-text-muted);
    }
    .m-deal-meta {
      display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    }
    .m-deal-meta-item {
      background: var(--c-bg-light);
      border: 1px solid var(--c-border-light);
      border-radius: 8px;
      padding: 8px 10px;
    }
    .m-deal-meta-label {
      font-size: 9px; font-weight: 600; color: var(--c-text-muted);
      text-transform: uppercase; letter-spacing: 0.04em;
    }
    .m-deal-meta-value {
      font-size: 13px; font-weight: 700; color: var(--c-text);
      margin-top: 2px;
    }
    .m-deal-meta-value--accent { color: var(--c-accent); }
    .m-deal-meta-value--danger { color: #EF4444; }

    /* Methodology checklist */
    .m-checklist { list-style: none; padding: 0; margin: 0; }
    .m-checklist li {
      display: flex; align-items: center; gap: 8px;
      padding: 5px 0;
      font-size: 11px;
      color: var(--c-text-secondary);
      border-bottom: 1px solid var(--c-border-light);
    }
    .m-checklist li:last-child { border-bottom: none; }
    .m-check { width: 16px; height: 16px; border-radius: 4px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; }
    .m-check--ok { background: #ECFDF5; color: #059669; }
    .m-check--fail { background: #FEF2F2; color: #DC2626; }
    .m-check svg { width: 10px; height: 10px; }

    /* Deal indicators (scene 2) */
    .m-indicators {
      display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
      margin-top: 6px;
    }
    .m-indicator {
      background: var(--c-bg-light);
      border: 1px solid var(--c-border-light);
      border-radius: 8px;
      padding: 8px 10px;
      text-align: center;
    }
    .m-indicator-label {
      font-size: 9px; font-weight: 600; color: var(--c-text-muted);
      text-transform: uppercase; letter-spacing: 0.04em;
      margin-bottom: 4px;
    }
    .m-indicator-bar {
      height: 4px; background: var(--c-border-light); border-radius: 2px;
      overflow: hidden; margin-bottom: 4px;
    }
    .m-indicator-fill {
      height: 100%; border-radius: 2px;
      transition: width 1s ease;
    }
    .m-indicator-fill--green { background: #22C55E; }
    .m-indicator-fill--orange { background: #F59E0B; }
    .m-indicator-fill--red { background: #EF4444; }
    .m-indicator-value {
      font-size: 12px; font-weight: 700;
    }
    .m-indicator-value--green { color: #059669; }
    .m-indicator-value--orange { color: #D97706; }
    .m-indicator-value--red { color: #DC2626; }

    /* Success banner (scene 4) — green theme */
    .m-success {
      text-align: center;
      padding: 20px 20px 10px;
    }
    .m-success-ring {
      width: 100px; height: 100px;
      margin: 0 auto 12px;
      position: relative;
    }
    .m-success-ring svg { width: 100%; height: 100%; }
    .m-success-ring-bg { fill: none; stroke: var(--c-border-light); stroke-width: 6; }
    .m-success-ring-fg {
      fill: none; stroke: #22C55E; stroke-width: 6;
      stroke-linecap: round;
      stroke-dasharray: 0 314;
      transition: stroke-dasharray 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .m-success-ring-fg.animate {
      stroke-dasharray: 229 314;
    }
    .m-success-pct {
      position: absolute;
      inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px; font-weight: 900; color: #16A34A;
      letter-spacing: -0.03em;
    }
    .m-success-delta {
      display: inline-block;
      background: #ECFDF5; color: #059669;
      font-size: 12px; font-weight: 700;
      padding: 3px 10px; border-radius: 12px;
      margin-bottom: 8px;
    }
    .m-success-label {
      font-size: 13px; font-weight: 600; color: var(--c-text);
      margin-bottom: 4px;
    }
    .m-success-sub {
      font-size: 11px; color: var(--c-text-muted); max-width: 280px; margin: 0 auto 10px;
    }
    /* Next steps block in scene 4 */
    .m-next-steps {
      text-align: left;
      background: #F0FDF4;
      border: 1px solid #BBF7D0;
      border-radius: 8px;
      padding: 10px 12px;
      max-width: 320px;
      margin: 0 auto;
    }
    .m-next-steps-title {
      font-size: 10px; font-weight: 700; color: #16A34A;
      text-transform: uppercase; letter-spacing: 0.04em;
      margin-bottom: 6px;
    }
    .m-next-step {
      display: flex; align-items: flex-start; gap: 6px;
      font-size: 11px; color: var(--c-text-secondary);
      padding: 3px 0;
    }
    .m-next-step-num {
      width: 16px; height: 16px; flex-shrink: 0;
      background: #22C55E; color: white;
      border-radius: 50%; font-size: 9px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
    }

    /* Chat input bar */
    .mock-input {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 16px;
      border-top: 1px solid var(--c-border-light);
    }
    .mock-input-field {
      flex: 1;
      background: var(--c-bg-light);
      border: 1px solid var(--c-border-light);
      border-radius: 8px;
      padding: 8px 12px;
      font-size: 11px;
      color: var(--c-text-muted);
      font-family: var(--font);
      transition: border-color 0.2s, color 0.2s;
    }
    .mock-input-field.typing {
      color: var(--c-text);
      border-color: var(--c-accent);
    }
    .mock-input-btn {
      width: 32px; height: 32px;
      background: var(--c-accent);
      border: none; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }
    .mock-input-btn svg { width: 14px; height: 14px; }

    /* Scene transition breadcrumb */
    .m-breadcrumb {
      font-size: 10px; color: var(--c-text-muted);
      display: flex; align-items: center; gap: 4px;
      padding-bottom: 4px;
    }
    .m-breadcrumb strong { color: var(--c-text); font-weight: 600; }

    /* Responsive */
    @media (max-width: 768px) {
      .mock-scenes { height: 640px; }
      .m-deal-meta { grid-template-columns: 1fr; }
      .m-indicators { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .mock-scene { padding: 10px; }
      .mock-scenes { height: 680px; }
    }

    .hero-stats {
      display: flex;
      gap: 36px;
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--c-border);
    }
    .hero-stat-value {
      font-size: 32px;
      font-weight: 900;
      color: var(--c-text);
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 12px;
      color: var(--c-text-muted);
      margin-top: 6px;
    }

    /* ── TG Channel Card ── */
    .tg-channel-card {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--c-bg);
      border: 1px solid var(--c-border-light);
      border-radius: 10px;
      padding: 6px 10px 6px 6px;
      margin-top: -14px;
      text-decoration: none;
      color: var(--c-text);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      width: fit-content;
      position: relative;
      z-index: 2;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .tg-channel-card:hover {
      border-color: #2AABEE;
      box-shadow: 0 4px 16px rgba(42,171,238,0.12);
    }
    .tg-channel-card-icon {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      position: relative;
    }
    .tg-channel-card-avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: linear-gradient(135deg, #2AABEE, #1B8DC7);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .tg-channel-card-avatar svg {
      width: 13px;
      height: 13px;
    }
    .tg-channel-card-badge {
      position: absolute;
      bottom: -1px;
      right: -1px;
      width: 13px;
      height: 13px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    }
    .tg-channel-card-badge svg {
      width: 8px;
      height: 8px;
    }
    .tg-channel-card-body {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .tg-channel-card-title {
      font-size: 12px;
      font-weight: 600;
      color: var(--c-text);
      display: flex;
      align-items: center;
      gap: 3px;
      white-space: nowrap;
    }
    .tg-channel-card-title .arrow {
      color: var(--c-accent);
      font-size: 12px;
      transition: transform 0.2s ease;
    }
    .tg-channel-card:hover .arrow {
      transform: translateX(3px);
    }
    .tg-channel-card-subs {
      font-size: 10px;
      color: var(--c-text-muted);
    }
    .tg-channel-card-tg-icon {
      color: #2AABEE;
    }

    /* ══════════════════════════════════
       LOGO TICKER
    ══════════════════════════════════ */
    .logos-section {
      padding: 48px 0;
      border-bottom: 1px solid var(--c-border-light);
      overflow: hidden;
    }
    .logos-label {
      text-align: center;
      font-size: 13px;
      font-weight: 600;
      color: var(--c-text-muted);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .logos-track {
      display: flex;
      width: max-content;
      animation: tickerScroll 30s linear infinite;
    }
    .logos-track:hover {
      animation-play-state: paused;
    }
    .logos-set {
      display: flex;
      align-items: center;
      gap: 56px;
      padding-right: 56px;
    }
    .logo-item {
      flex-shrink: 0;
      height: 48px;
      display: flex;
      align-items: center;
      opacity: 0.7;
      transition: opacity 0.3s;
    }
    .logo-item:hover {
      opacity: 1;
    }
    .logo-item img {
      height: 48px;
      width: auto;
      object-fit: contain;
    }
    @keyframes tickerScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ══════════════════════════════════
       SECTION COMMON
    ══════════════════════════════════ */
    section {
      padding: 120px 0;
      position: relative;
    }

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

    .section-label {
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--c-purple);
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(28px, 3.2vw, 40px);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.1;
      max-width: 700px;
      margin-bottom: 16px;
    }
    .section-header--center .section-title {
      margin-left: auto;
      margin-right: auto;
    }

    .section-desc {
      font-size: 18px;
      color: var(--c-text-secondary);
      max-width: 560px;
      line-height: 1.65;
    }
    .section-header--center .section-desc {
      margin-left: auto;
      margin-right: auto;
    }

    /* ══════════════════════════════════
       PAIN SECTION
    ══════════════════════════════════ */
    .pain-section {
      background: var(--c-bg-light);
    }
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .pain-card {
      background: var(--c-bg);
      border: 1px solid var(--c-border-light);
      border-radius: var(--radius);
      padding: 36px 32px;
      transition: all 0.3s ease;
    }
    .pain-card:hover {
      border-color: var(--c-accent);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(67,97,238,0.10);
    }
    .pain-card-number {
      font-size: 48px;
      font-weight: 900;
      color: var(--c-bg-light);
      line-height: 1;
      margin-bottom: 16px;
      -webkit-text-stroke: 1px var(--c-border);
      transition: color 0.3s ease, -webkit-text-stroke-color 0.3s ease;
    }
    .pain-card:hover .pain-card-number {
      color: rgba(67,97,238,0.12);
      -webkit-text-stroke-color: var(--c-accent);
    }
    .pain-card h3 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }
    .pain-card p {
      font-size: 15px;
      color: var(--c-text-secondary);
      line-height: 1.6;
    }

    /* ══════════════════════════════════
       TRY SECTION
    ══════════════════════════════════ */
    .try-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .try-card {
      border: 1px solid var(--c-border);
      border-radius: var(--radius);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .try-card:hover {
      border-color: var(--c-accent);
      box-shadow: 0 0 0 1px var(--c-accent);
    }
    .try-card-number {
      font-size: 80px;
      font-weight: 900;
      color: var(--c-bg-light);
      position: absolute;
      top: -8px;
      right: 20px;
      line-height: 1;
      -webkit-text-stroke: 1px var(--c-border-light);
    }
    .try-card h3 {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
      position: relative;
    }
    .try-card p {
      color: var(--c-text-secondary);
      line-height: 1.7;
      position: relative;
    }
    .try-card-tag {
      display: inline-block;
      background: rgba(67, 97, 238, 0.08);
      color: var(--c-accent);
      font-size: 13px;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: 50px;
      margin-top: 20px;
      position: relative;
    }

    /* ══════════════════════════════════
       FEATURES
    ══════════════════════════════════ */
    .features-section {
      background: var(--c-bg-light);
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .feature-card {
      background: var(--c-bg);
      border: 1px solid var(--c-border-light);
      border-radius: var(--radius);
      padding: 40px 36px;
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      border-color: var(--c-border);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    }
    .feature-card--highlight {
      grid-column: 1 / -1;
      border-left: 4px solid var(--c-purple);
    }
    .feature-card-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 20px;
    }
    .feature-card-icon--blue { background: rgba(67, 97, 238, 0.08); }
    .feature-card-icon--purple { background: rgba(124, 58, 237, 0.08); }
    .feature-card-icon--magenta { background: rgba(217, 70, 239, 0.08); }
    .feature-card-icon--green { background: rgba(34, 197, 94, 0.08); }
    .feature-card h3 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }
    .feature-card p {
      color: var(--c-text-secondary);
      line-height: 1.7;
      font-size: 15px;
    }

    /* ── Role tabs (audience switcher) ── */
    .role-tabs {
      display: flex;
      background: var(--c-bg);
      border-radius: var(--radius);
      border: 1px solid var(--c-border-light);
      overflow: hidden;
      margin-bottom: 0;
    }
    .role-tab {
      flex: 1;
      padding: 20px 16px;
      font-size: 15px;
      font-weight: 700;
      color: var(--c-text-secondary);
      background: transparent;
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
      text-align: center;
      letter-spacing: -0.01em;
      position: relative;
    }
    .role-tab:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 25%;
      height: 50%;
      width: 1px;
      background: var(--c-border-light);
    }
    .role-tab:hover { color: var(--c-text); background: var(--c-bg-light); }
    .role-tab.active {
      color: var(--c-accent);
      background: rgba(67, 97, 238, 0.06);
      font-weight: 800;
    }

    /* Panels */
    .role-panel { display: none; }
    .role-panel.active { display: block; }

    /* Hero inside panel */
    .role-hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      padding: 64px 0 48px;
    }
    .role-hero-title {
      font-size: 36px;
      font-weight: 900;
      line-height: 1.2;
      letter-spacing: -0.03em;
      margin-bottom: 20px;
    }
    .role-hero-desc {
      font-size: 17px;
      color: var(--c-text-secondary);
      line-height: 1.7;
    }

    /* ── Visual containers ── */
    .role-hero-visual { display: flex; justify-content: center; }
    .role-visual {
      width: 100%; max-width: 440px;
      border-radius: var(--radius);
      padding: 28px 24px;
      display: flex; flex-direction: column;
      gap: 14px; position: relative; overflow: hidden;
    }
    .role-visual--owner { background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 50%, #C7D2FE 100%); }
    .role-visual--rop { background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 50%, #FECACA 100%); }
    .role-visual--marketer { background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 50%, #BBF7D0 100%); }
    .role-visual--manager { background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #BFDBFE 100%); position: relative; }

    /* ── Shared ── */
    .rv-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
    .rv-dot--red { background: #EF4444; }
    .rv-dot--yellow { background: #F59E0B; }
    .rv-dot--green { background: #22C55E; }

    /* ═══ OWNER — pipeline + chart + managers ═══ */
    .rv-pipeline { display: flex; align-items: flex-start; gap: 6px; }
    .rv-pipeline-col { flex: 1; background: white; border-radius: 10px; padding: 12px 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
    .rv-pipeline-label { font-size: 10px; font-weight: 700; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.05em; }
    .rv-pipeline-count { font-size: 22px; font-weight: 900; color: var(--c-text); margin: 2px 0 8px; }
    .rv-pipeline-count--green { color: #22C55E; }
    .rv-pipeline-arrow { display: flex; align-items: center; padding-top: 28px; }
    .rv-deal { font-size: 10px; padding: 6px 8px; border-radius: 6px; background: #F1F5F9; margin-bottom: 4px; color: var(--c-text); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .rv-deal--warn { background: #FEF3C7; color: #92400E; }
    .rv-deal--ok { background: #DCFCE7; color: #166534; }
    .rv-deal--muted { font-size: 9px; color: #94A3B8; background: transparent; padding: 2px 8px; font-weight: 500; }
    .rv-deal--anim { opacity: 0; animation: rvFadeSlide 0.5s ease forwards; }
    .rv-deal--1 { animation-delay: 0.3s; } .rv-deal--2 { animation-delay: 0.5s; }
    .rv-deal--3 { animation-delay: 0.7s; } .rv-deal--4 { animation-delay: 0.9s; }
    .rv-deal--5 { animation-delay: 1.1s; }

    .rv-chart-wrap { background: white; border-radius: 10px; padding: 16px 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
    .rv-chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
    .rv-chart-label { font-size: 11px; font-weight: 700; color: var(--c-accent); }
    .rv-chart-badge { font-size: 10px; font-weight: 700; color: #16A34A; background: #DCFCE7; padding: 2px 8px; border-radius: 10px; }
    .rv-line-chart { width: 100%; height: 60px; }
    .rv-line-bg { fill: none; stroke: #E5E7EB; stroke-width: 2; }
    .rv-line-area { fill: url(#chartGrad); opacity: 0; animation: rvFadeIn 1s ease 1.5s forwards; }
    .rv-line-draw { fill: none; stroke: var(--c-accent); stroke-width: 2.5; stroke-dasharray: 300; stroke-dashoffset: 300; animation: rvDrawLine 2s ease 0.5s forwards; }
    @keyframes rvDrawLine { to { stroke-dashoffset: 0; } }
    @keyframes rvFadeIn { to { opacity: 0.15; } }
    .rv-chart-months { display: flex; justify-content: space-between; margin-top: 4px; }
    .rv-chart-month { font-size: 8px; color: #94A3B8; font-weight: 500; }

    .rv-managers-wrap { background: white; border-radius: 10px; padding: 12px 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
    .rv-managers-title { font-size: 11px; font-weight: 700; color: var(--c-text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
    .rv-managers { display: flex; gap: 12px; justify-content: center; }
    .rv-mgr { display: flex; flex-direction: column; align-items: center; gap: 4px; }
    .rv-mgr-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--c-accent); color: white; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
    .rv-mgr-pct { font-size: 11px; font-weight: 700; color: var(--c-text-secondary); }
    .rv-mgr-name { font-size: 9px; color: var(--c-text-muted); font-weight: 500; }
    .rv-mgr-pct--green { color: #22C55E; }
    .rv-mgr-pct--orange { color: #F59E0B; }
    .rv-mgr--anim { opacity: 0; animation: rvFadeSlide 0.4s ease forwards; }
    .rv-mgr--1 { animation-delay: 1.2s; } .rv-mgr--2 { animation-delay: 1.4s; }
    .rv-mgr--3 { animation-delay: 1.6s; } .rv-mgr--4 { animation-delay: 1.8s; }

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

    /* ═══ ROP — feed + radial + alert ═══ */
    .rv-feed { display: flex; flex-direction: column; gap: 10px; }
    .rv-feed-card { background: white; border-radius: 10px; padding: 14px 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
    .rv-feed-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
    .rv-feed-name { font-size: 12px; font-weight: 700; color: var(--c-text); }
    .rv-feed-sub { font-size: 11px; color: #94A3B8; line-height: 1.4; }
    .rv-badge { font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
    .rv-badge--red { background: #FEE2E2; color: #DC2626; }
    .rv-badge--yellow { background: #FEF3C7; color: #D97706; }
    .rv-badge--green { background: #DCFCE7; color: #16A34A; }
    .rv-feed-card--anim { opacity: 0; animation: rvFadeSlide 0.5s ease forwards; }
    .rv-feed-card--1 { animation-delay: 0.2s; }
    .rv-feed-card--2 { animation-delay: 0.5s; }
    .rv-feed-card--3 { animation-delay: 0.8s; }

    .rv-radial-wrap { display: flex; align-items: center; gap: 12px; align-self: center; }
    .rv-radial { width: 70px; height: 70px; position: relative; }
    .rv-radial svg { width: 100%; height: 100%; }
    .rv-radial-fill { animation: rvRadial 1.5s ease 0.6s both; }
    @keyframes rvRadial { from { stroke-dashoffset: 214; } }
    .rv-radial-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900; color: var(--c-accent); }
    .rv-radial-label { font-size: 12px; font-weight: 700; color: var(--c-text-secondary); }

    .rv-alert-bar { background: white; border-radius: 10px; padding: 10px 16px; display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; color: #DC2626; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
    .rv-alert-bar--anim { opacity: 0; animation: rvFadeSlide 0.5s ease 1.2s forwards; }
    .rv-alert-bar .rv-dot--red { animation: rvPulse 2s ease infinite; }
    @keyframes rvPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

    /* ═══ MARKETER — dots + filter + buckets ═══ */
    .rv-seg-source { text-align: center; position: relative; padding: 8px 0 16px; display: flex; justify-content: center; gap: 10px; }
    .rv-seg-label-top { position: absolute; top: -2px; left: 50%; transform: translateX(-50%); font-size: 10px; font-weight: 700; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
    .rv-seg-dot { width: 12px; height: 12px; border-radius: 50%; background: #94A3B8; margin-top: 18px; }
    .rv-seg-dot--anim { animation: rvDotDrop 0.6s ease forwards; opacity: 0; }
    .rv-seg-dot--1 { animation-delay: 0.1s; } .rv-seg-dot--2 { animation-delay: 0.25s; }
    .rv-seg-dot--3 { animation-delay: 0.4s; } .rv-seg-dot--4 { animation-delay: 0.55s; }
    .rv-seg-dot--5 { animation-delay: 0.7s; }
    @keyframes rvDotDrop { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }

    .rv-seg-filter { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px; border-top: 2px dashed #C7D2FE; border-bottom: 2px dashed #C7D2FE; font-size: 11px; font-weight: 700; color: var(--c-accent); }

    .rv-seg-targets { display: flex; flex-direction: column; gap: 8px; }
    .rv-seg-bucket { display: flex; align-items: center; gap: 12px; background: white; border-radius: 10px; padding: 12px 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
    .rv-seg-bucket-color { width: 8px; height: 32px; border-radius: 4px; flex-shrink: 0; }
    .rv-seg-bucket-info { display: flex; justify-content: space-between; flex: 1; align-items: center; }
    .rv-seg-bucket-name { font-size: 12px; font-weight: 700; color: var(--c-text); }
    .rv-seg-bucket-cnt { font-size: 18px; font-weight: 900; color: var(--c-text); }
    .rv-seg-bucket--anim { opacity: 0; animation: rvFadeSlide 0.4s ease forwards; }
    .rv-seg-bucket--1 { animation-delay: 0.9s; } .rv-seg-bucket--2 { animation-delay: 1.1s; }
    .rv-seg-bucket--3 { animation-delay: 1.3s; } .rv-seg-bucket--4 { animation-delay: 1.5s; }

    /* ═══ MANAGER — CRM card + AI widget ═══ */
    .rv-crm { background: white; border-radius: 12px; padding: 16px 18px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); width: 60%; }
    .rv-crm-header { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; color: var(--c-text); padding-bottom: 10px; border-bottom: 1px solid #F1F5F9; margin-bottom: 10px; }
    .rv-crm-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; }
    .rv-crm-fields { display: flex; flex-direction: column; gap: 6px; }
    .rv-crm-field { display: flex; justify-content: space-between; font-size: 10px; color: var(--c-text-secondary); }
    .rv-crm-field-label { font-weight: 700; color: #94A3B8; }

    .rv-ai-widget { position: absolute; right: 16px; top: 20px; bottom: 20px; width: 52%; background: white; border-radius: 14px; padding: 16px 18px; box-shadow: 0 8px 32px rgba(67,97,238,0.15); display: flex; flex-direction: column; border: 1.5px solid rgba(67,97,238,0.2); }
    .rv-ai-widget--anim { animation: rvSlideIn 0.6s ease 0.3s both; }
    @keyframes rvSlideIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
    .rv-ai-header { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; color: var(--c-accent); padding-bottom: 10px; border-bottom: 1px solid #EEF2FF; margin-bottom: 12px; }
    .rv-ai-lines { display: flex; flex-direction: column; gap: 8px; flex: 1; }
    .rv-ai-line { font-size: 11px; color: var(--c-text); line-height: 1.4; padding: 6px 10px; background: #F8FAFC; border-radius: 8px; border-left: 3px solid var(--c-accent); }
    .rv-ai-line--anim { opacity: 0; animation: rvFadeSlide 0.4s ease forwards; }
    .rv-ai-line--1 { animation-delay: 0.7s; } .rv-ai-line--2 { animation-delay: 1.1s; } .rv-ai-line--3 { animation-delay: 1.5s; }
    .rv-ai-actions { display: flex; gap: 6px; margin-top: auto; padding-top: 10px; }
    .rv-ai-btn { padding: 6px 12px; border-radius: 8px; font-size: 10px; font-weight: 700; background: #EEF2FF; color: var(--c-accent); cursor: pointer; transition: all 0.3s; }
    .rv-ai-btn--anim { opacity: 0; animation: rvFadeSlide 0.4s ease forwards; }
    .rv-ai-btn--1 { animation-delay: 1.8s; } .rv-ai-btn--2 { animation-delay: 2s; }
    .rv-ai-btn:hover { background: var(--c-accent); color: white; }

    /* ── Owner: AI Digest card ── */
    .rv-digest { display: flex; flex-direction: column; gap: 12px; }
    .rv-digest-header { background: white; border-radius: 12px; padding: 18px 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
    .rv-digest-title { font-size: 11px; font-weight: 700; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
    .rv-digest-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .rv-digest-metric { text-align: center; }
    .rv-digest-metric-value { font-size: 22px; font-weight: 900; color: var(--c-text); line-height: 1.1; }
    .rv-digest-metric-label { font-size: 9px; color: #94A3B8; font-weight: 600; margin-top: 2px; }
    .rv-digest-metric-delta { font-size: 10px; font-weight: 700; color: #16A34A; }
    .rv-digest-risks { background: white; border-radius: 12px; padding: 16px 18px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
    .rv-digest-risks-title { font-size: 11px; font-weight: 700; color: #DC2626; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
    .rv-digest-risk-item { font-size: 11px; color: var(--c-text-secondary); padding: 6px 0; border-bottom: 1px solid #F8FAFC; line-height: 1.4; }
    .rv-digest-risk-item:last-child { border-bottom: none; }
    .rv-digest-rec { background: white; border-radius: 12px; padding: 16px 18px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); border-left: 3px solid var(--c-accent); }
    .rv-digest-rec-title { font-size: 11px; font-weight: 700; color: var(--c-accent); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
    .rv-digest-rec-text { font-size: 11px; color: var(--c-text-secondary); line-height: 1.5; }
    .rv-digest-anim { opacity: 0; animation: rvFadeSlide 0.5s ease forwards; }
    .rv-digest-anim--1 { animation-delay: 0.2s; }
    .rv-digest-anim--2 { animation-delay: 0.5s; }
    .rv-digest-anim--3 { animation-delay: 0.8s; }

    /* ── ROP: Feed with quotes ── */
    .rv-rop-feed { display: flex; flex-direction: column; gap: 10px; }
    .rv-rop-card { background: white; border-radius: 10px; padding: 14px 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
    .rv-rop-quote { font-size: 10px; color: var(--c-accent); font-style: italic; margin-top: 6px; padding: 6px 10px; background: #F8FAFC; border-radius: 6px; border-left: 2px solid var(--c-accent); line-height: 1.4; }
    .rv-rop-quality { background: white; border-radius: 10px; padding: 14px 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
    .rv-rop-quality-title { font-size: 10px; font-weight: 700; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
    .rv-rop-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
    .rv-rop-bar-label { font-size: 10px; font-weight: 600; color: var(--c-text); width: 110px; flex-shrink: 0; }
    .rv-rop-bar-track { flex: 1; height: 8px; background: #F1F5F9; border-radius: 4px; overflow: hidden; }
    .rv-rop-bar-fill { height: 100%; border-radius: 4px; animation: rvBarGrow 1s ease forwards; transform-origin: left; }
    .rv-rop-bar-pct { font-size: 10px; font-weight: 700; width: 32px; text-align: right; }
    @keyframes rvBarGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

    /* ── Marketer: Chat dialog ── */
    .rv-mkt-chat { display: flex; flex-direction: column; gap: 10px; }
    .rv-mkt-msg { max-width: 85%; border-radius: 12px; padding: 12px 16px; font-size: 11px; line-height: 1.5; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
    .rv-mkt-msg--user { background: var(--c-accent); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
    .rv-mkt-msg--ai { background: white; color: var(--c-text); align-self: flex-start; border-bottom-left-radius: 4px; }
    .rv-mkt-msg-label { font-size: 9px; font-weight: 700; color: #94A3B8; margin-bottom: 4px; }
    .rv-mkt-msg--user .rv-mkt-msg-label { color: rgba(255,255,255,0.7); }
    .rv-mkt-stat { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px solid #F1F5F9; font-size: 11px; }
    .rv-mkt-stat:last-child { border-bottom: none; }
    .rv-mkt-stat-val { font-weight: 700; }
    .rv-mkt-stat-val--red { color: #DC2626; }
    .rv-mkt-stat-val--green { color: #16A34A; }
    .rv-mkt-anim { opacity: 0; animation: rvFadeSlide 0.5s ease forwards; }
    .rv-mkt-anim--1 { animation-delay: 0.2s; }
    .rv-mkt-anim--2 { animation-delay: 0.7s; }
    .rv-mkt-anim--3 { animation-delay: 1.3s; }
    .rv-mkt-anim--4 { animation-delay: 1.8s; }

    /* ── Manager: Daily brief ── */
    .rv-mgr-brief { display: flex; flex-direction: column; gap: 10px; }
    .rv-mgr-brief-card { background: white; border-radius: 12px; padding: 14px 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
    .rv-mgr-brief-icon { font-size: 14px; margin-right: 6px; }
    .rv-mgr-brief-title { font-size: 11px; font-weight: 700; color: var(--c-text); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
    .rv-mgr-brief-text { font-size: 10px; color: var(--c-text-secondary); line-height: 1.5; }
    .rv-mgr-brief-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; margin-top: 6px; }
    .rv-mgr-brief-field { font-size: 10px; display: flex; justify-content: space-between; padding: 4px 0; }
    .rv-mgr-brief-field-label { color: #94A3B8; font-weight: 600; }
    .rv-mgr-brief-field-val { color: var(--c-text); font-weight: 700; }
    .rv-mgr-brief-hot { background: linear-gradient(135deg, #FEF2F2, #FEE2E2); border: 1px solid #FECACA; }
    .rv-mgr-brief-hot .rv-mgr-brief-title { color: #DC2626; }
    .rv-mgr-brief-btn { display: inline-block; margin-top: 8px; padding: 5px 14px; background: var(--c-accent); color: white; border-radius: 6px; font-size: 10px; font-weight: 700; }

    /* Cards below hero */
    .role-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      padding-bottom: 16px;
    }
    .role-card {
      background: var(--c-bg);
      border: 1px solid var(--c-border-light);
      border-radius: var(--radius);
      padding: 36px 32px;
    }
    .role-card-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: rgba(67, 97, 238, 0.08);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .role-card-icon svg { width: 22px; height: 22px; stroke: var(--c-accent); fill: none; stroke-width: 2; }
    .role-card h4 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }
    .role-card p {
      color: var(--c-text-secondary);
      line-height: 1.7;
      font-size: 15px;
    }

    /* ══════════════════════════════════
       HOW IT WORKS — tabs
    ══════════════════════════════════ */
    .how-tabs {
      display: flex;
      gap: 0;
      margin-bottom: 48px;
      border-bottom: 2px solid var(--c-border-light);
    }
    .how-tab {
      padding: 16px 28px;
      font-size: 15px;
      font-weight: 700;
      color: var(--c-text-muted);
      cursor: pointer;
      border: none;
      background: none;
      font-family: var(--font);
      border-bottom: 2px solid transparent;
      margin-bottom: -2px;
      transition: all 0.3s;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-size: 13px;
    }
    .how-tab:hover { color: var(--c-text); }
    .how-tab.active {
      color: var(--c-accent);
      border-bottom-color: var(--c-accent);
    }

    .how-panel { display: none; }
    .how-panel.active { display: block; }

    .how-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .how-item {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      padding: 28px 32px;
      border: 1px solid var(--c-border-light);
      border-radius: var(--radius);
      transition: all 0.3s;
    }
    .how-item:hover {
      border-color: var(--c-border);
      background: var(--c-bg-light);
    }
    .how-item-marker {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(67, 97, 238, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }
    .how-item-content h4 {
      font-size: 17px;
      font-weight: 800;
      margin-bottom: 6px;
      letter-spacing: -0.01em;
    }
    .how-item-content p {
      color: var(--c-text-secondary);
      font-size: 15px;
      line-height: 1.65;
    }

    /* ══════════════════════════════════
       RESULTS
    ══════════════════════════════════ */
    .results-section {
      background: var(--c-bg-light);
    }
    .results-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
    }
    .result-item {
      text-align: center;
      padding: 32px 16px;
    }
    .result-icon {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 24px;
      border: none;
    }
    .result-item h4 {
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }
    .result-item p {
      font-size: 14px;
      color: var(--c-text-secondary);
      line-height: 1.5;
    }

    /* ══════════════════════════════════
       CASES
    ══════════════════════════════════ */
    .cases-section {
      background: var(--c-bg);
    }
    .cases-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .case-card {
      background: var(--c-bg);
      border: 1px solid var(--c-border);
      border-radius: var(--radius);
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: all 0.3s ease;
      text-decoration: none;
      color: inherit;
      position: relative;
      overflow: hidden;
    }
    .case-card:hover {
      border-color: var(--c-accent);
      box-shadow: 0 8px 32px rgba(67, 97, 238, 0.08);
      transform: translateY(-4px);
    }
    .case-card-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--c-purple);
      background: rgba(124, 58, 237, 0.06);
      padding: 4px 10px;
      border-radius: 4px;
      align-self: flex-start;
    }
    .case-card-logo {
      height: 32px;
      width: auto;
      max-width: 140px;
      object-fit: contain;
      opacity: 0.85;
    }
    .case-card:hover .case-card-logo {
      opacity: 1;
    }
    .case-card-brand {
      font-size: 14px;
      font-weight: 600;
      color: var(--c-text-secondary);
    }
    .case-card-metric {
      font-size: 36px;
      font-weight: 900;
      letter-spacing: -0.03em;
      color: var(--c-text);
      line-height: 1.1;
    }
    .case-card-metric-label {
      font-size: 15px;
      font-weight: 600;
      color: var(--c-text-secondary);
      margin-top: -8px;
    }
    .case-card-desc {
      font-size: 14px;
      color: var(--c-text-secondary);
      line-height: 1.6;
      flex-grow: 1;
    }
    .case-card-cta {
      font-size: 14px;
      font-weight: 700;
      color: var(--c-accent);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
    }
    .case-card:hover .case-card-cta {
      gap: 10px;
    }
    .cases-footer {
      text-align: center;
      margin-top: 48px;
    }
    .cases-footer a {
      font-size: 15px;
      font-weight: 700;
      color: var(--c-accent);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.3s;
    }
    .cases-footer a:hover {
      gap: 12px;
    }

    /* ── Testimonials ── */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: var(--c-bg);
      border: 1px solid var(--c-border);
      border-radius: var(--radius);
      padding: 36px 32px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: all 0.3s ease;
      position: relative;
    }
    .testimonial-card:hover {
      border-color: var(--c-accent);
      box-shadow: 0 8px 32px rgba(67, 97, 238, 0.08);
      transform: translateY(-4px);
    }
    .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: 20px;
      right: 28px;
      font-size: 64px;
      font-weight: 900;
      line-height: 1;
      color: var(--c-border-light);
      font-family: Georgia, serif;
    }
    .testimonial-quote {
      font-size: 15px;
      color: var(--c-text-secondary);
      line-height: 1.7;
      position: relative;
    }
    .testimonial-quote strong {
      color: var(--c-text);
      font-weight: 700;
    }
    .testimonial-metric {
      font-size: 28px;
      font-weight: 900;
      color: var(--c-accent);
      letter-spacing: -0.03em;
      line-height: 1.1;
    }
    .testimonial-metric-label {
      font-size: 13px;
      color: var(--c-text-muted);
      margin-top: -12px;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid var(--c-border-light);
      margin-top: auto;
    }
    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      flex-shrink: 0;
      overflow: hidden;
    }
    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .testimonial-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--c-text);
    }
    .testimonial-role {
      font-size: 12px;
      color: var(--c-accent);
      font-weight: 600;
    }
    .testimonial-company {
      font-size: 12px;
      color: var(--c-text-muted);
    }

    @media (max-width: 1024px) {
      .testimonials-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .testimonials-grid { grid-template-columns: 1fr; }
    }



    /* ══════════════════════════════════
       CTA FINAL
    ══════════════════════════════════ */
    .cta-section {
      padding: 100px 0;
      text-align: center;
      position: relative;
      background: #F0F2FF;
    }
    .cta-section .section-title {
      max-width: 700px;
      margin: 0 auto 16px;
      color: var(--c-text);
    }
    .cta-section .section-desc {
      max-width: 520px;
      margin: 0 auto 40px;
      text-align: center;
      color: var(--c-text-secondary);
    }

    /* ══════════════════════════════════
       FOOTER
    ══════════════════════════════════ */
    footer {
      background: #1F2937;
      color: #9CA3AF;
      padding: 56px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand p {
      font-size: 14px;
      color: #9CA3AF;
      line-height: 1.6;
      margin-top: 16px;
    }
    .footer-support {
      margin-top: 24px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 20px;
      display: inline-block;
    }
    .footer-support-title {
      font-size: 15px;
      font-weight: 700;
      color: #F9FAFB;
      margin-bottom: 4px;
    }
    .footer-support-sub {
      font-size: 13px;
      color: #9CA3AF;
      margin-bottom: 14px;
    }
    .footer-support-btns {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .footer-support-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      color: white;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .footer-support-btn:hover { opacity: 0.9; }
    .footer-support-btn.wa { background: #25D366; }
    .footer-support-btn.tg { background: #2AABEE; }
    .footer-support-email {
      font-size: 13px;
      color: #9CA3AF;
      margin-top: 12px;
    }
    .footer-support-email a {
      color: #60A5FA;
      text-decoration: none;
    }
    .footer-col-title {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #F9FAFB;
      margin-bottom: 16px;
    }
    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-col li { margin-bottom: 10px; }
    .footer-col a {
      font-size: 14px;
      color: #9CA3AF;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: #F9FAFB; }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.1);
      gap: 24px;
    }
    .footer-socials {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .footer-socials span {
      font-size: 13px;
      color: #9CA3AF;
      margin-right: 4px;
    }
    .footer-social-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s, background 0.2s;
    }
    .footer-social-icon:hover { background: rgba(255,255,255,0.2); }
    .footer-social-icon:hover { transform: scale(1.1); }
    .footer-social-icon svg { width: 18px; height: 18px; }
    .footer-legal {
      font-size: 12px;
      color: #6B7280;
      line-height: 1.6;
      text-align: right;
      max-width: 400px;
    }

    /* ══════════════════════════════════
       TELEGRAM FLOATING BUTTON
    ══════════════════════════════════ */
    .tg-float {
      position: fixed;
      bottom: 100px;
      right: 32px;
      display: flex;
      align-items: center;
      gap: 0;
      background: #2AABEE;
      border-radius: 28px;
      padding: 0;
      z-index: 99;
      text-decoration: none;
      color: #FFFFFF;
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 4px 16px rgba(42, 171, 238, 0.4);
    }
    .tg-float-icon {
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .tg-float-label {
      font-family: var(--font);
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
      max-width: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-width 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, padding 0.35s ease;
      padding-right: 0;
    }
    .tg-float:hover {
      box-shadow: 0 6px 24px rgba(42, 171, 238, 0.5);
      transform: scale(1.05);
    }
    .tg-float:hover .tg-float-label {
      max-width: 120px;
      opacity: 1;
      padding-right: 20px;
    }

    /* ══════════════════════════════════
       CHAT FLOATING BUTTON
    ══════════════════════════════════ */
    .chat-float {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 99;
    }
    .chat-float-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: none;
      background: var(--c-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(67, 97, 238, 0.4);
      transition: all 0.3s;
    }
    .chat-float-btn:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 28px rgba(67, 97, 238, 0.5);
    }
    .chat-float.open .chat-float-btn {
      background: var(--c-text);
    }
    .chat-float-icon-close {
      display: none;
    }
    .chat-float.open .chat-float-icon-chat {
      display: none;
    }
    .chat-float.open .chat-float-icon-close {
      display: block;
    }
    .chat-float-menu {
      position: absolute;
      bottom: 68px;
      right: 0;
      background: var(--c-bg);
      border: 1px solid var(--c-border-light);
      border-radius: 16px;
      padding: 8px;
      box-shadow: 0 12px 40px rgba(17, 24, 39, 0.15);
      min-width: 180px;
      animation: chatMenuIn 0.2s ease;
    }
    .chat-float-menu[hidden] { display: none; }
    @keyframes chatMenuIn {
      0% { opacity: 0; transform: translateY(8px) scale(0.95); }
      100% { opacity: 1; transform: translateY(0) scale(1); }
    }
    .chat-float-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 10px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      color: var(--c-text);
      transition: background 0.15s;
    }
    .chat-float-item:hover {
      background: var(--c-bg-light);
    }
    .chat-float-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .chat-float-icon--wa { background: rgba(37, 211, 102, 0.1); }
    .chat-float-icon--tg { background: rgba(42, 171, 238, 0.1); }
    .chat-float-icon--max { background: rgba(123, 92, 255, 0.1); }

    /* ══════════════════════════════════
       ANIMATED NUMBER
    ══════════════════════════════════ */
    .animate-number {
      display: inline-block;
    }

    /* ══════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════ */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 40px; align-items: stretch; }
      /* DOM order: content first (H1 + sub + CTA + stats), visual second.
         Previously .hero-visual had order:-1 which put AI-mock above heading —
         hurts mobile UX: user saw demo before understanding what Bewise is. */
      .hero-content { order: 0; }
      .hero-visual { order: 1; }
      .pain-grid { grid-template-columns: repeat(2, 1fr); }
      .results-grid { grid-template-columns: repeat(3, 1fr); }
      .hero-stats { gap: 32px; }
      /* hero-bottom-bar removed */
    }

    @media (max-width: 768px) {
      .container { padding: 0 24px; }
      section { padding: 80px 0; }
      .hero { padding: 120px 0 60px; min-height: auto; }
      .nav-links { display: none; }
      /* Mobile nav: compact header — hide "Вход" link, shrink CTA button,
         reduce logo size. Goal: logo + CTA must fit on 320px iPhone SE without overlap. */
      .logo-img { height: 30px; }
      .nav-login { display: none; }
      .nav-cta {
        padding: 8px 14px;
        font-size: 13px;
        letter-spacing: -0.01em;
      }
      .nav-right { gap: 8px; }
      /* Was: flex-wrap: wrap (dead code — эти блоки display:grid, не flex).
         На мобилке делаем одну колонку, чтобы карточки не вылезали за контейнер. */
      .pain-grid,
      .try-grid,
      .features-grid,
      .objections-grid { grid-template-columns: 1fr; }
      .role-tabs { flex-wrap: wrap; }
      .pain-card { padding: 28px 24px; }
      .role-tab { flex: 1 1 45%; font-size: 13px; padding: 14px 10px; }
      .role-hero { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 32px; }
      .role-hero-title { font-size: 28px; }
      .role-hero-visual { order: -1; }
      .role-visual { max-width: 300px; }
      .role-cards { grid-template-columns: 1fr; }
      .results-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-stats { flex-direction: column; gap: 20px; }
      .hero-cta-group { flex-direction: column; align-items: flex-start; }
      .how-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }
      .how-tab { white-space: nowrap; padding: 12px 20px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
      .footer-legal { text-align: center; max-width: 100%; }
    }

    @media (max-width: 480px) {
      .results-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    }

    /* ══════════════════════════════════
       TRY STEPS — 3-column onboarding
    ══════════════════════════════════ */
    .try-steps {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 0;
      max-width: 900px;
      margin: 0 auto;
    }
    .try-step {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 20px;
    }
    .try-step-icon {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    }
    .try-step-text {
      font-size: 16px;
      color: var(--c-text);
      line-height: 1.55;
      max-width: 240px;
    }
    .try-step-text strong {
      font-weight: 800;
    }
    .try-step-arrow {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      padding-top: 28px;
    }

    @media (max-width: 768px) {
      .try-steps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
      }
      .try-step-arrow {
        transform: rotate(90deg);
        padding-top: 0;
      }
    }

    /* ════════════════════════════════════════════════════════════════
       PRICING PAGE
       All styles below are scoped to /pricing/ and are safe to remove
       as a single block if the page is ever retired.
    ════════════════════════════════════════════════════════════════ */

    /* ── Pricing Hero ── */
    .pricing-hero {
      padding: 160px 0 56px;
      text-align: center;
      background: linear-gradient(180deg, #F8F9FB 0%, #FFFFFF 100%);
    }
    .pricing-hero-inner {
      max-width: 820px;
      margin: 0 auto;
    }
    .pricing-hero .section-label {
      display: inline-block;
    }
    .pricing-hero-title {
      font-size: clamp(28px, 3.2vw, 44px);
      font-weight: 900;
      line-height: 1.15;
      letter-spacing: -0.025em;
      margin: 12px 0 20px;
      color: var(--c-text);
    }
    .pricing-hero-title .accent {
      background: linear-gradient(135deg, var(--c-accent), var(--c-purple), var(--c-magenta));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .pricing-hero-sub {
      font-size: 18px;
      line-height: 1.6;
      color: var(--c-text-secondary);
      max-width: 680px;
      margin: 0 auto 40px;
    }

    /* ── Period toggle ── */
    .period-toggle {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 6px;
      background: var(--c-bg);
      border: 1px solid var(--c-border);
      border-radius: 60px;
      box-shadow: 0 4px 20px rgba(17, 24, 39, 0.06);
    }
    .period-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      background: transparent;
      border: none;
      border-radius: 60px;
      font-family: var(--font);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.02em;
      color: var(--c-text-secondary);
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
    }
    .period-btn:hover {
      color: var(--c-text);
    }
    .period-btn.active {
      background: var(--c-accent);
      color: #FFFFFF;
      box-shadow: 0 6px 20px rgba(67, 97, 238, 0.3);
    }
    .period-badge {
      font-size: 10px;
      font-weight: 800;
      padding: 3px 8px;
      border-radius: 12px;
      background: rgba(34, 197, 94, 0.12);
      color: #16A34A;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .period-btn.active .period-badge {
      background: rgba(255, 255, 255, 0.22);
      color: #FFFFFF;
    }
    .period-badge--best {
      background: rgba(217, 70, 239, 0.14);
      color: var(--c-magenta);
    }
    .period-btn.active .period-badge--best {
      background: rgba(255, 255, 255, 0.22);
      color: #FFFFFF;
    }

    /* ── Pricing cards section ── */
    .pricing-cards-section {
      padding: 56px 0 80px;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .plan-card {
      position: relative;
      display: flex;
      flex-direction: column;
      background: var(--c-bg);
      border: 1px solid var(--c-border);
      border-radius: 20px;
      padding: 32px 26px;
      transition: all 0.3s ease;
    }
    .plan-card:hover {
      transform: translateY(-4px);
      border-color: var(--c-border);
      box-shadow: 0 20px 48px rgba(17, 24, 39, 0.08);
    }
    .plan-card--highlight {
      border: 2px solid var(--c-accent);
      background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FF 100%);
      box-shadow: 0 20px 48px rgba(67, 97, 238, 0.18);
      transform: translateY(-8px);
    }
    .plan-card--highlight:hover {
      transform: translateY(-12px);
      box-shadow: 0 28px 60px rgba(67, 97, 238, 0.22);
    }
    .plan-card-ribbon {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--c-accent), var(--c-purple));
      color: #FFFFFF;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 7px 18px;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(67, 97, 238, 0.35);
      white-space: nowrap;
    }
    .plan-card-head {
      margin-bottom: 20px;
    }
    .plan-card-name {
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--c-purple);
      margin-bottom: 8px;
    }
    .plan-card-for {
      font-size: 14px;
      color: var(--c-text-secondary);
      line-height: 1.45;
      min-height: 40px;
    }
    .plan-card-price {
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--c-border-light);
    }
    .plan-card-price-main {
      display: flex;
      align-items: baseline;
      gap: 6px;
      flex-wrap: wrap;
    }
    .plan-card-price-value {
      font-size: 32px;
      font-weight: 900;
      color: var(--c-text);
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .plan-card-price-currency {
      font-size: 15px;
      color: var(--c-text-secondary);
      font-weight: 600;
    }
    .plan-card-price-period {
      font-size: 12px;
      color: var(--c-text-muted);
      margin-top: 6px;
    }
    /* plan-card-bonus and plan-card-balance removed — cards simplified */
    .plan-card-perdeal {
      font-size: 13px;
      font-weight: 700;
      color: var(--c-accent);
      margin-bottom: 16px;
    }
    .plan-card-features {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }
    .plan-card-features li {
      position: relative;
      padding-left: 26px;
      font-size: 14px;
      color: var(--c-text-secondary);
      line-height: 1.5;
    }
    .plan-card-features li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 4px;
      width: 18px;
      height: 18px;
      background: rgba(34, 197, 94, 0.12);
      border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 10l3 3 7-7' stroke='%2316A34A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
    }
    .plan-card-cta {
      width: 100%;
      min-height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      white-space: nowrap;
      padding: 14px 16px;
      font-size: 12px;
      letter-spacing: 0.03em;
      margin-top: auto;
    }
    .plan-card-footnote {
      font-size: 12px;
      color: var(--c-text-muted);
      text-align: center;
      margin-top: 12px;
      line-height: 1.5;
    }

    .plan-card-yearly-ribbon {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #16A34A, #059669);
      color: #FFFFFF;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 7px 18px;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
      white-space: nowrap;
      z-index: 2;
      animation: ribbonPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .plan-card-yearly-ribbon[hidden] { display: none; }
    .plan-card-ribbon--green {
      background: linear-gradient(135deg, #16A34A, #059669) !important;
      box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35) !important;
    }
    @keyframes ribbonPop {
      0% { opacity: 0; transform: translateX(-50%) translateY(6px) scale(0.9); }
      100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
    }

    .pricing-cards-footnote {
      text-align: center;
      font-size: 14px;
      color: var(--c-text-secondary);
      font-weight: 500;
      margin-top: 32px;
      line-height: 1.6;
      background: var(--c-bg-light);
      border: 1px solid var(--c-border-light);
      border-radius: 12px;
      padding: 16px 24px;
    }
    .pricing-cards-footnote a {
      color: var(--c-accent);
      font-weight: 600;
      font-style: normal;
      text-decoration: none;
    }
    .pricing-cards-footnote a:hover {
      text-decoration: underline;
    }

    /* ── Kontur wide card ── */
    .plan-kontur {
      margin-top: 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 56px;
      align-items: center;
      background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
      border-radius: 24px;
      padding: 48px 56px;
      color: #F9FAFB;
      position: relative;
      overflow: hidden;
    }
    /* Gradient top border workaround for border-radius */
    .plan-kontur::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--c-accent), var(--c-purple), var(--c-magenta));
      border-radius: 24px 24px 0 0;
    }
    .plan-kontur::before {
      content: '';
      position: absolute;
      top: -60%;
      right: -20%;
      width: 60%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(67, 97, 238, 0.18), transparent 60%);
      pointer-events: none;
    }
    .plan-kontur-left {
      position: relative;
      z-index: 1;
    }
    .plan-kontur-title {
      font-size: clamp(26px, 3vw, 36px);
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.15;
      color: #FFFFFF;
      margin-bottom: 14px;
    }
    .plan-kontur-desc {
      font-size: 15px;
      color: #D1D5DB;
      line-height: 1.65;
      max-width: 460px;
      margin-bottom: 24px;
    }
    .plan-kontur-price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 24px;
    }
    .plan-kontur-price-value {
      font-size: 28px;
      font-weight: 900;
      color: #FFFFFF;
      letter-spacing: -0.02em;
    }
    .plan-kontur-price-hint {
      font-size: 13px;
      color: #9CA3AF;
    }
    .plan-kontur-cta {
      background: #FFFFFF;
      color: #111827;
      white-space: nowrap;
    }
    .plan-kontur-cta:hover {
      background: #F3F4F6;
      box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
    }
    .plan-kontur-features {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
      position: relative;
      z-index: 1;
    }
    .plan-kontur-features li {
      position: relative;
      padding-left: 28px;
      font-size: 15px;
      color: #E5E7EB;
      line-height: 1.55;
    }
    .plan-kontur-features li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 3px;
      width: 20px;
      height: 20px;
      background: rgba(217, 70, 239, 0.2);
      border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 10l3 3 7-7' stroke='%23D946EF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
    }

    /* ── Trust section (stats + logo ticker reuse) ── */
    .pricing-trust-section {
      padding: 96px 0 48px;
      background: var(--c-bg-light);
    }
    .pricing-trust-section .section-title {
      margin-bottom: 16px;
    }
    .pricing-trust-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 900px;
      margin: 48px auto 0;
    }
    .pricing-trust-stat {
      text-align: center;
      padding: 28px 20px;
      background: var(--c-bg);
      border: 1px solid var(--c-border-light);
      border-radius: 16px;
    }
    .pricing-trust-stat-value {
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 900;
      color: var(--c-accent);
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 8px;
    }
    .pricing-trust-stat-label {
      font-size: 13px;
      color: var(--c-text-secondary);
      line-height: 1.5;
    }
    .pricing-trust-section .logos-track {
      padding-top: 48px;
      animation: tickerScroll 30s linear infinite;
    }

    /* ── Tokens explainer ── */
    .pricing-tokens-section {
      padding: 64px 0;
    }
    .tokens-logic {
      max-width: 780px;
      margin: 0 auto 40px;
      font-size: 16px;
      line-height: 1.7;
      color: var(--c-text-secondary);
      text-align: center;
    }
    .tokens-logic strong {
      color: var(--c-text);
    }
    .tokens-example {
      max-width: 900px;
      margin: 0 auto;
      background: var(--c-bg);
      border: 1px solid var(--c-border-light);
      border-radius: 20px;
      padding: 40px 44px;
      box-shadow: 0 8px 32px rgba(17, 24, 39, 0.04);
    }
    .tokens-example-header {
      text-align: center;
      margin-bottom: 28px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--c-border-light);
    }
    .tokens-example-title {
      font-size: 18px;
      font-weight: 800;
      color: var(--c-text);
      margin-bottom: 6px;
    }
    .tokens-example-sub {
      font-size: 14px;
      color: var(--c-text-muted);
    }
    .tokens-table {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .tokens-table-row {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 16px;
      padding: 14px 16px;
      border-radius: 10px;
      font-size: 15px;
      color: var(--c-text-secondary);
      align-items: center;
    }
    .tokens-table-head {
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--c-text-muted);
      padding: 8px 16px;
    }
    .tokens-table-row--highlight {
      background: linear-gradient(135deg, rgba(67, 97, 238, 0.06), rgba(124, 58, 237, 0.06));
      border: 1px solid rgba(67, 97, 238, 0.15);
    }
    .tokens-example-conclusion {
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid var(--c-border-light);
      font-size: 15px;
      line-height: 1.65;
      color: var(--c-text-secondary);
    }
    .tokens-example-conclusion strong {
      color: var(--c-accent);
    }
    .tokens-example-disclaimer {
      margin-top: 16px;
      padding: 14px 18px;
      background: #FFFBEB;
      border-left: 3px solid #F59E0B;
      border-radius: 8px;
      font-size: 13px;
      line-height: 1.6;
      color: #78350F;
    }
    .tokens-example-disclaimer strong {
      color: #78350F;
    }
    .tokens-example-disclaimer a {
      color: var(--c-accent);
      font-weight: 700;
      text-decoration: none;
    }
    .tokens-example-disclaimer a:hover { text-decoration: underline; }

    /* ── Key mechanic ── */
    .pricing-mechanic-section {
      padding: 120px 0;
      background: var(--c-bg-light);
    }
    .mechanic-row {
      display: flex;
      align-items: stretch;
      justify-content: center;
      gap: 16px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }
    .mechanic-card {
      flex: 1;
      min-width: 220px;
      max-width: 280px;
      padding: 32px 24px;
      background: var(--c-bg);
      border: 1px solid var(--c-border-light);
      border-radius: 16px;
      text-align: center;
    }
    .mechanic-card--highlight {
      border-color: var(--c-accent);
      background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FF 100%);
      box-shadow: 0 16px 40px rgba(67, 97, 238, 0.14);
    }
    .mechanic-card-plan {
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--c-text-muted);
      margin-bottom: 12px;
    }
    .mechanic-card--highlight .mechanic-card-plan {
      color: var(--c-accent);
    }
    .mechanic-card-value {
      font-size: 22px;
      font-weight: 900;
      color: var(--c-text);
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 6px;
    }
    .mechanic-card--highlight .mechanic-card-value {
      background: linear-gradient(135deg, var(--c-accent), var(--c-purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .mechanic-card-sub {
      font-size: 13px;
      color: var(--c-text-muted);
    }
    .mechanic-arrow {
      display: flex;
      align-items: center;
      font-size: 28px;
      color: var(--c-text-muted);
      font-weight: 300;
    }
    .mechanic-explain {
      max-width: 720px;
      margin: 0 auto 12px;
      font-size: 16px;
      line-height: 1.65;
      color: var(--c-text-secondary);
      text-align: center;
    }
    .mechanic-explain strong {
      color: var(--c-accent);
    }
    .mechanic-disclaimer {
      max-width: 720px;
      margin: 0 auto;
      font-size: 13px;
      color: var(--c-text-muted);
      text-align: center;
      font-style: italic;
    }

    /* ── Calculator ── */
    .pricing-calc-section {
      padding: 120px 0;
    }
    .calc-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      max-width: 1100px;
      margin: 0 auto;
      align-items: start;
    }
    .calc-inputs {
      background: var(--c-bg);
      border: 1px solid var(--c-border-light);
      border-radius: 20px;
      padding: 36px 40px;
      box-shadow: 0 8px 32px rgba(17, 24, 39, 0.04);
    }
    .calc-field {
      margin-bottom: 28px;
    }
    .calc-field:last-child {
      margin-bottom: 0;
    }
    .calc-label {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--c-text);
      margin-bottom: 12px;
    }
    /* slider styles removed — replaced by clickable 3-position buttons */
    .calc-field-hint {
      font-size: 12px;
      color: var(--c-text-muted);
      margin-top: 8px;
    }
    .calc-number-input {
      width: 100%;
      padding: 14px 16px;
      font-family: var(--font);
      font-size: 22px;
      font-weight: 800;
      color: var(--c-accent);
      background: var(--c-bg);
      border: 2px solid var(--c-border);
      border-radius: 12px;
      outline: none;
      text-align: center;
      letter-spacing: -0.02em;
      transition: border-color 0.2s, box-shadow 0.2s;
      -moz-appearance: textfield;
    }
    .calc-number-input::-webkit-inner-spin-button,
    .calc-number-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
    .calc-number-input:focus {
      border-color: var(--c-accent);
      box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.12);
    }
    .calc-3pos {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }
    .calc-3pos-option {
      font-family: var(--font);
      text-align: center;
      padding: 12px 8px;
      border-radius: 10px;
      border: 1px solid var(--c-border-light);
      background: var(--c-bg);
      cursor: pointer;
      transition: all 0.2s;
    }
    .calc-3pos-option:hover {
      border-color: var(--c-accent);
    }
    .calc-3pos-option.active {
      background: rgba(67, 97, 238, 0.06);
      border-color: var(--c-accent);
      box-shadow: 0 0 0 1px var(--c-accent);
    }
    .calc-3pos-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--c-text);
      margin-bottom: 4px;
    }
    .calc-3pos-option.active .calc-3pos-title {
      color: var(--c-accent);
    }
    .calc-3pos-detail {
      font-size: 12px;
      font-weight: 600;
      color: var(--c-text-secondary);
      margin-bottom: 4px;
    }
    .calc-3pos-desc {
      font-size: 11px;
      color: var(--c-text-muted);
      line-height: 1.4;
    }
    .calc-footnote {
      font-size: 12px;
      color: var(--c-text-muted);
      font-style: italic;
      line-height: 1.5;
      margin-top: 8px;
    }
    /* checkbox styles removed — replaced by 3-position sliders */
    .calc-presets {
      margin-bottom: 32px;
    }
    .calc-presets-label {
      font-size: 15px;
      font-weight: 700;
      color: var(--c-text);
      margin-bottom: 14px;
    }
    .calc-presets-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .calc-preset-card {
      font-family: var(--font);
      text-align: left;
      padding: 16px;
      background: var(--c-bg-light);
      border: 1px solid var(--c-border-light);
      border-radius: 14px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .calc-preset-card:hover {
      border-color: var(--c-accent);
    }
    .calc-preset-card--active {
      border-color: var(--c-accent);
      background: rgba(67, 97, 238, 0.06);
      box-shadow: 0 0 0 1px var(--c-accent);
    }
    .calc-preset-card-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--c-text);
      margin-bottom: 4px;
    }
    .calc-preset-card--active .calc-preset-card-name {
      color: var(--c-accent);
    }
    .calc-preset-card-desc {
      font-size: 12px;
      color: var(--c-text-secondary);
      line-height: 1.4;
      margin-bottom: 10px;
    }
    .calc-preset-card-params {
      display: flex;
      flex-wrap: wrap;
      gap: 4px 12px;
    }
    .calc-preset-card-params span {
      font-size: 11px;
      color: var(--c-text-muted);
      white-space: nowrap;
    }
    .calc-result {
      background: linear-gradient(180deg, #F5F7FF 0%, #FFFFFF 100%);
      border: 2px solid var(--c-accent);
      border-radius: 20px;
      padding: 32px 32px 36px;
      box-shadow: 0 16px 48px rgba(67, 97, 238, 0.15);
      position: sticky;
      top: 100px;
    }
    .calc-trigger {
      margin-bottom: 4px;
    }
    .calc-trigger-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--c-text);
      margin-bottom: 14px;
      line-height: 1.4;
    }
    .calc-trigger-list {
      list-style: none;
      padding: 0;
      margin: 0 0 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .calc-trigger-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 13px;
      color: var(--c-text-secondary);
      line-height: 1.5;
    }
    .calc-trigger-list li strong {
      color: var(--c-text);
    }
    .calc-trigger-icon {
      flex-shrink: 0;
      font-size: 15px;
      line-height: 1.3;
    }
    .calc-trigger-bottom {
      font-size: 13px;
      color: #16A34A;
      font-weight: 600;
      padding: 10px 14px;
      background: rgba(34, 197, 94, 0.08);
      border-radius: 8px;
    }
    .calc-trigger-bottom strong {
      color: #16A34A;
    }
    .calc-result-block {
      margin-bottom: 20px;
    }
    .calc-result-label {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--c-text-muted);
      margin-bottom: 6px;
    }
    .calc-result-value {
      font-size: 28px;
      font-weight: 900;
      color: var(--c-text);
      letter-spacing: -0.03em;
      line-height: 1.1;
    }
    .calc-result-hint {
      font-size: 13px;
      font-weight: 600;
      color: #16A34A;
      margin-top: 4px;
    }
    .calc-result-divider {
      height: 1px;
      background: var(--c-border);
      margin: 28px 0;
    }
    .calc-recommend-label {
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--c-purple);
      margin-bottom: 8px;
    }
    .calc-recommend-plan {
      font-size: 22px;
      font-weight: 900;
      color: var(--c-text);
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }
    .calc-recommend-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 10px;
    }
    .calc-recommend-price span:first-child {
      font-size: 26px;
      font-weight: 900;
      color: var(--c-accent);
      letter-spacing: -0.02em;
    }
    .calc-recommend-period {
      font-size: 14px;
      color: var(--c-text-muted);
      font-weight: 600;
    }
    /* calc-recommend-balance removed */
    .calc-recommend-yearprice {
      font-size: 13px;
      font-weight: 600;
      color: #16A34A;
      margin-top: 6px;
    }
    .calc-result-disclaimer {
      font-size: 13px;
      color: var(--c-text-secondary);
      line-height: 1.55;
      margin-bottom: 20px;
      padding: 12px 14px;
      background: var(--c-bg-light);
      border-radius: 10px;
      border-left: 3px solid var(--c-accent);
    }
    .calc-result--enterprise {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      justify-content: center;
      min-height: 280px;
    }
    .calc-result--enterprise[hidden] { display: none; }
    .calc-enterprise-title {
      font-size: 20px;
      font-weight: 800;
      color: var(--c-text);
      letter-spacing: -0.02em;
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .calc-enterprise-desc {
      font-size: 14px;
      color: var(--c-text-secondary);
      margin-bottom: 24px;
    }
    .calc-recommend-cta {
      width: 100%;
      justify-content: center;
    }

    /* ── Compare accordion ── */
    .pricing-compare-section {
      padding: 80px 0;
      background: var(--c-bg-light);
    }
    .compare-accordion {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .compare-group {
      background: var(--c-bg);
      border: 1px solid var(--c-border-light);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .compare-group[open] {
      border-color: var(--c-accent);
      box-shadow: 0 8px 24px rgba(67, 97, 238, 0.08);
    }
    .compare-group[open] .compare-group-title {
      color: var(--c-accent);
    }
    .compare-group-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      cursor: pointer;
      list-style: none;
      transition: background 0.2s;
    }
    .compare-group-header::-webkit-details-marker { display: none; }
    .compare-group-header:hover {
      background: transparent;
    }
    .compare-group-left {
      flex: 1;
    }
    .compare-group-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--c-text);
      margin-bottom: 2px;
    }
    .compare-group-sub {
      font-size: 13px;
      color: var(--c-text-muted);
    }
    .compare-group-badge {
      flex-shrink: 0;
      font-size: 11px;
      font-weight: 700;
      color: #16A34A;
      background: rgba(34, 197, 94, 0.08);
      padding: 6px 14px;
      border-radius: 20px;
      white-space: nowrap;
    }
    .compare-group-list {
      list-style: none;
      padding: 0 24px 20px;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .compare-group-list li {
      position: relative;
      padding-left: 24px;
      font-size: 14px;
      color: var(--c-text-secondary);
      line-height: 1.5;
    }
    .compare-group-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #16A34A;
      font-weight: 800;
      font-size: 14px;
    }
    /* Diff group */
    .compare-group--diff {
      border-color: var(--c-accent);
      border-width: 2px;
    }
    .compare-group--diff .compare-group-title {
      color: var(--c-accent);
    }
    .compare-diff-table {
      padding: 0 24px 20px;
    }
    .compare-diff-head,
    .compare-diff-row {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
      gap: 8px;
      padding: 10px 0;
      align-items: center;
    }
    .compare-diff-head {
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--c-text-muted);
      padding-bottom: 12px;
      border-bottom: 1px solid var(--c-border-light);
    }
    .compare-diff-head div:not(:first-child) {
      text-align: center;
    }
    .compare-diff-row {
      font-size: 14px;
      color: var(--c-text-secondary);
      border-bottom: 1px solid var(--c-border-light);
    }
    .compare-diff-row:last-child {
      border-bottom: none;
    }
    .compare-diff-row div:first-child {
      font-weight: 500;
      color: var(--c-text);
    }
    .compare-diff-row div:not(:first-child) {
      text-align: center;
    }
    .compare-diff-row .c-ok {
      color: #16A34A !important;
      font-weight: 800;
      font-size: 16px;
    }
    .compare-diff-row .c-no {
      color: var(--c-text-muted) !important;
      font-weight: 600;
    }
    .compare-diff-row .c-text {
      font-size: 12px !important;
      font-weight: 600;
      color: var(--c-text-secondary) !important;
    }

    /* ── Token packs ── */
    .pricing-packs-section {
      padding: 120px 0;
    }
    .packs-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .packs-grid--3 {
      grid-template-columns: repeat(3, 1fr);
    }
    .pack-card {
      background: var(--c-bg);
      border: 1px solid var(--c-border);
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .pack-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
    }
    .pack-card--highlight {
      border: 2px solid var(--c-accent);
      background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FF 100%);
      box-shadow: 0 16px 40px rgba(67, 97, 238, 0.15);
    }
    .pack-card-name {
      font-size: 32px;
      font-weight: 900;
      color: var(--c-accent);
      letter-spacing: -0.03em;
      margin-bottom: 8px;
    }
    .pack-card-price {
      font-size: 22px;
      font-weight: 900;
      color: var(--c-text);
      letter-spacing: -0.02em;
      margin-bottom: 6px;
    }
    .pack-card-bonus {
      display: inline-block;
      font-size: 11px;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 12px;
      background: rgba(34, 197, 94, 0.12);
      color: #16A34A;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .pack-card-balance {
      font-size: 14px;
      color: var(--c-text-secondary);
      margin-bottom: 4px;
    }
    .pack-card-balance strong {
      color: var(--c-text);
    }
    .pack-card-hint {
      font-size: 12px;
      color: var(--c-text-muted);
      margin-bottom: 24px;
    }
    .pack-card-cta {
      width: 100%;
      justify-content: center;
      margin-top: auto;
    }
    .packs-footnote {
      text-align: center;
      font-size: 14px;
      color: var(--c-text-secondary);
      margin-top: 32px;
    }
    .packs-footnote a {
      color: var(--c-accent);
      font-weight: 700;
      text-decoration: none;
    }
    .packs-footnote a:hover {
      text-decoration: underline;
    }

    /* ── FAQ ── */
    .pricing-faq-section {
      padding: 120px 0;
      background: var(--c-bg-light);
    }
    .faq-list {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: var(--c-bg);
      border: 1px solid var(--c-border-light);
      border-radius: 14px;
      overflow: hidden;
      transition: all 0.25s ease;
    }
    .faq-item[open] {
      border-color: var(--c-accent);
      box-shadow: 0 8px 24px rgba(67, 97, 238, 0.08);
    }
    .faq-q {
      position: relative;
      list-style: none;
      cursor: pointer;
      padding: 22px 56px 22px 26px;
      font-size: 16px;
      font-weight: 700;
      color: var(--c-text);
      transition: color 0.2s;
    }
    .faq-q::-webkit-details-marker { display: none; }
    .faq-q::after {
      content: '';
      position: absolute;
      right: 26px;
      top: 50%;
      width: 12px;
      height: 12px;
      border-right: 2px solid var(--c-text-muted);
      border-bottom: 2px solid var(--c-text-muted);
      transform: translateY(-70%) rotate(45deg);
      transition: transform 0.25s ease, border-color 0.25s;
    }
    .faq-item[open] .faq-q::after {
      transform: translateY(-30%) rotate(-135deg);
      border-color: var(--c-accent);
    }
    .faq-q:hover {
      color: var(--c-accent);
    }
    .faq-a {
      padding: 0 26px 24px;
      color: var(--c-text-secondary);
      font-size: 15px;
      line-height: 1.7;
    }
    .faq-a p + p,
    .faq-a ul + p,
    .faq-a ol + p,
    .faq-a p + ul,
    .faq-a p + ol {
      margin-top: 12px;
    }
    .faq-a ul,
    .faq-a ol {
      padding-left: 22px;
    }
    .faq-a li {
      margin-bottom: 6px;
    }
    .faq-a strong {
      color: var(--c-text);
    }
    .faq-cta-link {
      color: var(--c-accent);
      font-weight: 700;
      text-decoration: none;
    }
    .faq-cta-link:hover {
      text-decoration: underline;
    }
    .faq-table-wrap {
      overflow-x: auto;
      margin: 14px 0;
      border: 1px solid var(--c-border-light);
      border-radius: 10px;
    }
    .faq-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      min-width: 520px;
    }
    .faq-table th,
    .faq-table td {
      padding: 12px 14px;
      text-align: left;
      border-bottom: 1px solid var(--c-border-light);
    }
    .faq-table th {
      background: var(--c-bg-light);
      font-weight: 700;
      color: var(--c-text);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .faq-table tbody tr:last-child td {
      border-bottom: none;
    }

    /* ══════════════════════════════════
       PRICING — responsive
    ══════════════════════════════════ */
    @media (max-width: 1024px) {
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
      .packs-grid { grid-template-columns: repeat(2, 1fr); }
      .plan-kontur { grid-template-columns: 1fr; gap: 28px; padding: 40px; }
      .calc-layout { grid-template-columns: 1fr; }
      .calc-result { position: static; }
      .pricing-trust-stats { grid-template-columns: 1fr; max-width: 480px; }
    }

    @media (max-width: 768px) {
      .pricing-hero { padding: 140px 0 40px; }
      .pricing-hero-title { font-size: 28px; }
      .pricing-hero-sub { font-size: 15px; }
      .period-toggle {
        flex-direction: column;
        width: 100%;
        border-radius: 16px;
        padding: 8px;
      }
      .period-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
      }
      .pricing-cards-section { padding: 40px 0 80px; }
      .pricing-grid { grid-template-columns: 1fr; }
      .plan-card--highlight { transform: none; }
      .plan-card--highlight:hover { transform: translateY(-4px); }
      .plan-kontur { padding: 32px 24px; }
      .plan-kontur-title { font-size: 24px; }
      .plan-kontur-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
      .pricing-tokens-section,
      .pricing-mechanic-section,
      .pricing-calc-section,
      .pricing-compare-section,
      .pricing-packs-section,
      .pricing-faq-section { padding: 80px 0; }
      .tokens-example { padding: 28px 20px; }
      .tokens-table-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px 16px;
        font-size: 13px;
      }
      .tokens-table-head { display: none; }
      .mechanic-row { flex-direction: column; align-items: stretch; gap: 12px; }
      .mechanic-arrow { justify-content: center; transform: rotate(90deg); padding: 4px 0; }
      .mechanic-card { max-width: none; }
      .calc-inputs { padding: 28px 24px; }
      .calc-result { padding: 28px 24px 32px; }
      .calc-3pos { grid-template-columns: 1fr; gap: 4px; }
      .calc-3pos-option { text-align: left; padding: 10px 14px; }
      .calc-presets-cards { grid-template-columns: 1fr; }
      .packs-grid { grid-template-columns: 1fr; }
      .faq-q { font-size: 15px; padding: 18px 48px 18px 20px; }
      .faq-q::after { right: 20px; }
      .faq-a { padding: 0 20px 20px; font-size: 14px; }
    }

    @media (max-width: 480px) {
      .plan-card { padding: 28px 22px; }
      .pricing-trust-stat-value { font-size: 28px; }
    }

    /* ══════════════════════════════════
       PRICING TEASER (on index page)
    ══════════════════════════════════ */
    .pricing-teaser {
      padding: 40px 0 80px;
      background: var(--c-bg);
    }
    .pricing-teaser-card {
      max-width: 960px;
      margin: 0 auto;
      background: linear-gradient(135deg, #F5F7FF 0%, #FFFFFF 60%, #FAF5FF 100%);
      border: 1px solid var(--c-border-light);
      border-radius: 24px;
      padding: 56px 48px;
      text-align: center;
      box-shadow: 0 20px 60px rgba(67, 97, 238, 0.08);
      position: relative;
      overflow: hidden;
    }
    .pricing-teaser-card::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 50%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(124, 58, 237, 0.08), transparent 60%);
      pointer-events: none;
    }
    .pricing-teaser-label {
      display: inline-block;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--c-purple);
      margin-bottom: 16px;
      position: relative;
    }
    .pricing-teaser-title {
      font-size: clamp(30px, 3.6vw, 46px);
      font-weight: 900;
      line-height: 1.12;
      letter-spacing: -0.03em;
      color: var(--c-text);
      margin-bottom: 16px;
      position: relative;
    }
    .pricing-teaser-title .accent {
      background: linear-gradient(135deg, var(--c-accent), var(--c-purple), var(--c-magenta));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .pricing-teaser-desc {
      font-size: 17px;
      color: var(--c-text-secondary);
      line-height: 1.65;
      max-width: 640px;
      margin: 0 auto 40px;
      position: relative;
    }
    .pricing-teaser-points {
      display: flex;
      align-items: stretch;
      justify-content: center;
      gap: 24px;
      margin-bottom: 40px;
      flex-wrap: wrap;
      position: relative;
    }
    .pricing-teaser-point {
      flex: 0 0 auto;
      min-width: 160px;
    }
    .pricing-teaser-point-value {
      font-size: 28px;
      font-weight: 900;
      color: var(--c-accent);
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .pricing-teaser-point-label {
      font-size: 13px;
      color: var(--c-text-secondary);
      line-height: 1.5;
    }
    .pricing-teaser-divider {
      width: 1px;
      background: var(--c-border);
      align-self: stretch;
    }
    .pricing-teaser-cta {
      position: relative;
      padding: 18px 40px !important;
      font-size: 15px !important;
      border-radius: 14px !important;
    }

    @media (max-width: 768px) {
      .pricing-teaser { padding: 32px 0 60px; }
      .pricing-teaser-card { padding: 40px 28px; border-radius: 20px; }
      .pricing-teaser-points {
        flex-direction: column;
        gap: 20px;
        align-items: center;
      }
      .pricing-teaser-divider {
        width: 60px;
        height: 1px;
      }
      .pricing-teaser-point { min-width: auto; }
    }

    /* ══════════════════════════════════
       CONTACT MODAL
    ══════════════════════════════════ */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(17, 24, 39, 0.6);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      transition: opacity 0.25s ease;
    }
    .modal-overlay[hidden] { display: none; }
    .modal-overlay.visible { opacity: 1; }
    .modal {
      position: relative;
      width: 100%;
      max-width: 460px;
      max-height: calc(100vh - 48px);
      overflow-y: auto;
      background: var(--c-bg);
      border-radius: 20px;
      padding: 40px 36px 32px;
      box-shadow: 0 40px 80px rgba(17, 24, 39, 0.3);
      transform: translateY(20px) scale(0.98);
      transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .modal-overlay.visible .modal {
      transform: translateY(0) scale(1);
    }
    .modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--c-bg-light);
      border: none;
      color: var(--c-text-muted);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }
    .modal-close:hover {
      background: var(--c-border-light);
      color: var(--c-text);
    }
    .modal-head {
      text-align: center;
      margin-bottom: 24px;
    }
    .modal-title {
      font-size: 24px;
      font-weight: 900;
      color: var(--c-text);
      letter-spacing: -0.02em;
      margin-bottom: 6px;
    }
    .modal-sub {
      font-size: 14px;
      color: var(--c-text-secondary);
      line-height: 1.5;
    }
    .modal-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 24px;
    }
    .modal-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .modal-field-label {
      font-size: 12px;
      font-weight: 700;
      color: var(--c-text-secondary);
      letter-spacing: 0.02em;
    }
    .modal-field input {
      width: 100%;
      padding: 13px 16px;
      font-family: var(--font);
      font-size: 15px;
      color: var(--c-text);
      background: var(--c-bg);
      border: 1.5px solid var(--c-border);
      border-radius: 10px;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .modal-field input::placeholder {
      color: var(--c-text-muted);
    }
    .modal-field input:focus {
      border-color: var(--c-accent);
      box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.12);
    }

    /* Phone field with country selector */
    .modal-phone {
      display: flex;
      align-items: stretch;
      gap: 8px;
      position: relative;
    }
    .modal-phone-country {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0 12px;
      background: var(--c-bg);
      border: 1.5px solid var(--c-border);
      border-radius: 10px;
      cursor: pointer;
      font-family: var(--font);
      color: var(--c-text);
      transition: border-color 0.2s;
      white-space: nowrap;
    }
    .modal-phone-country:hover {
      border-color: var(--c-accent);
    }
    .modal-phone-flag {
      font-size: 18px;
      line-height: 1;
    }
    .modal-phone-code {
      font-size: 14px;
      font-weight: 700;
    }
    .modal-phone-input {
      flex: 1;
      min-width: 0;
    }
    .modal-phone-dropdown {
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      z-index: 10;
      background: var(--c-bg);
      border: 1px solid var(--c-border-light);
      border-radius: 12px;
      padding: 6px;
      box-shadow: 0 12px 32px rgba(17, 24, 39, 0.15);
      min-width: 260px;
      max-height: 340px;
      overflow-y: auto;
    }
    .modal-phone-divider-row {
      padding: 12px 12px 6px;
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--c-text-muted);
      border-top: 1px solid var(--c-border-light);
      margin-top: 4px;
    }
    .modal-phone-divider-row:first-child {
      border-top: none;
      margin-top: 0;
    }
    .modal-phone-dropdown[hidden] { display: none; }
    .modal-phone-option {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      padding: 10px 12px;
      border: none;
      background: transparent;
      border-radius: 8px;
      text-align: left;
      font-family: var(--font);
      font-size: 14px;
      color: var(--c-text);
      cursor: pointer;
      transition: background 0.15s;
    }
    .modal-phone-option:hover {
      background: var(--c-bg-light);
    }
    .modal-phone-option > span:first-child {
      font-size: 18px;
      line-height: 1;
    }
    .modal-phone-option-code {
      margin-left: auto;
      color: var(--c-text-muted);
      font-size: 13px;
      font-weight: 600;
    }
    .modal-phone-error {
      margin-top: 6px;
      font-size: 12px;
      color: #DC2626;
      font-weight: 600;
    }
    .modal-phone-error[hidden] { display: none; }
    .modal-submit {
      width: 100%;
      justify-content: center;
      margin-top: 4px;
      padding: 15px 24px !important;
      font-size: 13px !important;
    }
    .modal-form-success {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 20px;
      background: #F0FDF4;
      border: 1px solid #BBF7D0;
      border-radius: 12px;
    }
    .modal-form-success[hidden] { display: none; }
    .modal-form-success strong {
      display: block;
      font-size: 15px;
      color: #16A34A;
      margin-bottom: 2px;
    }
    .modal-form-success p {
      font-size: 13px;
      color: #166534;
    }
    .modal-divider {
      position: relative;
      text-align: center;
      margin: 24px 0 20px;
    }
    .modal-divider::before {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      height: 1px;
      background: var(--c-border-light);
    }
    .modal-divider span {
      position: relative;
      display: inline-block;
      padding: 0 16px;
      background: var(--c-bg);
      font-size: 12px;
      color: var(--c-text-muted);
      font-weight: 600;
    }
    .modal-messengers {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    .modal-messenger {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 8px;
      border-radius: 12px;
      border: 1px solid var(--c-border-light);
      background: var(--c-bg);
      text-decoration: none;
      font-size: 12px;
      font-weight: 600;
      color: var(--c-text-secondary);
      transition: border-color 0.2s, transform 0.2s;
    }
    .modal-messenger:hover {
      transform: translateY(-2px);
      border-color: var(--c-border);
    }
    .modal-messenger-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .modal-messenger-icon--wa {
      background: rgba(37, 211, 102, 0.1);
    }
    .modal-messenger-icon--tg {
      background: rgba(42, 171, 238, 0.1);
    }
    .modal-messenger-icon--max {
      background: rgba(123, 92, 255, 0.1);
    }

    @media (max-width: 480px) {
      .modal { padding: 32px 22px 24px; }
      .modal-title { font-size: 20px; }
    }
