        /* ── Reset & Base ──────────────────────────────── */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #4B65F5;
            --primary-dark: #3A51D4;
            --primary-light: #EDF0FF;
            --primary-glow: rgba(75, 101, 245, 0.15);

            --bg-canvas: #ECEEF6;
            --bg-hero: #F6F7FC;
            --surface: #FFFFFF;
            --surface-soft: #F4F6FF;

            --text: #111827;
            --text-secondary: #576284;
            --text-muted: #8D9BBF;

            --line: #DFE4F2;
            --line-strong: #CDD5EB;

            --accent-green: #2CBF8C;
            --accent-orange: #F0964A;
            --accent-purple: #8F7AEF;
            --accent-red: #F05C5C;

            --success: #2CBF8C;
            --success-bg: #EDFCF5;

            --shadow-sm: 0 1px 3px rgba(10, 16, 50, 0.05), 0 4px 14px rgba(10, 16, 50, 0.04);
            --shadow-md: 0 2px 8px rgba(10, 16, 50, 0.06), 0 12px 30px rgba(10, 16, 50, 0.07);
            --shadow-lg: 0 4px 20px rgba(10, 16, 50, 0.09), 0 24px 60px rgba(10, 16, 50, 0.11);
            --shadow-primary: 0 4px 14px rgba(75, 101, 245, 0.25), 0 1px 3px rgba(75, 101, 245, 0.12);

            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;

            --nav-height: 62px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text);
            background: var(--surface);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* ── Utility ───────────────────────────────────── */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .container--narrow {
            max-width: 900px;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        /* ── Buttons ───────────────────────────────────── */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 48px;
            padding: 0 28px;
            font-family: inherit;
            font-size: 15px;
            font-weight: 600;
            line-height: 1;
            border: none;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .btn:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        .btn--primary {
            background: var(--primary);
            color: #fff;
            box-shadow: var(--shadow-primary);
        }

        .btn--primary:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(75, 101, 245, 0.3), 0 2px 6px rgba(75, 101, 245, 0.15);
        }

        .btn--secondary {
            background: var(--surface);
            color: var(--text);
            border: 1px solid var(--line-strong);
        }

        .btn--secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }

        .btn--ghost {
            background: transparent;
            color: var(--text-secondary);
            height: 40px;
            padding: 0 16px;
        }

        .btn--ghost:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .btn--large {
            height: 54px;
            padding: 0 36px;
            font-size: 16px;
            border-radius: var(--radius-md);
        }

        /* ── Navigation ────────────────────────────────── */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding-top: 10px;
            height: calc(var(--nav-height));
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav--scrolled {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
        }

        .nav__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .nav__logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: 800;
            color: var(--text);
        }

        .nav__logo svg {
            width: 38px;
            height: 38px;
        }

        .nav__links {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
        }

        .nav__link {
            display: inline-flex;
            align-items: center;
            height: 40px;
            padding: 0 16px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            transition: all 0.15s ease;
            cursor: pointer;
        }

        .nav__link:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .nav__actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav__mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: var(--text);
            width: 40px;
            height: 40px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .burger-bar {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
            transform-origin: center;
        }

        .nav__mobile-toggle.is-open .burger-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav__mobile-toggle.is-open .burger-bar:nth-child(2) {
            opacity: 0;
        }

        .nav__mobile-toggle.is-open .burger-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .nav__mobile-menu {
            display: none;
        }

        /* ── Hero ──────────────────────────────────────── */
        .hero {
            position: relative;
            padding: calc(var(--nav-height) + 80px) 0 100px;
            background: var(--bg-hero);
            overflow: hidden;
        }

        .hero__bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .hero__orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: orbFloat 20s ease-in-out infinite;
        }

        .hero__orb--1 {
            width: 500px;
            height: 500px;
            background: var(--primary);
            top: -150px;
            right: -100px;
            opacity: 0.08;
        }

        .hero__orb--2 {
            width: 400px;
            height: 400px;
            background: var(--accent-purple);
            bottom: -100px;
            left: -100px;
            opacity: 0.06;
            animation-delay: -7s;
        }

        .hero__orb--3 {
            width: 300px;
            height: 300px;
            background: var(--accent-green);
            top: 50%;
            left: 50%;
            opacity: 0.05;
            animation-delay: -14s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -20px) scale(1.05); }
            66% { transform: translate(-20px, 15px) scale(0.95); }
        }

        .hero__content {
            position: relative;
            text-align: center;
            max-width: 780px;
            margin: 0 auto;
        }

        .hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px 6px 14px;
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 32px;
            box-shadow: var(--shadow-sm);
            animation: fadeUp 0.6s ease both;
        }

        .hero__badge-dot {
            width: 8px;
            height: 8px;
            min-width: 8px;
            border-radius: 50%;
            background: var(--accent-green);
            flex-shrink: 0;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(0.85); }
        }

        .hero__title {
            font-size: clamp(40px, 6vw, 68px);
            font-weight: 800;
            line-height: 1.08;
            letter-spacing: -0.03em;
            color: var(--text);
            margin-bottom: 24px;
            animation: fadeUp 0.6s ease 0.1s both;
        }

        .hero__title-accent {
            background: linear-gradient(135deg, var(--primary), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero__subtitle {
            font-size: 18px;
            line-height: 1.7;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 40px;
            animation: fadeUp 0.6s ease 0.2s both;
        }

        .hero__actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            animation: fadeUp 0.6s ease 0.3s both;
        }

        .hero__trust {
            margin-top: 32px;
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            animation: fadeUp 0.6s ease 0.4s both;
        }

        .hero__screenshot {
            position: relative;
            margin-top: 72px;
            animation: fadeUp 0.8s ease 0.5s both;
        }

        .hero__screenshot-img {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            border-radius: var(--radius-lg);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-lg);
            background: var(--surface);
            aspect-ratio: 16 / 10;
            object-fit: cover;
        }

        .hero__screenshot-glow {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 100px;
            background: var(--primary);
            filter: blur(80px);
            opacity: 0.08;
            pointer-events: none;
        }

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

        /* ── Trust Bar ─────────────────────────────────── */
        .trust-bar {
            padding: 80px 0 0;
            text-align: center;
        }

        .trust-bar__label {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .trust-bar__sectors {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .trust-bar__item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-secondary);
            font-size: 15px;
            font-weight: 500;
        }

        .trust-bar__icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-md);
            flex-shrink: 0;
        }

        .trust-bar__icon svg {
            width: 22px;
            height: 22px;
        }

        .trust-bar__icon--legal { background: var(--primary-light); color: var(--primary); }
        .trust-bar__icon--trade { background: #FFF5E9; color: var(--accent-orange); }
        .trust-bar__icon--engineering { background: #F2F1FF; color: var(--accent-purple); }
        .trust-bar__icon--construction { background: var(--success-bg); color: var(--accent-green); }

        /* ── Features ──────────────────────────────────── */
        .features {
            padding: 120px 0;
        }

        .features__header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 80px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .section-label__line {
            width: 24px;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
        }

        .section-title {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: var(--text);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 17px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .feature {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            padding: 60px 0;
        }

        .feature:nth-child(even) .feature__visual {
            order: -1;
        }

        .feature__icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-md);
            margin-bottom: 24px;
        }

        .feature__icon svg {
            width: 26px;
            height: 26px;
        }

        .feature__icon--blue { background: var(--primary-light); color: var(--primary); }
        .feature__icon--green { background: var(--success-bg); color: var(--accent-green); }
        .feature__icon--orange { background: #FFF5E9; color: var(--accent-orange); }
        .feature__icon--purple { background: #F2F1FF; color: var(--accent-purple); }
        .feature__icon--red { background: #FFF1F1; color: var(--accent-red); }

        .feature__title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.01em;
            margin-bottom: 16px;
        }

        .feature__desc {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-secondary);
            max-width: 460px;
        }

        .feature__visual {
            position: relative;
        }

        .feature__card {
            background: var(--bg-hero);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 320px;
            position: relative;
            overflow: hidden;
        }

        .feature__card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 40%, var(--primary-light) 100%);
            opacity: 0.5;
        }

        .feature__card-inner {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
        }

        .feature__mock-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            background: var(--surface);
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-sm);
        }

        .feature__mock-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .feature__mock-line {
            height: 8px;
            border-radius: 4px;
            background: var(--line);
        }

        .feature__mock-badge {
            padding: 4px 10px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            white-space: nowrap;
        }

        /* ── Security ──────────────────────────────────── */
        .security {
            padding: 100px 0;
            background: var(--bg-hero);
        }

        .security__header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 64px;
        }

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

        .security__card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            transition: all 0.2s ease;
        }

        .security__card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .security__card-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-md);
            margin-bottom: 20px;
        }

        .security__card-icon svg {
            width: 24px;
            height: 24px;
        }

        .security__card-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .security__card-desc {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        /* ── Sectors ───────────────────────────────────── */
        .sectors {
            padding: 120px 0;
        }

        .sectors__header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 64px;
        }

        .sectors__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding-bottom: 8px;
        }

        @media (min-width: 769px) {
            .sectors__grid.swiper,
            .pricing__grid.swiper {
                overflow: visible;
            }
            .sectors__grid .swiper-wrapper {
                display: contents;
            }
            .pricing__grid .swiper-wrapper {
                display: contents;
            }
            .sectors__pagination,
            .pricing__pagination {
                display: none;
            }
        }

        .sector-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            aspect-ratio: 3 / 4;
            background: var(--text);
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .sector-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .sector-card__bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0.45;
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .sector-card:hover .sector-card__bg {
            opacity: 0.55;
            transform: scale(1.05);
        }

        .sector-card__content {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
            padding: 28px;
            color: #fff;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
        }

        .sector-card__icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            margin-bottom: 16px;
        }

        .sector-card__icon svg {
            width: 22px;
            height: 22px;
        }

        .sector-card__title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .sector-card__desc {
            font-size: 14px;
            line-height: 1.6;
            opacity: 0.8;
        }

        .sector-card--legal .sector-card__bg {
            background-image: url('/images/sectors/legal-hero.jpg');
        }
        .sector-card--trade .sector-card__bg {
            background-image: url('/images/sectors/trade-hero.jpg');
        }
        .sector-card--engineering .sector-card__bg {
            background-image: url('/images/sectors/engineering-hero.jpg');
        }
        .sector-card--construction .sector-card__bg {
            background-image: url('/images/sectors/construction-hero.jpg');
        }

        /* ── Pricing ───────────────────────────────────── */
        .pricing {
            padding: 120px 0;
            background: var(--bg-hero);
        }

        .pricing__header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 64px;
        }

        .pricing__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
            padding: 16px 0 8px;
        }


        .pricing-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            position: relative;
            transition: all 0.2s ease;
        }

        .pricing-card:hover {
            box-shadow: var(--shadow-md);
        }

        .pricing-card--featured {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: scale(1.02);
        }

        .pricing-card--featured:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card__popular {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            padding: 4px 16px;
            background: var(--primary);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            border-radius: 100px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .pricing-card__name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }

        .pricing-card__price {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 4px;
        }

        .pricing-card__currency {
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
        }

        .pricing-card__amount {
            font-size: 52px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.03em;
            color: var(--text);
        }

        .pricing-card__period {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .pricing-card__features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 32px;
        }

        .pricing-card__feature {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .pricing-card__check {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--success-bg);
            color: var(--accent-green);
            flex-shrink: 0;
        }

        .pricing-card__check svg {
            width: 12px;
            height: 12px;
        }

        .pricing-card .btn {
            width: 100%;
        }

        /* ── FAQs ──────────────────────────────────────── */
        .faqs {
            padding: 120px 0;
        }

        .faqs__header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 64px;
        }

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

        .faq-item {
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all 0.2s ease;
        }

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

        .faq-item summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            list-style: none;
            user-select: none;
            transition: background 0.15s ease;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary:hover {
            background: var(--surface-soft);
        }

        .faq-item summary::after {
            content: '';
            width: 20px;
            height: 20px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238D9BBF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            flex-shrink: 0;
            transition: transform 0.2s ease;
        }

        .faq-item[open] summary::after {
            transform: rotate(180deg);
        }

        .faq-item__answer {
            padding: 0 24px 20px;
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        /* ── CTA ───────────────────────────────────────── */
        .cta {
            padding: 120px 0;
            background: var(--text);
            position: relative;
            overflow: hidden;
        }

        .cta__bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #1a1f3a 0%, #111827 50%, #0f1629 100%);
        }

        .cta__orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
        }

        .cta__orb--1 {
            width: 400px;
            height: 400px;
            background: var(--primary);
            opacity: 0.1;
            top: -100px;
            right: -50px;
        }

        .cta__orb--2 {
            width: 300px;
            height: 300px;
            background: var(--accent-purple);
            opacity: 0.08;
            bottom: -80px;
            left: -30px;
        }

        .cta__content {
            position: relative;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .cta__title {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: #fff;
            margin-bottom: 20px;
        }

        .cta__subtitle {
            font-size: 17px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 40px;
        }

        .cta__actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cta .btn--primary {
            background: #fff;
            color: var(--text);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
        }

        .cta .btn--primary:hover {
            background: #f0f0f0;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .cta .btn--secondary {
            background: transparent;
            color: rgba(255, 255, 255, 0.9);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .cta .btn--secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.35);
            color: #fff;
        }

        /* ── Footer ────────────────────────────────────── */
        .footer {
            padding: 64px 0 32px;
            background: #0B0E18;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer__brand {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer__logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 800;
            color: #fff;
        }

        .footer__logo svg {
            width: 28px;
            height: 28px;
        }

        .footer__tagline {
            font-size: 14px;
            line-height: 1.7;
            max-width: 280px;
        }

        .footer__heading {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 20px;
        }

        .footer__links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer__link {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            transition: color 0.15s ease;
            cursor: pointer;
        }

        .footer__link:hover {
            color: #fff;
        }

        .footer__bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
        }

        /* ── Responsive ────────────────────────────────── */
        @media (max-width: 1024px) {
            .feature {
                gap: 48px;
            }

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

            .sector-card {
                aspect-ratio: 4 / 3;
            }

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

        @media (max-width: 768px) {
            :root {
                --nav-height: 64px;
            }

            .nav__links {
                display: none;
            }

            .nav__actions .btn {
                display: none;
            }

            .nav__mobile-toggle {
                display: flex;
            }

            .nav__mobile-menu {
                position: fixed;
                top: var(--nav-height);
                left: 0;
                right: 0;
                bottom: 0;
                background: #FFFFFF;
                padding: 24px;
                flex-direction: column;
                gap: 8px;
                z-index: 999;
                opacity: 0;
                transform: translateY(-16px);
                visibility: hidden;
                pointer-events: none;
                transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                            opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                            visibility 0.35s;
            }

            .nav__mobile-menu.is-open {
                display: flex;
                opacity: 1;
                transform: translateY(0);
                visibility: visible;
                pointer-events: auto;
            }

            .nav__mobile-menu a {
                display: flex;
                align-items: center;
                height: 48px;
                padding: 0 16px;
                font-size: 16px;
                font-weight: 500;
                color: var(--text);
                border-radius: var(--radius-sm);
            }

            .nav__mobile-menu a.btn--primary {
                color: #fff;
                justify-content: center;
            }

            .nav__mobile-menu a:hover {
                background: var(--surface-soft);
            }

            .hero {
                padding: calc(var(--nav-height) + 48px) 0 64px;
            }

            .hero__title {
                font-size: 36px;
            }

            .hero__subtitle {
                font-size: 16px;
            }

            .hero__screenshot {
                margin-top: 48px;
            }

            .trust-bar {
                padding: 48px 0 0;
            }

            .trust-bar__sectors {
                gap: 24px;
            }

            .features {
                padding: 80px 0;
            }

            .feature {
                grid-template-columns: 1fr;
                gap: 32px;
                padding: 40px 0;
            }

            .feature:nth-child(even) .feature__visual {
                order: 0;
            }

            .security {
                padding: 80px 0;
            }

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

            .sectors {
                padding: 80px 0;
            }

            .sectors__grid {
                display: block;
                overflow: clip visible;
                padding-bottom: 8px;
            }

            .sector-card {
                aspect-ratio: 3 / 4;
            }

            .sectors__pagination,
            .pricing__pagination {
                position: relative;
                bottom: auto;
                display: flex;
                justify-content: center;
                margin-top: 32px;
            }

            .sectors__pagination .swiper-pagination-bullet,
            .pricing__pagination .swiper-pagination-bullet {
                width: 8px;
                height: 8px;
                background: var(--line-strong);
                opacity: 0.4;
                border-radius: 50%;
                margin: 0 4px;
                transition: opacity 0.2s ease, background 0.2s ease;
            }

            .sectors__pagination .swiper-pagination-bullet-active,
            .pricing__pagination .swiper-pagination-bullet-active {
                opacity: 1;
                background: var(--primary);
            }

            .pricing {
                padding: 80px 0;
            }

            .pricing__grid {
                display: block;
                overflow: clip visible;
                max-width: none;
                padding: 16px 0 8px;
            }

            .pricing-card--featured {
                transform: none;
            }

            .pricing-card--featured:hover {
                transform: none;
            }

            .pricing-card {
                height: auto;
            }

            .faqs {
                padding: 80px 0;
            }

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

            .cta {
                padding: 80px 0;
            }

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

            .footer__bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero__actions {
                flex-direction: column;
                width: 100%;
            }

            .hero__actions .btn {
                width: 100%;
            }

            .cta__actions {
                flex-direction: column;
                width: 100%;
            }

            .cta__actions .btn {
                width: 100%;
            }
        }

        /* ── Reduced Motion ────────────────────────────── */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }

            html {
                scroll-behavior: auto;
            }
        }

        /* ── Scroll animations ─────────────────────────── */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

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

        /* ── Parallax ──────────────────────────────────── */
        .parallax-layer {
            will-change: transform, opacity;
        }

        .hero__screenshot {
            position: sticky;
            top: 12vh;
            z-index: 1;
        }

        .hero__screenshot-wrapper {
            position: relative;
            padding-bottom: 30vh;
        }

        .features {
            position: relative;
            z-index: 2;
            background: var(--surface);
        }

        .security {
            position: relative;
            z-index: 2;
        }

        .sectors {
            position: relative;
            z-index: 2;
            background: var(--surface);
        }

        .pricing {
            position: relative;
            z-index: 2;
        }

        .pricing__grid {
            perspective: 1200px;
        }

        .sector-card {
            transform-origin: center bottom;
        }

        @media (prefers-reduced-motion: reduce) {
            .parallax-layer {
                will-change: auto !important;
            }

            .hero__screenshot {
                position: relative;
                top: auto;
            }

            .hero__screenshot-wrapper {
                padding-bottom: 0;
            }
        }

        @media (max-width: 768px) {
            .hero__screenshot {
                position: relative;
                top: auto;
            }

            .hero__screenshot-wrapper {
                padding-bottom: 0;
            }
        }

        /* ── Page Header (inner pages) ────────────────── */
        .page-header {
            padding: calc(var(--nav-height) + 80px) 0 64px;
            background: var(--bg-hero);
            text-align: center;
        }

        .page-header__title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: var(--text);
            margin-bottom: 16px;
        }

        .page-header__subtitle {
            font-size: 17px;
            line-height: 1.7;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ── Forms ─────────────────────────────────────── */
        .form-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            box-shadow: var(--shadow-md);
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }

        .form-control {
            display: block;
            width: 100%;
            height: 48px;
            padding: 0 16px;
            font-family: inherit;
            font-size: 15px;
            color: var(--text);
            background: var(--surface-soft);
            border: 1px solid var(--line);
            border-radius: var(--radius-sm);
            transition: border-color 0.15s ease, box-shadow 0.15s ease;
            outline: none;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-glow);
        }

        .form-control::placeholder {
            color: var(--text-muted);
        }

        textarea.form-control {
            height: auto;
            padding: 14px 16px;
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

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

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

        .btn--block {
            width: 100%;
        }

        /* ── Alerts ────────────────────────────────────── */
        .alert {
            padding: 14px 20px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .alert--error {
            background: #FFF1F1;
            color: var(--accent-red);
            border: 1px solid rgba(240, 92, 92, 0.2);
        }

        .alert--success {
            background: var(--success-bg);
            color: var(--accent-green);
            border: 1px solid rgba(44, 191, 140, 0.2);
        }

        /* ── Thanks Page ───────────────────────────────── */
        .thanks {
            padding: calc(var(--nav-height) + 120px) 0 120px;
            text-align: center;
        }

        .thanks__icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--success-bg);
            color: var(--accent-green);
            margin: 0 auto 32px;
        }

        .thanks__icon svg {
            width: 36px;
            height: 36px;
        }

        .thanks__title {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
        }

        .thanks__message {
            font-size: 17px;
            line-height: 1.7;
            color: var(--text-secondary);
            max-width: 500px;
            margin: 0 auto 40px;
        }

        /* ── Sector Detail Pages ───────────────────────── */
        .sector-hero {
            padding: calc(var(--nav-height) + 80px) 0 0;
            background: var(--bg-hero);
        }

        .sector-hero__image {
            width: 100%;
            height: 320px;
            object-fit: cover;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            margin-top: 48px;
        }

        .sector-content {
            padding: 80px 0;
        }

        .sector-content__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: start;
        }

        .sector-content__text h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
        }

        .sector-content__text p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .sector-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .sector-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: var(--text-secondary);
        }

        .sector-features li svg {
            width: 20px;
            height: 20px;
            color: var(--accent-green);
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .sector-content__grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .sector-hero__image {
                height: 200px;
            }
        }

        /* ── Sector Stats ─────────────────────────────── */
        .sector-stats {
            padding: 64px 0;
            background: var(--surface-soft);
        }

        .sector-stats__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            text-align: center;
        }

        .sector-stats__number {
            display: block;
            font-size: 48px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 8px;
        }

        .sector-stats__label {
            font-size: 15px;
            color: var(--text-secondary);
        }

        @media (max-width: 768px) {
            .sector-stats__grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .sector-stats__number {
                font-size: 36px;
            }
        }

        /* ── Sector Detail ────────────────────────────── */
        .sector-detail {
            padding: 80px 0;
        }

        .sector-detail__header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 48px;
        }

        .sector-detail__header h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
        }

        .sector-detail__header p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

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

        .sector-detail__card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 32px;
        }

        .sector-detail__card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }

        .sector-detail__card p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

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

            .sector-detail__header h2 {
                font-size: 26px;
            }
        }

        /* ── Sector How It Works ──────────────────────── */
        .sector-how-it-works {
            padding: 80px 0;
            background: var(--surface-soft);
        }

        .sector-how-it-works__header {
            text-align: center;
            margin-bottom: 48px;
        }

        .sector-how-it-works__header h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--text);
        }

        .sector-how-it-works__steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .sector-how-it-works__step {
            text-align: center;
        }

        .sector-how-it-works__number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: #FFFFFF;
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .sector-how-it-works__step h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }

        .sector-how-it-works__step p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        @media (max-width: 768px) {
            .sector-how-it-works__steps {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .sector-how-it-works__header h2 {
                font-size: 26px;
            }
        }

        /* ── Sectors Index Grid ────────────────────────── */
        .sectors-index__grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            padding: 80px 0;
        }

        .sectors-index__card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 16 / 9;
            background: var(--text);
            transition: all 0.3s ease;
            display: block;
        }

        .sectors-index__card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .sectors-index__card-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0.45;
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .sectors-index__card:hover .sectors-index__card-bg {
            opacity: 0.55;
            transform: scale(1.05);
        }

        .sectors-index__card-content {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
            padding: 32px;
            color: #fff;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
        }

        .sectors-index__card-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .sectors-index__card-desc {
            font-size: 15px;
            line-height: 1.6;
            opacity: 0.8;
        }

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

        /* ── Login / Auth Pages ────────────────────────── */
        .auth-page {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-hero);
            padding: 40px 24px;
        }

        .auth-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            box-shadow: var(--shadow-md);
            width: 100%;
            max-width: 440px;
        }

        .auth-card__logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 24px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 8px;
        }

        .auth-card__logo svg {
            width: 38px;
            height: 38px;
        }

        .auth-card__subtitle {
            text-align: center;
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        .auth-card__footer {
            text-align: center;
            margin-top: 24px;
            font-size: 14px;
            color: var(--text-muted);
        }

        .auth-card__footer a {
            color: var(--primary);
            font-weight: 500;
        }

        .auth-card__footer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 480px) {
            .auth-card {
                padding: 32px 24px;
            }
        }

        /* ── Support Page ──────────────────────────────── */
        .support-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            padding: 80px 0;
        }

        .support-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            text-align: center;
            transition: all 0.2s ease;
        }

        .support-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .support-card__icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-md);
            margin: 0 auto 20px;
        }

        .support-card__icon svg {
            width: 26px;
            height: 26px;
        }

        .support-card__title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .support-card__desc {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

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

        /* ── Careers Page ──────────────────────────────── */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            padding: 80px 0;
        }

        .benefit-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            transition: all 0.2s ease;
        }

        .benefit-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .benefit-card__icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-md);
            margin-bottom: 20px;
        }

        .benefit-card__icon svg {
            width: 24px;
            height: 24px;
        }

        .benefit-card__title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .benefit-card__desc {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

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