
        .btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: var(--space-xs);
          font-family: var(--font-sans);
          font-weight: var(--font-weight-semibold);
          border-radius: var(--radius-md);
          border: none;
          cursor: pointer;
          transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
          text-decoration: none;
        }

        .btn:hover:not(:disabled) {
          transform: translateY(-2px);
        }

        .btn:active:not(:disabled) {
          transform: translateY(0);
        }

        .btn:disabled {
          opacity: 0.5;
          cursor: not-allowed;
        }

        /* Variants */
        .btn-primary {
          background: var(--gradient-primary);
          color: white;
        }

        .btn-primary:hover:not(:disabled) {
          box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
          background: var(--color-bg-tertiary);
          color: var(--color-text-primary);
        }

        .btn-secondary:hover:not(:disabled) {
          background: var(--color-bg-secondary);
          box-shadow: var(--shadow-md);
        }

        .btn-outline {
          background: transparent;
          color: var(--color-accent-primary);
          border: var(--border-width-thick) solid var(--color-accent-primary);
        }

        .btn-outline:hover:not(:disabled) {
          background: var(--color-accent-primary);
          color: white;
        }

        .btn-ghost {
          background: transparent;
          color: var(--color-text-secondary);
        }

        .btn-ghost:hover:not(:disabled) {
          background: var(--color-bg-secondary);
          color: var(--color-text-primary);
        }

        /* Sizes */
        .btn-sm {
          padding: var(--space-xs) var(--space-md);
          font-size: var(--font-size-sm);
        }

        .btn-md {
          padding: var(--space-sm) var(--space-lg);
          font-size: var(--font-size-base);
        }

        .btn-lg {
          padding: var(--space-md) var(--space-xl);
          font-size: var(--font-size-lg);
        }
      


        .glass-nav {
          margin: 20px 20px 0;
          padding: 16px 32px;
          border-radius: 16px;
          position: sticky;
          top: 20px;
          z-index: 100;
        }

        .nav-container {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 32px;
        }

        .nav-logo {
          text-decoration: none;
        }

        .logo-text {
          font-size: 24px;
          font-weight: 800;
          background: linear-gradient(135deg, #fff 0%, #8b5cf6 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .nav-links {
          display: flex;
          align-items: center;
          gap: 32px;
          flex: 1;
          justify-content: center;
        }

        .nav-link {
          color: rgba(255, 255, 255, 0.8);
          text-decoration: none;
          font-size: 15px;
          font-weight: 500;
          transition: color 0.2s;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .nav-link:hover,
        .nav-link.active {
          color: #fff;
        }

        .nav-cta {
          flex-shrink: 0;
        }

        /* Hamburger — hidden on desktop */
        .nav-hamburger {
          display: none;
          flex-direction: column;
          gap: 5px;
          padding: 8px;
          cursor: pointer;
          background: none;
          border: none;
        }

        .hamburger-line {
          display: block;
          width: 24px;
          height: 2px;
          background: rgba(255, 255, 255, 0.9);
          border-radius: 2px;
          transition: transform 0.3s, opacity 0.3s;
        }

        .hamburger-line.open:nth-child(1) {
          transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger-line.open:nth-child(2) {
          opacity: 0;
        }

        .hamburger-line.open:nth-child(3) {
          transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile dropdown — hidden on desktop */
        .nav-mobile-dropdown {
          display: none;
        }

        /* ===== MOBILE ===== */
        @media (max-width: 768px) {
          .glass-nav {
            margin: 10px 10px 0;
            padding: 12px 16px;
          }

          .nav-links {
            display: none;
          }

          .nav-cta {
            display: none;
          }

          .nav-hamburger {
            display: flex;
          }

          .nav-mobile-dropdown {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
          }

          .nav-mobile-link {
            display: block;
            padding: 10px 12px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
          }

          .nav-mobile-link:hover,
          .nav-mobile-link.active {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
          }

          .nav-mobile-cta {
            margin-top: 8px;
            text-decoration: none;
          }
        }
      


        /* Cosmic Page Layout */
        .cosmic-page {
          position: relative;
          min-height: 100vh;
          overflow-x: hidden;
        }

        .content-layer {
          position: relative;
          z-index: 10;
          padding: 0;
        }

        /* Glassmorphism Effect */
        .glass {
          background: rgba(255, 255, 255, 0.03);
          backdrop-filter: blur(20px);
          border: 1px solid rgba(255, 255, 255, 0.1);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        /* Launch Badge */
        .launch-badge {
          display: inline-flex;
          align-items: center;
          gap: 16px;
          margin-top: 24px;
          padding: 12px 28px;
          border-radius: 100px;
          background: rgba(139, 92, 246, 0.1);
          border: 1px solid rgba(139, 92, 246, 0.3);
        }

        .launch-badge-label {
          font-size: 13px;
          font-weight: 700;
          text-transform: uppercase;
          letter-spacing: 0.08em;
          color: #c4b5fd;
        }

        .launch-badge-detail {
          display: flex;
          align-items: center;
          gap: 10px;
          font-weight: 700;
        }

        .launch-badge-old {
          font-size: 16px;
          color: rgba(255, 255, 255, 0.35);
          text-decoration: line-through;
        }

        .launch-badge-old::before { content: '€'; }

        .launch-badge-new {
          font-size: 20px;
          color: #fff;
        }

        .launch-badge-new::before { content: '€'; }

        /* Agent price strikethrough */
        .agent-price-old {
          font-size: 14px;
          color: rgba(255, 255, 255, 0.35);
          text-decoration: line-through;
          margin-right: 6px;
          font-weight: 500;
        }

        /* Custom bundle agent old price */
        .custom-agent-old {
          font-size: 11px;
          color: rgba(255, 255, 255, 0.35);
          text-decoration: line-through;
          display: block;
          margin-bottom: -2px;
        }

        /* Hero */
        .pricing-hero {
          margin: 20px;
          padding: 80px 48px;
          border-radius: 24px;
          text-align: center;
        }

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

        .page-title {
          font-size: clamp(44px, 6vw, 64px);
          font-weight: 900;
          margin: 0 0 22px;
          color: #fff;
          line-height: 1.05;
          letter-spacing: -0.02em;
          text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
        }

        /* Hero block — locked design language */
        .pp-eyebrow {
          font-family: 'JetBrains Mono', 'Courier New', monospace;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 0.24em;
          text-transform: uppercase;
          color: rgba(167, 139, 250, 0.75);
          margin-bottom: 22px;
        }

        .pp-kicker {
          font-size: 32px;
          font-weight: 800;
          line-height: 1.2;
          letter-spacing: -0.02em;
          margin: 0 0 22px;
          background: linear-gradient(135deg, #a78bfa 0%, #67e8f9 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          filter: drop-shadow(0 0 32px rgba(139, 92, 246, 0.35));
        }

        .pp-sub {
          font-size: 19px;
          line-height: 1.65;
          color: rgba(255, 255, 255, 0.82);
          max-width: 720px;
          margin: 0 auto 36px;
        }

        .pp-pills {
          display: flex;
          gap: 14px;
          justify-content: center;
          flex-wrap: wrap;
          margin-bottom: 8px;
        }

        .pp-pill {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          padding: 12px 20px;
          background:
            radial-gradient(ellipse at top, rgba(139, 92, 246, 0.18), transparent 70%),
            rgba(255, 255, 255, 0.04);
          border: 1px solid rgba(167, 139, 250, 0.28);
          border-radius: 999px;
          transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), border-color 240ms, box-shadow 240ms;
          font-family: 'JetBrains Mono', 'Courier New', monospace;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 0.08em;
          text-transform: uppercase;
          color: rgba(255, 255, 255, 0.92);
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .pp-pill:hover {
          transform: translateY(-2px);
          border-color: rgba(167, 139, 250, 0.55);
          box-shadow: 0 10px 28px rgba(139, 92, 246, 0.22);
        }

        /* Fractal Section Header */
        .pp-fractal-header {
          text-align: center;
          max-width: 720px;
          margin: 0 auto 44px;
        }

        .pp-fractal-eyebrow {
          font-family: 'JetBrains Mono', 'Courier New', monospace;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 0.24em;
          text-transform: uppercase;
          color: rgba(167, 139, 250, 0.75);
          margin-bottom: 22px;
        }

        .pp-fractal-kicker {
          font-size: 36px;
          font-weight: 800;
          line-height: 1.2;
          letter-spacing: -0.02em;
          margin: 0 0 18px;
          background: linear-gradient(135deg, #a78bfa 0%, #67e8f9 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          filter: drop-shadow(0 0 32px rgba(139, 92, 246, 0.35));
        }

        .pp-fractal-sub {
          font-size: 17px;
          line-height: 1.7;
          color: rgba(255, 255, 255, 0.75);
          margin: 0;
        }

        .section-title {
          text-align: center;
          font-size: 36px;
          font-weight: 800;
          line-height: 1.2;
          letter-spacing: -0.02em;
          margin: 0 auto 18px;
          max-width: 820px;
          background: linear-gradient(135deg, #a78bfa 0%, #67e8f9 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          filter: drop-shadow(0 0 32px rgba(139, 92, 246, 0.35));
        }

        .section-subtitle {
          text-align: center;
          font-size: 17px;
          line-height: 1.7;
          color: rgba(255, 255, 255, 0.75);
          max-width: 720px;
          margin: 0 auto 44px;
        }

        /* Fractal Pricing */
        .pricing-fractal {
          margin: 40px 20px;
          padding: 60px 48px;
          border-radius: 24px;
        }

        .fractal-tabs {
          display: flex;
          gap: 12px;
          margin-bottom: 32px;
          justify-content: center;
        }

        .fractal-tab {
          background: rgba(255, 255, 255, 0.05);
          backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.1);
          border-radius: 12px;
          padding: 16px 32px;
          display: flex;
          align-items: center;
          gap: 8px;
          cursor: pointer;
          transition: all 0.3s;
          color: rgba(255, 255, 255, 0.7);
          font-size: 15px;
          font-weight: 600;
        }

        .fractal-tab:hover {
          background: rgba(255, 255, 255, 0.08);
          border-color: rgba(139, 92, 246, 0.4);
          transform: translateY(-2px);
        }

        .fractal-tab.active {
          background: rgba(139, 92, 246, 0.2);
          border-color: rgba(139, 92, 246, 0.6);
          color: #fff;
          box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
        }

        .tab-label { font-size: 15px; font-weight: 600; }

        .fractal-content { animation: fadeIn 0.4s ease-in-out; }
        .fractal-content.hidden { display: none; }
        .fractal-content.active { display: block; }

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

        /* Sub-tabs (inside Agents tab) */
        .sub-tabs {
          display: flex;
          gap: 8px;
          justify-content: center;
          margin-bottom: 32px;
        }

        .sub-tab {
          background: rgba(255, 255, 255, 0.04);
          border: 1px solid rgba(255, 255, 255, 0.08);
          border-radius: 8px;
          padding: 10px 24px;
          color: rgba(255, 255, 255, 0.6);
          font-size: 14px;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s;
        }

        .sub-tab:hover {
          background: rgba(255, 255, 255, 0.06);
          color: rgba(255, 255, 255, 0.8);
        }

        .sub-tab.active {
          background: rgba(139, 92, 246, 0.15);
          border-color: rgba(139, 92, 246, 0.4);
          color: #fff;
        }

        /* Bundles grid */
        .bundles-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 32px;
        }

        .bundles-grid.two-col {
          grid-template-columns: repeat(2, 1fr);
          max-width: 800px;
          margin: 0 auto;
        }

        /* Custom Bundle Builder */
        .custom-bundle {
          max-width: 1000px;
          margin: 0 auto;
        }

        .custom-hint {
          text-align: center;
          color: rgba(255, 255, 255, 0.6);
          font-size: 15px;
          margin-bottom: 24px;
        }

        .discount-tiers {
          display: flex;
          gap: 8px;
          justify-content: center;
          margin-bottom: 32px;
          flex-wrap: wrap;
        }

        .tier-chip {
          background: rgba(255, 255, 255, 0.04);
          border: 1px solid rgba(255, 255, 255, 0.08);
          border-radius: 8px;
          padding: 8px 16px;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 2px;
          transition: all 0.3s;
        }

        .tier-chip.active {
          background: rgba(139, 92, 246, 0.2);
          border-color: rgba(139, 92, 246, 0.5);
          box-shadow: 0 2px 12px rgba(139, 92, 246, 0.3);
        }

        .tier-range {
          font-size: 13px;
          color: rgba(255, 255, 255, 0.5);
          font-weight: 600;
        }

        .tier-chip.active .tier-range { color: rgba(255, 255, 255, 0.9); }

        .tier-discount {
          font-size: 14px;
          font-weight: 700;
          color: rgba(255, 255, 255, 0.7);
        }

        .tier-chip.active .tier-discount { color: #10B981; }

        .custom-agents-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
          gap: 12px;
          margin-bottom: 32px;
        }

        .custom-agent-card {
          position: relative;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 6px;
          padding: 20px 12px;
          border-radius: 12px;
          cursor: pointer;
          transition: all 0.3s;
          text-align: center;
        }

        .custom-agent-card:hover {
          background: rgba(255, 255, 255, 0.06);
          border-color: rgba(139, 92, 246, 0.4);
          transform: translateY(-2px);
        }

        .custom-agent-card.selected {
          background: rgba(139, 92, 246, 0.15);
          border-color: rgba(139, 92, 246, 0.6);
          box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2);
        }

        .custom-agent-check {
          position: absolute;
          top: 8px;
          right: 8px;
          width: 20px;
          height: 20px;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.06);
          border: 1px solid rgba(255, 255, 255, 0.15);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 12px;
          color: #10B981;
          font-weight: 700;
        }

        .custom-agent-card.selected .custom-agent-check {
          background: rgba(16, 185, 129, 0.2);
          border-color: #10B981;
        }

        .custom-agent-icon { font-size: 32px; }
        .custom-agent-name { font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, 0.9); }
        .custom-agent-tools { font-size: 11px; color: rgba(255, 255, 255, 0.5); }
        .custom-agent-price { font-size: 14px; font-weight: 700; color: #8B5CF6; }

        /* Custom Bundle Summary */
        .custom-summary {
          padding: 24px;
          border-radius: 16px;
          margin-top: 16px;
          animation: fadeIn 0.3s ease-out;
        }

        .summary-row {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 8px 0;
          font-size: 15px;
          color: rgba(255, 255, 255, 0.7);
        }

        .summary-row.discount { color: #10B981; }
        .summary-original { text-decoration: line-through; color: rgba(255, 255, 255, 0.4); }
        .summary-savings { font-weight: 600; }

        .summary-row.total {
          border-top: 1px solid rgba(255, 255, 255, 0.1);
          margin-top: 8px;
          padding-top: 16px;
          font-size: 18px;
          color: #fff;
          font-weight: 700;
        }

        .summary-total { font-size: 24px; color: #8B5CF6; }

        .custom-summary .bundle-cta-link { margin-top: 16px; display: block; }

        /* Tools Dropdown */
        .tools-dropdown-toggle {
          background: none;
          border: none;
          color: rgba(139, 92, 246, 0.8);
          font-size: 13px;
          font-weight: 600;
          cursor: pointer;
          padding: 8px 0;
          margin-bottom: 8px;
          transition: color 0.2s;
          text-align: left;
          width: 100%;
        }

        .tools-dropdown-toggle:hover { color: #8B5CF6; }

        .tools-dropdown {
          background: rgba(0, 0, 0, 0.2);
          border: 1px solid rgba(255, 255, 255, 0.06);
          border-radius: 10px;
          padding: 12px;
          margin-bottom: 16px;
          max-height: 300px;
          overflow-y: auto;
          animation: fadeIn 0.3s ease-out;
        }

        .tools-section-label {
          font-size: 11px;
          font-weight: 700;
          text-transform: uppercase;
          letter-spacing: 0.08em;
          color: rgba(139, 92, 246, 0.6);
          padding: 8px 0 4px;
          margin-top: 4px;
        }

        .tools-section-label:first-child { margin-top: 0; }

        .tool-row {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 5px 0;
          border-bottom: 1px solid rgba(255, 255, 255, 0.03);
          gap: 12px;
        }

        .tool-row:last-child { border-bottom: none; }

        .tool-row.plus .tool-name { color: #8B5CF6; }

        .tool-name {
          font-size: 12px;
          font-weight: 600;
          color: rgba(255, 255, 255, 0.8);
          white-space: nowrap;
          font-family: monospace;
        }

        .tool-desc {
          font-size: 11px;
          color: rgba(255, 255, 255, 0.4);
          text-align: right;
          flex-shrink: 1;
          min-width: 0;
        }

        .bundle-card {
          position: relative;
          display: flex;
          flex-direction: column;
          padding: 32px 28px;
          border-radius: 16px;
          transition: all 0.3s;
        }

        .bundle-card:hover {
          background: rgba(255, 255, 255, 0.06);
          border-color: rgba(139, 92, 246, 0.4);
          transform: translateY(-4px);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }

        .bundle-card.popular {
          border-color: rgba(139, 92, 246, 0.6);
          border-width: 2px;
        }

        .bundle-badge {
          position: absolute;
          top: -12px;
          left: 50%;
          transform: translateX(-50%);
          background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
          color: white;
          padding: 6px 20px;
          border-radius: 20px;
          font-size: 14px;
          font-weight: 600;
        }

        .bundle-header {
          text-align: center;
          padding-bottom: 24px;
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
          margin-bottom: 24px;
        }

        .bundle-name {
          font-size: 28px;
          font-weight: 700;
          margin-bottom: 16px;
          color: #fff;
        }

        .bundle-price {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 8px;
        }

        .price-original {
          font-size: 18px;
          color: rgba(255, 255, 255, 0.4);
          text-decoration: line-through;
        }

        .price-amount {
          font-size: 48px;
          font-weight: 800;
          color: #8B5CF6;
        }

        .price-savings {
          font-size: 14px;
          color: #10B981;
          font-weight: 600;
        }

        .bundle-description {
          color: rgba(255, 255, 255, 0.7);
          text-align: center;
          margin-bottom: 20px;
          line-height: 1.6;
        }

        .bundle-stats {
          display: flex;
          justify-content: center;
          gap: 24px;
          margin-bottom: 24px;
          font-size: 14px;
          color: rgba(255, 255, 255, 0.6);
        }

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

        .bundle-features li {
          padding: 8px 0;
          font-size: 15px;
          color: rgba(255, 255, 255, 0.8);
        }

        .bundle-features li::before {
          content: '✓';
          color: #10B981;
          font-weight: 700;
          margin-right: 12px;
        }

        .feature-more {
          font-style: italic;
          color: rgba(255, 255, 255, 0.5);
        }

        .bundle-cta-link {
          text-decoration: none;
        }

        .bundle-cta {
          width: 100%;
        }

        /* Individual Agents */
        .pricing-agents {
          margin: 40px 20px;
          padding: 60px 48px;
          border-radius: 24px;
        }

        .agents-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
          gap: 24px;
        }

        .agent-card {
          position: relative;
          display: flex;
          flex-direction: column;
          padding: 28px 24px 22px;
          border-radius: 18px;
          background:
            radial-gradient(ellipse at top, rgba(139, 92, 246, 0.10), transparent 65%),
            rgba(255, 255, 255, 0.025);
          border: 1px solid rgba(255, 255, 255, 0.08);
          transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms, box-shadow 280ms;
          overflow: hidden;
        }

        .agent-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 1px;
          background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
          opacity: 0;
          transition: opacity 280ms;
        }

        .agent-card:hover {
          transform: translateY(-4px);
          border-color: rgba(167, 139, 250, 0.45);
          box-shadow: 0 18px 48px rgba(139, 92, 246, 0.22);
        }

        .agent-card:hover::before {
          opacity: 1;
        }

        .agent-icon {
          font-size: 48px;
          margin-bottom: 16px;
        }

        .agent-name {
          font-size: 20px;
          font-weight: 700;
          margin-bottom: 8px;
          color: #fff;
        }

        .agent-description {
          font-size: 14px;
          color: rgba(255, 255, 255, 0.7);
          margin-bottom: 16px;
          flex: 1;
          line-height: 1.6;
        }

        .agent-meta {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 8px;
        }

        .agent-tools {
          font-size: 13px;
          color: rgba(255, 255, 255, 0.6);
        }

        .agent-price {
          font-size: 22px;
          font-weight: 700;
          color: #8B5CF6;
        }

        .agent-savings {
          font-size: 13px;
          color: #10B981;
          margin-bottom: 16px;
        }

        .agent-cta-link {
          text-decoration: none;
        }

        .agent-cta {
          width: 100%;
        }

        /* FAQ */
        .pricing-faq {
          margin: 40px 20px;
          padding: 60px 48px;
          border-radius: 24px;
        }

        .faq-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 24px;
          margin-top: 48px;
        }

        .faq-item {
          position: relative;
          padding: 28px 26px;
          border-radius: 18px;
          background:
            radial-gradient(ellipse at top, rgba(139, 92, 246, 0.10), transparent 65%),
            rgba(255, 255, 255, 0.025);
          border: 1px solid rgba(255, 255, 255, 0.08);
          transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms, box-shadow 280ms;
          overflow: hidden;
        }

        .faq-item::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 1px;
          background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
          opacity: 0;
          transition: opacity 280ms;
        }

        .faq-item:hover {
          transform: translateY(-4px);
          border-color: rgba(167, 139, 250, 0.45);
          box-shadow: 0 18px 48px rgba(139, 92, 246, 0.22);
        }

        .faq-item:hover::before {
          opacity: 1;
        }

        .faq-item h3 {
          position: relative;
          font-size: 19px;
          font-weight: 800;
          margin: 0 0 16px;
          padding-bottom: 14px;
          color: #fff;
          letter-spacing: -0.01em;
          line-height: 1.3;
        }

        .faq-item h3::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 28px;
          height: 2px;
          background: linear-gradient(90deg, #a78bfa 0%, #67e8f9 100%);
          border-radius: 2px;
        }

        .faq-item p {
          color: rgba(255, 255, 255, 0.75);
          line-height: 1.7;
          font-size: 14.5px;
          margin: 0;
        }

        /* CTA Section */
        .cta {
          margin: 40px 20px;
          padding: 60px 48px;
          border-radius: 24px;
        }

        .cta-container {
          max-width: 1200px;
          margin: 0 auto;
          text-align: center;
        }

        .cta-subtitle {
          font-size: 22px;
          color: rgba(255, 255, 255, 0.8);
          margin-bottom: 48px;
          text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
        }

        .cta-buttons {
          display: flex;
          gap: 24px;
          justify-content: center;
        }

        /* Affiliate / Key Section */
        .download-key {
          margin: 40px 20px;
          padding: 40px 48px;
          border-radius: 24px;
          text-align: center;
        }

        .download-key-inner {
          max-width: 600px;
          margin: 0 auto;
        }

        .download-key-title {
          font-size: 22px;
          font-weight: 700;
          color: #fff;
          margin-bottom: 12px;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        }

        .download-key-desc {
          font-size: 16px;
          color: rgba(255, 255, 255, 0.7);
          line-height: 1.6;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        .footer {
          margin: 40px 20px;
          padding: 60px 48px;
          border-radius: 24px;
        }

        .footer-card {
          max-width: 1200px;
          margin: 0 auto;
        }

        .footer-content {
          display: grid;
          grid-template-columns: repeat(5, 1fr);
          gap: 48px;
          margin-bottom: 48px;
        }

        .footer-section h3 {
          font-size: 24px;
          font-weight: 800;
          margin-bottom: 8px;
          background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .footer-tagline {
          font-size: 14px;
          color: rgba(255, 255, 255, 0.6);
        }

        .footer-section h4 {
          font-size: 16px;
          font-weight: 700;
          margin-bottom: 16px;
          color: #fff;
        }

        .footer-links {
          list-style: none;
          padding: 0;
          margin: 0;
        }

        .footer-links li {
          margin-bottom: 12px;
        }

        .footer-links a {
          color: rgba(255, 255, 255, 0.7);
          text-decoration: none;
          font-size: 15px;
          transition: color 0.2s;
        }

        .footer-links a:hover {
          color: #8b5cf6;
        }

        .footer-bottom {
          text-align: center;
          padding-top: 32px;
          border-top: 1px solid rgba(255, 255, 255, 0.1);
          color: rgba(255, 255, 255, 0.5);
          font-size: 14px;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
          .footer-content {
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
          }
        }

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

          .pp-kicker {
            font-size: 24px;
          }

          .pp-sub {
            font-size: 16px;
          }

          .pp-pills {
            flex-direction: column;
            align-items: center;
          }

          .pp-pill {
            font-size: 11px;
            padding: 10px 18px;
          }

          .pp-fractal-kicker {
            font-size: 26px;
          }

          .pp-fractal-sub {
            font-size: 15px;
          }

          .section-title {
            font-size: 32px;
          }

          .pricing-hero,
          .pricing-fractal,
          .pricing-agents,
          .pricing-faq,
          .cta,
          .download-key {
            padding: 40px 24px;
          }

          .bundles-grid,
          .bundles-grid.two-col {
            grid-template-columns: 1fr;
          }

          .custom-agents-grid {
            grid-template-columns: repeat(2, 1fr);
          }

          .agents-grid {
            grid-template-columns: 1fr;
          }

          .faq-grid {
            grid-template-columns: 1fr;
          }

          .footer-content {
            grid-template-columns: 1fr;
            gap: 24px;
          }

          .cta-buttons {
            flex-direction: column;
            align-items: center;
          }
        }
      