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

        :root {
            --bg-deep: #060a12;
            --bg-primary: #0a0f1a;
            --bg-surface: #111827;
            --bg-surface-hover: #1a2332;
            --bg-elevated: #1e293b;
            --cyan: #00dfd8;
            --cyan-bright: #00fff2;
            --cyan-dim: #007a76;
            --cyan-glow: rgba(0, 223, 216, 0.15);
            --cyan-glow-strong: rgba(0, 223, 216, 0.3);
            --orange: #ff6b35;
            --orange-bright: #ff8a5c;
            --text-primary: #e8edf5;
            --text-secondary: #8899b0;
            --text-muted: #506070;
            --border: rgba(0, 223, 216, 0.1);
            --border-hover: rgba(0, 223, 216, 0.25);
            --font-display: 'Unbounded', sans-serif;
            --font-body: 'Onest', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* === BACKGROUND GRID === */
        .bg-grid {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(0, 223, 216, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 223, 216, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .bg-grain {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.3;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
        }

        /* === LAYOUT === */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        /* === NAVIGATION === */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 16px 0;
            transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
            background: transparent;
        }

        nav.scrolled {
            background: rgba(6, 10, 18, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-primary);
        }

        .logo-icon {
            width: 36px;
            height: 36px;
        }

        .logo-text {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.25rem;
            letter-spacing: -0.02em;
        }

        .logo-text span {
            color: var(--cyan);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--cyan);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--cyan);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        @keyframes projects-shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes projects-menu-in {
            from { opacity: 0; transform: translateY(-8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .projects-nav-item {
            position: static;
        }

        .projects-toggle {
            min-height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            padding: 0;
            border: 0;
            background: linear-gradient(90deg, var(--cyan), #4ea1ff, #a878ff, var(--cyan));
            background-size: 300% 100%;
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            animation: projects-shimmer 5s ease-in-out infinite;
            filter: drop-shadow(0 0 10px rgba(0, 223, 216, 0.22));
        }

        .projects-caret {
            font-size: 0.72rem;
            transition: transform 0.22s cubic-bezier(0.2, 0, 0, 1);
        }

        .projects-toggle[aria-expanded="true"] .projects-caret {
            transform: rotate(180deg);
        }

        .projects-menu {
            position: absolute;
            top: calc(100% + 14px);
            left: 24px;
            right: 24px;
            display: grid;
            grid-template-columns: 1.35fr 1fr 1fr;
            gap: 10px;
            padding: 12px;
            border-radius: 18px;
            background: rgba(10, 15, 26, 0.96);
            box-shadow:
                0 28px 70px rgba(0, 0, 0, 0.45),
                0 0 0 1px rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            animation: projects-menu-in 0.22s cubic-bezier(0.2, 0, 0, 1);
        }

        .projects-menu[hidden] {
            display: none;
        }

        .project-link {
            min-width: 0;
            min-height: 132px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-end;
            gap: 5px;
            padding: 18px;
            border: 0;
            border-radius: 10px;
            background: var(--bg-surface);
            color: var(--text-primary);
            font-family: var(--font-body);
            text-align: left;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
            transition-property: transform, background-color, box-shadow;
            transition-duration: 0.2s;
            transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
        }

        .project-link::after {
            display: none;
        }

        .project-link:hover {
            transform: translateY(-2px);
            background: var(--bg-surface-hover);
            box-shadow:
                0 14px 32px rgba(0, 0, 0, 0.24),
                0 0 0 1px rgba(0, 223, 216, 0.2);
        }

        .project-link:active {
            transform: scale(0.96);
        }

        .project-link-featured {
            justify-content: flex-end;
            background:
                radial-gradient(circle at 92% 8%, rgba(0, 223, 216, 0.18), transparent 38%),
                linear-gradient(135deg, rgba(0, 223, 216, 0.1), rgba(78, 161, 255, 0.04)),
                var(--bg-surface);
        }

        .project-kicker {
            color: var(--cyan);
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .project-link strong {
            color: var(--text-primary);
            font-size: 0.94rem;
            line-height: 1.35;
            text-wrap: balance;
        }

        .project-link > span:last-child {
            color: var(--text-secondary);
            font-size: 0.76rem;
            line-height: 1.45;
            text-wrap: pretty;
        }

        .project-icon {
            width: 34px;
            height: 34px;
            display: grid;
            place-items: center;
            margin-bottom: auto;
            border-radius: 8px;
            background: rgba(0, 223, 216, 0.09);
            color: var(--cyan);
            font-size: 0.72rem;
            font-weight: 700;
        }

        .projects-toggle:focus-visible,
        .project-link:focus-visible {
            outline: 2px solid var(--cyan);
            outline-offset: 3px;
        }

        .nav-cta {
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 8px;
            border: 1px solid var(--cyan);
            background: transparent;
            color: var(--cyan);
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s, box-shadow 0.3s, scale 0.12s ease;
            text-decoration: none;
        }

        .nav-cta:hover {
            background: var(--cyan);
            color: var(--bg-deep);
            box-shadow: 0 0 30px var(--cyan-glow-strong);
        }

        .nav-cta:active {
            scale: 0.96;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: transform 0.3s, background-color 0.3s;
        }

        /* === HERO === */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-glow {
            position: absolute;
            top: -200px;
            right: -200px;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 223, 216, 0.08) 0%, transparent 70%);
            pointer-events: none;
            animation: float 8s ease-in-out infinite;
        }

        .hero-glow-2 {
            position: absolute;
            bottom: -100px;
            left: -300px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
            pointer-events: none;
            animation: float 10s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -30px); }
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            animation: slideUp 0.8s ease-out;
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: 100px;
            border: 1px solid var(--border-hover);
            background: var(--cyan-glow);
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--cyan);
            margin-bottom: 28px;
            animation: slideUp 0.8s ease-out 0.1s both;
        }

        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--cyan);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        h1 {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 4.5vw, 3.6rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.03em;
            text-wrap: balance;
            margin-bottom: 24px;
            animation: slideUp 0.8s ease-out 0.2s both;
        }

        h1 .accent {
            color: var(--cyan);
            position: relative;
        }

        h1 .accent::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--cyan);
            border-radius: 2px;
            opacity: 0.4;
        }

        .hero-desc {
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 520px;
            text-wrap: pretty;
            animation: slideUp 0.8s ease-out 0.3s both;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: slideUp 0.8s ease-out 0.4s both;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: var(--cyan);
            color: var(--bg-deep);
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s, box-shadow 0.3s, translate 0.3s, scale 0.12s ease;
            box-shadow: 0 0 40px var(--cyan-glow);
        }

        .btn-primary:hover {
            background: var(--cyan-bright);
            translate: 0 -2px;
            box-shadow: 0 8px 50px var(--cyan-glow-strong);
        }

        .btn-primary:active {
            scale: 0.96;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: transparent;
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            border: 1px solid var(--border-hover);
            border-radius: 12px;
            cursor: pointer;
            text-decoration: none;
            transition: border-color 0.3s, color 0.3s, background-color 0.3s, scale 0.12s ease;
        }

        .btn-secondary:hover {
            border-color: var(--cyan);
            color: var(--cyan);
            background: var(--cyan-glow);
        }

        .btn-secondary:active {
            scale: 0.96;
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: slideUp 0.8s ease-out 0.5s both;
        }

        .hero-chat {
            width: 100%;
            max-width: 460px;
            background: var(--bg-surface);
            border: 1px solid var(--border-hover);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 60px var(--cyan-glow);
        }

        .chat-header {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            background: var(--bg-elevated);
            border-bottom: 1px solid var(--border);
        }

        .chat-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--cyan-glow);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .chat-peer {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        .chat-name {
            font-weight: 600;
            font-size: 0.9rem;
        }

        .chat-status {
            font-size: 0.75rem;
            color: var(--cyan);
        }

        .chat-body {
            padding: 22px 18px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: radial-gradient(circle at 30% 15%, rgba(0, 223, 216, 0.04), transparent 60%);
        }

        .bubble {
            max-width: 82%;
            padding: 11px 15px;
            font-size: 0.9rem;
            line-height: 1.45;
            opacity: 0;
            animation: bubbleIn 0.5s cubic-bezier(0.2, 0, 0, 1) forwards;
        }

        .bubble-out {
            align-self: flex-end;
            background: var(--cyan);
            color: var(--bg-deep);
            font-weight: 500;
            border-radius: 16px 16px 4px 16px;
        }

        .bubble-in {
            align-self: flex-start;
            background: var(--bg-elevated);
            color: var(--text-primary);
            border-radius: 16px 16px 16px 4px;
        }

        .bubble-success {
            color: #28c840;
            font-weight: 600;
        }

        .bubble:nth-child(1) { animation-delay: 0.8s; }
        .bubble:nth-child(2) { animation-delay: 1.7s; }
        .bubble:nth-child(3) { animation-delay: 2.8s; }

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

        /* === SECTION TITLES === */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-display);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--cyan);
            margin-bottom: 16px;
        }

        .section-label::before {
            content: '';
            width: 24px;
            height: 1.5px;
            background: var(--cyan);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            text-wrap: balance;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.7;
            text-wrap: pretty;
        }

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

        .section-header .section-subtitle {
            margin: 0 auto;
        }

        /* === HOW IT WORKS === */
        .steps-section {
            background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 50%, var(--bg-deep) 100%);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 56px;
            left: calc(16.66% + 24px);
            right: calc(16.66% + 24px);
            height: 2px;
            background: linear-gradient(90deg, var(--cyan-dim), var(--cyan), var(--cyan-dim));
            opacity: 0.3;
        }

        .step-card {
            text-align: center;
            padding: 40px 24px;
            position: relative;
        }

        .step-number {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            border-radius: 16px;
            background: var(--bg-surface);
            border: 2px solid var(--cyan);
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--cyan);
            position: relative;
            z-index: 2;
            box-shadow: 0 0 30px var(--cyan-glow);
            transition: background-color 0.3s, color 0.3s, transform 0.3s;
        }

        .step-card:hover .step-number {
            background: var(--cyan);
            color: var(--bg-deep);
            transform: scale(1.1);
        }

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

        .step-title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .step-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            text-wrap: pretty;
        }

        .step-code {
            display: inline-block;
            margin-top: 12px;
            padding: 6px 14px;
            background: var(--bg-deep);
            border: 1px solid var(--border);
            border-radius: 8px;
            font-family: monospace;
            font-size: 0.8rem;
            color: var(--orange);
        }

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

        .feature-card {
            padding: 36px 28px;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--cyan), transparent);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .feature-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px var(--cyan-glow);
        }

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

        .feature-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: var(--cyan-glow);
            margin-bottom: 20px;
            font-size: 1.4rem;
        }

        .feature-title {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .feature-desc {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
            text-wrap: pretty;
        }

        .feature-tag {
            display: inline-block;
            margin-top: 14px;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .tag-business {
            background: rgba(255, 107, 53, 0.12);
            color: var(--orange);
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .tag-personal {
            background: var(--cyan-glow);
            color: var(--cyan);
            border: 1px solid rgba(0, 223, 216, 0.2);
        }

        .tag-all {
            background: rgba(139, 92, 246, 0.12);
            color: #a78bfa;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        /* === AUDIENCE TABS === */
        .audience-section {
            background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 50%, var(--bg-deep) 100%);
        }

        .audience-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .audience-card {
            padding: 48px 40px;
            border-radius: 20px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
        }

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

        .audience-card.business {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, var(--bg-surface) 100%);
        }

        .audience-card.business:hover {
            border-color: rgba(255, 107, 53, 0.3);
            box-shadow: 0 16px 48px rgba(255, 107, 53, 0.08);
        }

        .audience-card.personal {
            background: linear-gradient(135deg, var(--cyan-glow) 0%, var(--bg-surface) 100%);
        }

        .audience-card.personal:hover {
            border-color: var(--border-hover);
            box-shadow: 0 16px 48px var(--cyan-glow);
        }

        .audience-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: block;
        }

        .audience-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .audience-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 24px;
            text-wrap: pretty;
        }

        .audience-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .audience-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .audience-list li::before {
            content: '→';
            color: var(--cyan);
            font-weight: 700;
            flex-shrink: 0;
        }

        .audience-card.business .audience-list li::before {
            color: var(--orange);
        }

        /* === PRICING === */
        .pricing-section {
            position: relative;
        }

        .pricing-note {
            text-align: center;
            margin-bottom: 48px;
            padding: 20px 28px;
            background: var(--cyan-glow);
            border: 1px solid var(--border-hover);
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--cyan);
            font-weight: 500;
            margin-left: auto;
            margin-right: auto;
            width: fit-content;
        }

        .pricing-note-wrapper {
            display: flex;
            justify-content: center;
            margin-bottom: 48px;
        }

        .pricing-table-wrapper {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
        }

        /* Mobile pricing cards */
        .pricing-cards-mobile {
            display: none;
            flex-direction: column;
            gap: 16px;
        }

        .pricing-card-m {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .pricing-card-m:hover {
            border-color: var(--border-hover);
            box-shadow: 0 8px 32px var(--cyan-glow);
        }

        .pricing-card-m-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .pricing-card-m-name {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 600;
        }

        .pricing-card-m-prices {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .pricing-card-m-price {
            background: var(--bg-deep);
            border-radius: 10px;
            padding: 14px 16px;
            text-align: center;
        }

        .pricing-card-m-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-bottom: 6px;
            font-weight: 600;
        }

        .pricing-card-m-value {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--cyan);
        }

        .pricing-card-m-desc {
            margin-top: 14px;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

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

        .pricing-table thead th {
            padding: 20px 28px;
            text-align: left;
            font-family: var(--font-display);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            background: var(--bg-elevated);
            border-bottom: 1px solid var(--border);
        }

        .pricing-table tbody tr {
            transition: background-color 0.3s;
        }

        .pricing-table tbody tr:hover {
            background: var(--bg-surface-hover);
        }

        .pricing-table tbody td {
            padding: 20px 28px;
            border-bottom: 1px solid var(--border);
            font-size: 0.95rem;
        }

        .pricing-table tbody tr:last-child td {
            border-bottom: none;
        }

        .model-name {
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .model-badge {
            font-size: 0.65rem;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .badge-fast {
            background: rgba(40, 200, 64, 0.12);
            color: #28c840;
            border: 1px solid rgba(40, 200, 64, 0.2);
        }

        .badge-smart {
            background: rgba(139, 92, 246, 0.12);
            color: #a78bfa;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .badge-pro {
            background: rgba(255, 107, 53, 0.12);
            color: var(--orange);
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .badge-popular {
            background: var(--cyan-glow);
            color: var(--cyan);
            border: 1px solid rgba(0, 223, 216, 0.2);
        }

        .price-value {
            font-family: var(--font-display);
            font-weight: 600;
            color: var(--cyan);
        }

        .price-unit {
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        .model-desc {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        /* === OUTCOME CARDS (оплата после результата) === */
        .outcomes-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .outcome-card {
            padding: 32px 24px;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            text-align: center;
            transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
        }

        .outcome-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px var(--cyan-glow);
        }

        .outcome-value {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 2.6vw, 2.1rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--cyan);
            margin-bottom: 12px;
            font-variant-numeric: tabular-nums;
            text-wrap: balance;
        }

        .outcome-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.5;
            text-wrap: pretty;
        }

        /* === TRUST / FOUNDER === */
        .founder-card {
            display: flex;
            align-items: center;
            gap: 32px;
            max-width: 820px;
            margin: 0 auto 40px;
            padding: 36px 40px;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 20px;
        }

        .founder-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            outline: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 3px var(--cyan-glow), 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        .founder-name {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .founder-bio {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            text-wrap: pretty;
        }

        .founder-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .founder-actions .btn-primary,
        .founder-actions .btn-secondary {
            padding: 12px 22px;
            font-size: 0.9rem;
        }

        .cases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 900px;
            margin: 0 auto;
        }

        a.case-card {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .case-more {
            display: inline-block;
            margin-top: 12px;
            color: var(--cyan);
            font-size: 0.85rem;
            font-weight: 600;
        }

        .case-card {
            padding: 28px 24px;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
        }

        .case-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px var(--cyan-glow);
        }

        .case-icon {
            font-size: 1.8rem;
            display: block;
            margin-bottom: 14px;
        }

        .case-title {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .case-desc {
            color: var(--text-secondary);
            font-size: 0.88rem;
            line-height: 1.55;
            text-wrap: pretty;
        }

        /* === REVIEWS === */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .review-card {
            display: flex;
            flex-direction: column;
            padding: 28px 24px;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
        }

        .review-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px var(--cyan-glow);
        }

        .review-text {
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.6;
            text-wrap: pretty;
            flex-grow: 1;
        }

        .review-author {
            margin-top: 18px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .review-meta {
            margin-top: 4px;
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .reviews-cta {
            text-align: center;
        }

        /* === FAQ === */
        .faq-section {
            background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 50%, var(--bg-deep) 100%);
        }

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

        .faq-item {
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            transition: border-color 0.3s, box-shadow 0.3s;
            background: var(--bg-surface);
        }

        .faq-item:hover {
            border-color: var(--border-hover);
        }

        .faq-item.active {
            border-color: var(--border-hover);
            box-shadow: 0 4px 24px var(--cyan-glow);
        }

        .faq-question {
            width: 100%;
            padding: 22px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            background: none;
            border: none;
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-align: left;
            transition: color 0.3s;
        }

        .faq-question:hover {
            color: var(--cyan);
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: var(--bg-elevated);
            color: var(--cyan);
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: background-color 0.3s, color 0.3s, transform 0.3s;
        }

        .faq-item.active .faq-icon {
            background: var(--cyan);
            color: var(--bg-deep);
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer-inner {
            padding: 0 28px 24px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
            text-wrap: pretty;
        }

        /* === CTA SECTION === */
        .cta-section {
            text-align: center;
            position: relative;
        }

        .cta-box {
            padding: 80px 60px;
            background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(0, 223, 216, 0.05) 100%);
            border: 1px solid var(--border-hover);
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--cyan), transparent);
        }

        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            text-wrap: balance;
            margin-bottom: 16px;
        }

        .cta-desc {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 36px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            text-wrap: pretty;
        }

        /* === FOOTER === */
        footer {
            padding: 48px 0;
            border-top: 1px solid var(--border);
            position: relative;
            z-index: 1;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-copy {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            list-style: none;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--cyan);
        }

        /* === SCROLL REVEAL === */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease-out, transform 0.7s ease-out;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* === MOBILE === */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .hero-chat {
                max-width: 100%;
            }

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

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

            .steps-grid::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 64px 0;
            }

            .nav-links, .nav-cta {
                display: none;
            }

            .mobile-toggle {
                display: flex;
            }

            .nav-links.open {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                max-height: calc(100svh - 72px);
                overflow-y: auto;
                background: rgba(6, 10, 18, 0.95);
                backdrop-filter: blur(20px);
                padding: 24px;
                gap: 16px;
                border-bottom: 1px solid var(--border);
            }

            .projects-nav-item {
                width: 100%;
            }

            .projects-toggle {
                width: 100%;
                justify-content: flex-start;
                font-size: 0.95rem;
            }

            .projects-menu {
                position: static;
                grid-template-columns: 1fr;
                margin-top: 8px;
                padding: 8px;
                border-radius: 14px;
                background: rgba(17, 24, 39, 0.72);
                box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07);
            }

            .project-link {
                min-height: 96px;
                padding: 16px;
            }

            .project-icon {
                margin-bottom: 12px;
            }

            .hero {
                min-height: auto;
                padding-top: 120px;
                padding-bottom: 60px;
            }

            .steps-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .step-card {
                padding: 28px 20px;
                background: var(--bg-surface);
                border: 1px solid var(--border);
                border-radius: 16px;
            }

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

            .outcomes-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .founder-card {
                flex-direction: column;
                text-align: center;
                padding: 32px 24px;
                gap: 20px;
            }

            .founder-actions {
                justify-content: center;
            }

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

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

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

            .audience-card {
                padding: 32px 24px;
            }

            .pricing-table-wrapper {
                display: none;
            }

            .pricing-cards-mobile {
                display: flex;
            }

            .cta-box {
                padding: 48px 24px;
            }

            .hero-actions {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                justify-content: center;
                width: 100%;
            }

        }

        @media (prefers-reduced-motion: reduce) {
            .projects-toggle,
            .projects-menu {
                animation: none;
            }

            .projects-caret,
            .project-link {
                transition-duration: 0.01ms;
            }
        }

.currency-symbol { font-family: var(--font-body); }
