@charset "UTF-8";
/* CSS Document */

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0c0e;
            color: #cdd0d5;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* ── Navigation ── */
        nav {
            background: rgba(11, 12, 14, 0.85);
            padding: 0.75rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .nav-container {
            max-width: 1180px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            position: relative;
        }

        .logo { display: flex; align-items: center; }
        .logo img { height: 32px; }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-links a {
            color: #6b707a;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.88rem;
            transition: color 0.2s;
            letter-spacing: 0.01em;
        }
        .nav-links a:hover { color: #c8ccd3; }

        .nav-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.02);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            gap: 5px;
            flex-direction: column;
        }

        .nav-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            border-radius: 2px;
            background: #c8ccd3;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .nav-toggle.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .nav-toggle.open span:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .btn-login {
            background: #0d9add;
            padding: 0.4rem 1.15rem;
            border-radius: 5px;
            color: #fff !important;
            font-weight: 600;
            font-size: 0.86rem;
            transition: background 0.2s;
        }
        .btn-login:hover { background: #0b87c5; }

        .btn-signup {
            background: linear-gradient(135deg, #ff9b2f 0%, #ff7a00 100%);
            border: 1px solid rgba(255,153,51,0.9);
            padding: 0.42rem 1.05rem;
            border-radius: 5px;
            color: #fff !important;
            font-weight: 700;
            font-size: 0.86rem;
            box-shadow: 0 4px 14px rgba(255,122,0,0.35);
            transition: all 0.2s ease;
        }
        .btn-signup:hover {
            color: #fff !important;
            border-color: rgba(255,176,86,1);
            background: linear-gradient(135deg, #ffad4f 0%, #ff8a1f 100%);
            box-shadow: 0 6px 18px rgba(255,138,31,0.45);
            transform: translateY(-1px);
        }

        /* ── Buttons ── */
        .btn-primary, .btn-secondary {
            display: inline-block;
            padding: 0.8rem 1.85rem;
            border-radius: 7px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s ease;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }
        .btn-primary {
            background: #0d9add;
            color: #fff;
            box-shadow: 0 1px 2px rgba(0,0,0,0.2), 0 0 0 1px rgba(13,154,221,0.15);
        }
        .btn-primary:hover {
            background: #0baae8;
            box-shadow: 0 4px 16px rgba(13,154,221,0.25), 0 0 0 1px rgba(13,154,221,0.3);
        }

        .btn-secondary {
            background: transparent;
            color: #8a8e98;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .btn-secondary:hover {
            color: #c8ccd3;
            border-color: rgba(255,255,255,0.22);
            background: rgba(255,255,255,0.03);
        }

        .btn-primary-large {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: #0d9add;
            color: #fff;
            text-decoration: none;
            border-radius: 7px;
            font-size: 1.05rem;
            font-weight: 700;
            transition: all 0.25s ease;
            font-family: inherit;
            box-shadow: 0 1px 2px rgba(0,0,0,0.2), 0 0 0 1px rgba(13,154,221,0.15);
        }
        .btn-primary-large:hover {
            background: #0baae8;
            box-shadow: 0 6px 24px rgba(13,154,221,0.3), 0 0 0 1px rgba(13,154,221,0.3);
        }

        /* ── Hero ── */
        .hero {
            padding: 136px 2rem 0;
            max-width: 1180px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            color: #0d9add;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            background: rgba(13,154,221,0.06);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            border: 1px solid rgba(13,154,221,0.12);
        }

		.hero-eyebrow a {
            color: #0d9add;
            
        }
        .hero h1 {
            font-size: 3.75rem;
            font-weight: 800;
            color: #f0f1f3;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.035em;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero h1 .hero-gradient {
            background: linear-gradient(135deg, #0d9add 0%, #5fc3f0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p.lead {
            font-size: 1.18rem;
            color: #6b707a;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            max-width: 580px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta {
            display: flex;
            gap: 0.85rem;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }

        .hero-promo-banner {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.6rem 1.2rem;
            background: #ff6a00;
            color: #fff;
            font-size: 0.88rem;
            border-radius: 6px;
            text-align: center;
            line-height: 1.5;
        }

        .hero-note {
            display: block;
            font-size: 0.8rem;
            color: #3e424b;
            margin-top: 1rem;
            width: 100%;
            text-align: center;
        }

        .hero-screenshot {
            margin-top: 4.5rem;
            position: relative;
        }

        .hero-screenshot::before {
            content: '';
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 70%;
            height: 200px;
            background: radial-gradient(ellipse, rgba(13,154,221,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-screenshot img,
        .hero-screenshot video {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
            display: block;
        }

        .hero-screenshot video {
            aspect-ratio: 16 / 9;
            object-fit: cover;
            object-position: center;
        }

        /* ── Trust / Credibility ── */
        .trust-section {
            padding: 80px 2rem;
            border-top: 1px solid rgba(255,255,255,0.04);
        }

        .trust-section-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .trust-section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.72rem;
            font-weight: 600;
            color: #0d9add;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .trust-section h2 {
            font-size: 1.75rem;
            font-weight: 800;
            color: #e8eaed;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .trust-section p {
            color: #5e6370;
            font-size: 0.98rem;
            line-height: 1.75;
            max-width: 680px;
            margin: 0 auto 2.5rem;
        }

        .trust-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .trust-stat {
            text-align: center;
        }

        .trust-stat .stat-num {
            font-size: 2rem;
            font-weight: 800;
            color: #e8eaed;
            letter-spacing: -0.02em;
        }

        .trust-stat .stat-label {
            font-size: 0.8rem;
            color: #4e535d;
            margin-top: 0.2rem;
            letter-spacing: 0.02em;
        }

        /* ── Section basics ── */
        .section-label {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 600;
            color: #0d9add;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }

        .section-title {
            font-size: 2.1rem;
            font-weight: 800;
            color: #e8eaed;
            letter-spacing: -0.025em;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1rem;
            color: #5e6370;
            margin-top: 0.6rem;
            margin-bottom: 3.5rem;
            line-height: 1.65;
        }

        /* ── Workflow (Design → Simulate → Present) ── */
        .workflow {
            padding: 80px 2rem;
            background: #0f1012;
        }

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

        .workflow-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .workflow-header .section-subtitle {
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

        .workflow-steps {
            display: flex;
            gap: 1.5rem;
        }

        .workflow-step {
            flex: 1;
            position: relative;
            padding: 2rem;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.04);
            border-radius: 10px;
            transition: border-color 0.3s, background 0.3s;
        }
        .workflow-step:hover {
            border-color: rgba(13,154,221,0.15);
            background: rgba(13,154,221,0.02);
        }

        .workflow-step-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 72px;
            height: 72px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(13,154,221,0.18) 0%, rgba(0,234,169,0.1) 100%);
            border: 1px solid rgba(13,154,221,0.2);
            margin-bottom: 1.5rem;
            transition: background 0.3s, border-color 0.3s;
        }
        .workflow-step:hover .workflow-step-icon {
            background: linear-gradient(135deg, rgba(13,154,221,0.28) 0%, rgba(0,234,169,0.16) 100%);
            border-color: rgba(13,154,221,0.35);
        }
        .workflow-step-icon i {
            font-size: 2.2rem;
            background: linear-gradient(135deg, #0d9add 0%, #00eaa9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .workflow-step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            border-radius: 6px;
            background: rgba(13,154,221,0.1);
            color: #0d9add;
            font-weight: 700;
            font-size: 0.72rem;
            margin-bottom: 0.75rem;
        }

        .workflow-step h3 {
            font-size: 1.1rem;
            color: #d4d7dc;
            margin-bottom: 0.6rem;
            font-weight: 700;
        }

        .workflow-step p {
            color: #5e6370;
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* ── Professional Value ── */
        .value-section {
            padding: 80px 2rem;
        }

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

        .value-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .value-header .section-subtitle {
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        .value-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .value-card {
            padding: 2rem;
            background: rgba(255,255,255,0.02);
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.04);
            transition: border-color 0.3s;
        }
        .value-card:hover { border-color: rgba(255,255,255,0.08); }

        .value-card-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(13,154,221,0.07);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }
        .value-card-icon i {
            font-size: 1.2rem;
            color: #0d9add;
        }

        .value-card h3 {
            font-size: 1.05rem;
            color: #d4d7dc;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .value-card p {
            color: #5e6370;
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* ── Capabilities (features — asymmetric layout) ── */
        .capabilities {
            padding: 80px 2rem;
            background: #0f1012;
        }

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

        .capabilities-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .capabilities-header .section-subtitle {
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cap-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3.5rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .cap-row.reverse { direction: rtl; }
        .cap-row.reverse > * { direction: ltr; }

        .cap-visual {
            border-radius: 10px;
            overflow: hidden;
            background: #141517;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .cap-visual img {
            width: 100%;
            display: block;
        }

        .cap-detail h3 {
            font-size: 1.35rem;
            color: #e0e2e6;
            margin-bottom: 0.75rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .cap-detail p {
            color: #5e6370;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0.6rem;
        }

        .cap-detail .cap-tags {
            display: flex;
            gap: 0.4rem;
            flex-wrap: wrap;
            margin-top: 1.1rem;
        }

        .cap-tag {
            display: inline-block;
            padding: 0.25rem 0.6rem;
            background: rgba(255,255,255,0.04);
            border-radius: 4px;
            font-size: 0.78rem;
            color: #5e6370;
            font-weight: 500;
        }

        /* ── Feature grid (compact) ── */
        .features-compact {
            padding: 64px 2rem 80px;
        }

        .features-compact-container {
            max-width: 1180px;
            margin: 0 auto;
        }

        .features-compact-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .features-compact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        .capabilities-toolbox-header {
            margin-top: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .capabilities-toolbox-grid {
            margin-bottom: 3rem;
        }

        .capabilities-toolbox-grid .fc-card {
            border: 1px solid rgba(13,154,221,0.22);
        }

        .capabilities-toolbox-grid .fc-card:hover {
            border-color: rgba(13,154,221,0.4);
        }

        .fc-card-image-wrap {
            position: relative;
        }

        .fc-card-image {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 0.85rem;
            border: 1px solid rgba(255,255,255,0.08);
        }

        .fc-card-image-preview {
            position: absolute;
            left: 50%;
            bottom: calc(100% + 0.75rem);
            transform: translateX(-50%) scale(0.95);
            width: min(560px, 72vw);
            max-height: 380px;
            object-fit: contain;
            background: #0f1012;
            border: 1px solid rgba(255,255,255,0.16);
            border-radius: 10px;
            box-shadow: 0 18px 45px rgba(0,0,0,0.45);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease;
            z-index: 10;
            padding: 0.3rem;
        }

        .fc-card-image-wrap:hover .fc-card-image-preview {
            opacity: 1;
            transform: translateX(-50%) scale(1);
        }


        .fc-card {
            padding: 1.5rem;
            background: rgba(255,255,255,0.02);
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.04);
            transition: border-color 0.3s;
            overflow: visible;
            position: relative;
        }
        .fc-card:hover {
            border-color: rgba(255,255,255,0.08);
        }

        .fc-card i {
            font-size: 1.25rem;
            color: #3d8abf;
            margin-bottom: 0.75rem;
            display: block;
        }

        .fc-card h4 {
            font-size: 0.9rem;
            color: #b8bcc3;
            font-weight: 600;
            margin-bottom: 0.35rem;
        }

        .fc-card p {
            font-size: 0.82rem;
            color: #4e535d;
            line-height: 1.55;
        }

        /* ── Use cases (Who It's For) ── */
        .use-cases-section {
            padding: 80px 2rem;
            background: #0f1012;
        }

        .use-cases-container {
            max-width: 1180px;
            margin: 0 auto;
        }

        .use-cases-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .use-cases-header .section-subtitle {
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }

        .uc-card {
            padding: 1.75rem;
            background: rgba(255,255,255,0.02);
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.04);
            transition: border-color 0.3s;
        }
        .uc-card:hover {
            border-color: rgba(255,255,255,0.08);
        }

        .uc-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(13,154,221,0.07);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .uc-icon i {
            font-size: 1.15rem;
            color: #0d9add;
        }

        .uc-card h4 {
            font-size: 0.98rem;
            color: #c0c4cb;
            font-weight: 600;
            margin-bottom: 0.35rem;
        }

        .uc-card p {
            color: #5a5f6a;
            font-size: 0.88rem;
            line-height: 1.65;
        }

        /* ── Pricing / Free vs Pro ── */
        .pricing {
            padding: 80px 2rem;
        }

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

        .pricing-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .pricing-header .section-subtitle {
            max-width: 440px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-trigger {
            text-align: center;
            margin-bottom: 3rem;
        }

        .pricing-trigger p {
            display: inline-block;
            color: #5e6370;
            font-size: 0.88rem;
            background: rgba(255,255,255,0.03);
            padding: 0.6rem 1.25rem;
            border-radius: 6px;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .pricing-trigger p em {
            color: #0d9add;
            font-style: normal;
            font-weight: 600;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }

        .pricing-card {
            background: rgba(255,255,255,0.02);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.05);
            position: relative;
        }

        .pricing-card.featured {
            border-color: rgba(13,154,221,0.45);
            background: rgba(13,154,221,0.03);
        }

        .pricing-badge {
            display: inline-block;
            background: rgba(13,154,221,0.1);
            color: #0d9add;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .pricing-card h3 {
            font-size: 1.15rem;
            color: #d4d7dc;
            margin-bottom: 0.35rem;
            font-weight: 700;
        }

        .pricing-price {
            font-size: 2.25rem;
            font-weight: 800;
            color: #e8eaed;
            margin-bottom: 0.2rem;
            letter-spacing: -0.02em;
        }
        .pricing-price span {
            font-size: 0.85rem;
            font-weight: 400;
            color: #4e535d;
        }

        .pricing-description {
            color: #4e535d;
            font-size: 0.88rem;
            margin-bottom: 1.5rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        .pricing-features li {
            padding: 0.3rem 0;
            color: #8a8e98;
            font-size: 0.88rem;
        }
        .pricing-features li::before {
            content: '\2713';
            color: #0d9add;
            margin-right: 0.5rem;
            font-weight: 600;
        }
        .pricing-features li.unavailable { color: #383c44; }
        .pricing-features li.unavailable::before {
            content: '\2014';
            color: #383c44;
        }

        .pricing-cta {
            display: block;
            text-align: center;
            padding: 0.75rem;
            border-radius: 7px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.88rem;
            transition: all 0.25s ease;
            background: rgba(255,255,255,0.05);
            color: #8a8e98;
            border: none;
        }
        .pricing-cta:hover {
            background: rgba(255,255,255,0.08);
            color: #c0c4cb;
        }

        .pricing-card.featured .pricing-cta {
            background: #0d9add;
            color: #fff;
        }
        .pricing-card.featured .pricing-cta:hover {
            background: #0baae8;
        }

        /* ── Final CTA ── */
        .final-cta {
            padding: 100px 2rem;
            text-align: center;
            background: #0f1012;
            border-top: 1px solid rgba(255,255,255,0.04);
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 300px;
            background: radial-gradient(ellipse, rgba(13,154,221,0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .final-cta-container {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }

        .final-cta h2 {
            font-size: 2.25rem;
            font-weight: 800;
            color: #e8eaed;
            margin-bottom: 0.75rem;
            letter-spacing: -0.025em;
        }

        .final-cta p {
            font-size: 1.05rem;
            color: #5e6370;
            margin-bottom: 2rem;
            line-height: 1.65;
        }

        .final-cta-note {
            margin-top: 0.85rem;
            color: #3a3d44;
            font-size: 0.82rem;
        }

        /* ── Footer ── */
        footer {
            padding: 3rem 2rem 2.5rem;
            border-top: 1px solid rgba(255,255,255,0.04);
        }

        .footer-container {
            max-width: 1180px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-brand img {
            height: 24px;
            margin-bottom: 0.75rem;
            opacity: 0.5;
        }

        .footer-brand p {
            font-size: 0.8rem;
            color: #3a3d44;
            line-height: 1.6;
        }

        .footer-right {
            text-align: right;
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #484c55;
            text-decoration: none;
            font-size: 0.84rem;
            transition: color 0.2s;
        }
        .footer-links a:hover { color: #8a8e98; }

        .copyright {
            color: #2c2f36;
            font-size: 0.78rem;
        }

        .footer-imprint {
            width: 100%;
            border-top: 1px solid rgba(255,255,255,0.03);
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-between;
            align-items: flex-start;
        }

        .footer-imprint-block {
            font-size: 0.78rem;
            color: #2c2f36;
            line-height: 1.7;
        }

        .footer-imprint-block strong {
            display: block;
            color: #3a3d44;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.35rem;
        }

        .footer-imprint-block a {
            color: #484c55;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-imprint-block a:hover { color: #8a8e98; }

        .footer-disclaimer {
            width: 100%;
            border-top: 1px solid rgba(255,255,255,0.03);
            margin-top: 1.25rem;
            padding-top: 1.25rem;
            font-size: 0.73rem;
            color: #2c2f36;
            line-height: 1.65;
        }
        .footer-disclaimer strong {
            color: #3a3d44;
        }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .nav-toggle {
                display: inline-flex;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: calc(100% + 0.5rem);
                right: 2rem;
                left: 2rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.9rem;
                padding: 1rem;
                border: 1px solid rgba(255,255,255,0.08);
                border-radius: 10px;
                background: rgba(11, 12, 14, 0.97);
                box-shadow: 0 18px 40px rgba(0,0,0,0.45);
            }

            .nav-links.open {
                display: flex;
            }

            .hero { padding-top: 104px; }
            .hero h1 { font-size: 2.5rem; }
            .hero-eyebrow { font-size: 0.72rem; }
            .workflow-steps { flex-direction: column; }
            .value-grid { grid-template-columns: 1fr; }
            .cap-row, .cap-row.reverse {
                grid-template-columns: 1fr;
                direction: ltr;
                gap: 2rem;
            }
            .features-compact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .use-cases-grid {
                grid-template-columns: 1fr;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 380px;
                margin-left: auto;
                margin-right: auto;
            }
            .section-title { font-size: 1.6rem; }
            .final-cta h2 { font-size: 1.7rem; }
            .trust-stats { gap: 2.5rem; }
            .footer-container { flex-direction: column; }
            .footer-right { text-align: left; }
        }

        @media (max-width: 600px) {
            .features-compact-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 { font-size: 2rem; }
            .trust-stats { gap: 2rem; }
            .nav-links { gap: 1rem; }
        }
