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

        body {
            background: #000000;
            color: #f5f5f7;
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            overflow-x: hidden;
        }

        /* Progress indicator */
        .scroll-progress {
            position: fixed;
            top: 44px;
            left: 0;
            width: 0%;
            height: 2px;
            background: linear-gradient(90deg, #3478f7, #5856D6, #FF375F);
            z-index: 1001;
            transition: width 0.1s ease-out;
        }


        @keyframes shine {
            0% {
                left: -100%;
            }
            50%, 100% {
                left: 100%;
            }
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(0);
                opacity: 1;
            }
            to {
                transform: translateY(-100%);
                opacity: 0;
            }
        }

        .survey-banner {
            position: fixed;
            top: 44px;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, rgba(52, 120, 247, 0.95), rgba(88, 86, 214, 0.95), rgba(255, 55, 95, 0.95));
            backdrop-filter: blur(20px);
            padding: 16px 20px;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            animation: slideDown 0.5s ease-out forwards;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .survey-banner.hiding {
            animation: slideUp 0.5s ease-out forwards;
        }

        .survey-banner-text {
            color: #ffffff;
            font-size: 15px;
            font-weight: 500;
            text-align: center;
        }

        .survey-banner-button {
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            padding: 8px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.2s;
            border: 1px solid rgba(255, 255, 255, 0.4);
            white-space: nowrap;
        }

        .survey-banner-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        .survey-banner-close {
            position: absolute;
            right: 20px;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 24px;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
            outline: none;
        }

        .survey-banner-close:hover {
            transform: scale(1.2);
        }

        .survey-banner-close:focus {
            outline: none;
        }

        @media (max-width: 768px) {
            .survey-banner {
                flex-direction: column;
                gap: 12px;
                padding: 12px 50px 12px 20px;
            }

            .survey-banner-text {
                font-size: 14px;
            }

            .survey-banner-close {
                top: 12px;
                right: 12px;
            }

            #videoPlayButton {
                display: none !important;
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 20px 60px;
            position: relative;
        }

        .hero-title {
            font-size: clamp(48px, 8vw, 96px);
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -0.015em;
            margin-bottom: 20px;
            background: linear-gradient(180deg, #f5f5f7 0%, rgba(245, 245, 247, 0.6) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(21px, 3vw, 28px);
            line-height: 1.4;
            font-weight: 400;
            color: rgba(245, 245, 247, 0.7);
            max-width: 680px;
            margin: 0 auto 40px;
        }

        .hero-subtitle .spotlight {
            position: relative;
            display: inline-block;
            color: #f5f5f7;
            font-weight: 600;
            min-width: 200px;
            text-align: center;
        }

        .hero-subtitle .spotlight span {
            display: inline-block;
            animation: spotlightPulse 3s ease-in-out infinite, textRotate 6s ease-in-out infinite;
        }

        .hero-subtitle .spotlight::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(52, 120, 247, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(20px);
            z-index: -1;
            animation: spotlightGlow 3s ease-in-out infinite;
        }

        @keyframes spotlightPulse {
            0%, 100% {
                text-shadow: 0 0 20px rgba(52, 120, 247, 0.6),
                             0 0 40px rgba(52, 120, 247, 0.4);
            }
            50% {
                text-shadow: 0 0 30px rgba(52, 120, 247, 0.8),
                             0 0 60px rgba(52, 120, 247, 0.6);
            }
        }

        @keyframes spotlightGlow {
            0%, 100% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1.2);
            }
        }

        @keyframes textRotate {
            0%, 3% {
                opacity: 0;
                transform: translateY(10px);
            }
            5%, 30% {
                opacity: 1;
                transform: translateY(0);
            }
            33%, 35% {
                opacity: 0;
                transform: translateY(-10px);
            }
            36%, 38% {
                opacity: 0;
                transform: translateY(10px);
            }
            40%, 63% {
                opacity: 1;
                transform: translateY(0);
            }
            66%, 68% {
                opacity: 0;
                transform: translateY(-10px);
            }
            69%, 71% {
                opacity: 0;
                transform: translateY(10px);
            }
            73%, 96% {
                opacity: 1;
                transform: translateY(0);
            }
            99%, 100% {
                opacity: 0;
                transform: translateY(-10px);
            }
        }

        .hero-tagline {
            font-size: clamp(17px, 2.5vw, 21px);
            line-height: 1.5;
            color: rgba(245, 245, 247, 0.85);
            max-width: 800px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        .cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 80px;
        }

        .cta-button {
            background: #3478f7;
            color: white;
            padding: 14px 28px;
            border-radius: 980px;
            text-decoration: none;
            font-size: 17px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: #2968e6;
            transform: scale(1.02);
        }

        .cta-button-secondary {
            background: transparent;
            border: 1px solid rgba(245, 245, 247, 0.3);
            color: #3478f7;
        }

        .cta-button-secondary:hover {
            background: rgba(52, 120, 247, 0.1);
            border-color: #3478f7;
        }

        /* Product showcase */
        .product-showcase {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px 100px;
            position: relative;
        }

        .product-image-container {
            position: relative;
            width: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 40px;
            opacity: 1;
            transform: translateY(0);
        }

        .product-image-container img {
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .product-image-main {
            width: 90%;
            max-width: 1200px;
            height: auto;
        }

        .product-image-secondary {
            width: 20%;
            max-width: 200px;
            height: auto;
            max-height: 100%;
            object-fit: contain;
        }

        /* Feature sections */
        .section {
            padding: 120px 20px;
            position: relative;
            overflow: hidden;
        }

        .section-content {
            max-width: 980px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .footer-cta {
            padding: 120px 20px;
        }

        .footer-cta-content {
            max-width: 980px;
            margin: 0 auto;
        }

        .section-content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-eyebrow {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: rgba(52, 120, 247, 0.8);
            margin-bottom: 16px;
            display: none;
        }

        .section-headline {
            font-size: clamp(40px, 6vw, 64px);
            font-weight: 700;
            line-height: 1.08;
            letter-spacing: -0.015em;
            margin-bottom: 24px;
            background: linear-gradient(180deg, #f5f5f7 0%, rgba(245, 245, 247, 0.7) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-body {
            font-size: clamp(19px, 2.5vw, 24px);
            line-height: 1.5;
            color: rgba(245, 245, 247, 0.7);
            margin-bottom: 40px;
        }

        /* Problem comparison grid */
        .comparison-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            margin-top: 60px;
            justify-content: center;
            align-items: flex-start;
        }

        .comparison-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            padding: 32px;
            backdrop-filter: blur(20px);
            transition: all 0.3s;
            flex: 1;
            min-width: 280px;
            max-width: 320px;
        }

        .comparison-card:nth-child(1) {
            transform: rotate(-1deg);
        }

        .comparison-card:nth-child(2) {
            transform: translateY(20px) rotate(0.5deg);
        }

        .comparison-card:nth-child(3) {
            transform: rotate(-0.5deg);
        }

        .comparison-card:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-8px) rotate(0deg) scale(1.02);
        }

        .comparison-card h4 {
            font-size: 21px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #f5f5f7;
        }

        .comparison-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 16px;
            display: block;
            object-fit: contain;
            filter: invert(1);
            opacity: 0.65;
        }

        .comparison-card-good {
            border-color: rgba(52, 199, 89, 0.3);
        }

        .comparison-card-good:hover {
            border-color: rgba(52, 199, 89, 0.5);
        }

        .comparison-card-bad {
            border-color: rgba(255, 59, 48, 0.3);
        }

        .comparison-card-bad:hover {
            border-color: rgba(255, 59, 48, 0.5);
        }

        .comparison-list {
            list-style: none;
            font-size: 17px;
            line-height: 1.6;
            color: rgba(245, 245, 247, 0.7);
        }

        .comparison-list li {
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
        }

        .comparison-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: rgba(52, 199, 89, 0.8);
            font-weight: 600;
        }

        .comparison-card-bad .comparison-list li::before {
            content: "×";
            color: rgba(255, 59, 48, 0.8);
        }

        .trust-question-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            padding: 120px 20px;
        }

        .trust-content {
            max-width: 980px;
            text-align: left;
        }

        .trust-headline {
            font-size: clamp(40px, 6vw, 64px);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(180deg, #FF375F 0%, rgba(255, 55, 95, 0.6) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .trust-list {
            text-align: left;
            margin: 40px auto;
            max-width: 600px;
        }

        .trust-list-item {
            font-size: 19px;
            line-height: 1.8;
            color: rgba(245, 245, 247, 0.7);
            padding: 8px 0;
            padding-left: 28px;
            position: relative;
        }

        .trust-list-item::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #3478f7;
            font-weight: 600;
        }

        .trust-question-big {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            line-height: 1.3;
            margin: 60px 0 40px;
            color: #f5f5f7;
        }

        .trust-pause {
            font-size: 19px;
            color: rgba(245, 245, 247, 0.5);
            font-style: italic;
            margin: 40px 0;
        }

        .thought-bubbles {
            margin-top: 60px;
            opacity: 0;
            animation: fadeIn 1s ease-out 2s forwards;
            display: flex;
            justify-content: center;
            perspective: 1200px;
        }

        .cube-container {
            width: 240px;
            height: 240px;
            position: relative;
            transform-style: preserve-3d;
            transform: rotateY(180deg);
            animation: rotateCube 12s infinite linear;
            animation-delay: 2.5s;
        }

        @keyframes rotateCube {
            0% { transform: rotateY(180deg); }
            25% { transform: rotateY(270deg); }
            50% { transform: rotateY(360deg); }
            75% { transform: rotateY(450deg); }
            100% { transform: rotateY(540deg); }
        }

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

        .thought-bubble {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 24px 20px;
            text-align: center;
            width: 240px;
            height: 240px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: absolute;
            backface-visibility: hidden;
        }

        .thought-bubble:nth-child(1) {
            transform: rotateY(0deg) translateZ(120px);
        }

        .thought-bubble:nth-child(2) {
            transform: rotateY(90deg) translateZ(120px);
        }

        .thought-bubble:nth-child(3) {
            transform: rotateY(180deg) translateZ(120px);
        }

        .thought-bubble:nth-child(4) {
            transform: rotateY(270deg) translateZ(120px);
        }

        .thought-bubble.wrong {
            border-color: rgba(255, 59, 48, 0.2);
            background: rgba(255, 59, 48, 0.04);
        }

        .thought-bubble.wrong:hover {
            border-color: rgba(255, 59, 48, 0.4);
            background: rgba(255, 59, 48, 0.08);
        }

        .thought-bubble.right {
            border-color: rgba(52, 199, 89, 0.5);
            background: rgba(52, 199, 89, 0.08);
            box-shadow: 0 0 40px rgba(52, 199, 89, 0.2);
        }

        .thought-persona {
            font-size: 15px;
            color: rgba(245, 245, 247, 0.5);
            margin-bottom: 8px;
        }

        .thought-answer {
            font-size: 17px;
            font-weight: 700;
            color: #f5f5f7;
            margin-bottom: 14px;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .thought-result {
            font-size: 36px;
            margin-bottom: 14px;
        }

        .thought-bubble.wrong .thought-result {
            color: #FF3B30;
        }

        .thought-bubble.right .thought-result {
            color: #34C759;
        }

        .thought-reason {
            font-size: 14px;
            line-height: 1.45;
            color: rgba(245, 245, 247, 0.65);
        }

        /* Feature tiles */
        .feature-tiles {
            display: flex;
            flex-wrap: wrap;
            gap: 32px 24px;
            margin-top: 60px;
            justify-content: center;
            align-items: flex-start;
        }

        .feature-tile {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 40px 32px;
            backdrop-filter: blur(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            flex: 1;
            min-width: 240px;
            max-width: 280px;
        }

        .feature-tile:nth-child(1) {
            transform: translateY(-12px) rotate(-0.8deg);
        }

        .feature-tile:nth-child(2) {
            transform: translateY(8px) rotate(0.5deg);
        }

        .feature-tile:nth-child(3) {
            transform: translateY(-8px) rotate(-0.3deg);
        }

        .feature-tile:nth-child(4) {
            transform: translateY(12px) rotate(0.7deg);
        }

        .feature-tile:hover {
            background: rgba(52, 120, 247, 0.08);
            border-color: rgba(52, 120, 247, 0.4);
            transform: translateY(-12px) rotate(0deg) scale(1.03);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(52, 120, 247, 0.2) 0%, rgba(88, 86, 214, 0.2) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 28px;
        }

        .feature-tile h4 {
            font-size: 21px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #f5f5f7;
        }

        .feature-tile p {
            font-size: 17px;
            line-height: 1.5;
            color: rgba(245, 245, 247, 0.7);
        }

        /* Large media section */
        .media-section {
            padding: 100px 20px;
            background: linear-gradient(180deg, transparent 0%, rgba(52, 120, 247, 0.05) 50%, transparent 100%);
        }

        .media-container {
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
            opacity: 0;
            transform: scale(0.95);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .media-container.visible {
            opacity: 1;
            transform: scale(1);
        }

        .media-container img,
        .media-container video {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Interactive briefing showcase */
        .briefing-showcase {
            max-width: 680px;
            margin: 60px auto 0;
            padding: 40px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 32px;
            backdrop-filter: blur(20px);
        }

        .briefing-message-bubble {
            padding: 16px 20px;
            border-radius: 24px;
            margin-bottom: 12px;
            font-size: 17px;
            line-height: 1.5;
            animation: slideIn 0.6s ease-out;
        }

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

        .briefing-message-ai {
            background: linear-gradient(135deg, #3478f7 0%, #2968e6 100%);
            color: white;
            border-radius: 24px 24px 24px 4px;
        }

        .briefing-message-user {
            background: rgba(52, 199, 89, 0.9);
            color: white;
            border-radius: 24px 24px 4px 24px;
            margin-left: auto;
            width: fit-content;
        }

        .briefing-message-highlight {
            background: rgba(255, 255, 255, 0.2);
            padding: 2px 6px;
            border-radius: 6px;
            font-weight: 500;
        }

        /* Stats row */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 32px;
            margin-top: 60px;
            text-align: center;
        }

        .stat-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .stat-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-value {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            background: linear-gradient(135deg, #3478f7 0%, #5856D6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 15px;
            color: rgba(245, 245, 247, 0.6);
            line-height: 1.4;
        }

        /* Footer CTA */

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 100px 20px 40px;
            }

            .product-showcase {
                padding: 0 0 100px;
            }

            .product-image-container {
                gap: 16px;
                padding: 0;
            }

            .product-image-main {
                width: 100%;
                max-width: none;
            }

            .product-image-secondary {
                width: 30%;
                max-width: none;
            }

            .section {
                padding: 80px 20px;
            }

            .comparison-grid,
            .feature-tiles {
                flex-direction: column;
                align-items: center;
            }

            .comparison-card,
            .feature-tile {
                max-width: 100%;
                width: 100%;
            }

            .comparison-card:hover,
            .feature-tile:hover {
                transform: translateY(-8px) rotate(0deg) scale(1.02) !important;
            }

            .feature-tile:hover {
                transform: translateY(-12px) rotate(0deg) scale(1.03) !important;
            }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.2);
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(52, 120, 247, 0.5);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(52, 120, 247, 0.7);
        }

        @media (max-width: 768px) {
            .atlantis-timeline {
                padding: 0 20px !important;
                gap: 32px;
            }

            .atlantis-timeline-item {
                background: transparent;
                border: none;
                padding: 0;
                min-width: 300px;
                max-width: 300px;
            }
        }

        /* FAQ */
        .faq-section .section-body {
            max-width: 760px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 40px;
            overflow-anchor: none;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            overflow: hidden;
            backdrop-filter: blur(20px);
            scroll-margin-top: 80px;
            transition: background 0.3s ease, border-color 0.3s ease;
        }

        .faq-item[open] {
            background: rgba(52, 120, 247, 0.06);
            border-color: rgba(52, 120, 247, 0.35);
        }

        .faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 22px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            color: #f5f5f7;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

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

        .faq-question {
            flex: 1;
        }

        .faq-toggle {
            width: 26px;
            height: 26px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            opacity: 0.85;
            transition: transform 0.25s ease, opacity 0.25s ease;
            user-select: none;
            flex-shrink: 0;
        }

        .faq-toggle-icon {
            width: 100%;
            height: 100%;
            display: block;
        }

        .faq-item[open] .faq-toggle {
            transform: rotate(90deg);
            opacity: 1;
        }

        .faq-answer {
            padding: 0 24px 22px;
            color: rgba(245, 245, 247, 0.76);
            font-size: 16px;
            line-height: 1.65;
        }

        .faq-answer p {
            margin: 0 0 12px 0;
        }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        .faq-answer ul {
            margin: 12px 0 0 18px;
            padding: 0;
        }

        .faq-answer li {
            margin-bottom: 8px;
        }

        .faq-answer h3 {
            margin: 18px 0 10px;
            color: rgba(245, 245, 247, 0.9);
            font-size: 16px;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .faq-answer h3:first-child {
            margin-top: 0;
        }

        .faq-answer blockquote {
            margin: 12px 0;
            padding: 14px 16px;
            border-left: 3px solid rgba(255, 255, 255, 0.18);
            background: rgba(255, 255, 255, 0.04);
            border-radius: 14px;
        }

        .faq-answer blockquote p {
            margin: 0 0 10px 0;
        }

        .faq-answer blockquote p:last-child {
            margin-bottom: 0;
        }

        .faq-answer ol {
            margin: 12px 0 0 18px;
            padding: 0;
        }

        .faq-answer ol li {
            margin-bottom: 8px;
        }

        .faq-pairing-block {
            margin: 16px 0 18px;
            padding: 36px 14px 14px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: inherit;
        }

        .faq-pairing-device {
            position: relative;
            width: 76px;
            height: 76px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .faq-pairing-device-icon {
            width: 56px;
            height: 56px;
            display: block;
            position: relative;
            z-index: 1;
        }

        .faq-pairing-viewfinder {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 16.5px;
            height: 16.5px;
            opacity: 0.22;
            z-index: 2;
            pointer-events: none;
        }

        .faq-pairing-bridge {
            position: relative;
            width: clamp(90px, 24vw, 140px);
            height: 76px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .faq-pairing-dash {
            width: 100%;
            height: 2px;
            display: block;
        }

        .faq-pairing-dash line {
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-dasharray: 8 4;
            animation: faqDash 1.5s linear infinite;
            opacity: 0.35;
        }

        .faq-pairing-lock {
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translate(-50%, -55%);
            width: 36px;
            height: 36px;
            opacity: 0.95;
            filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
        }

        @keyframes faqDash {
            to {
                stroke-dashoffset: -12;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .faq-pairing-dash line {
                animation: none;
            }
        }

        .faq-answer a {
            color: #3478f7;
            text-decoration: none;
            transition: color 0.2s;
        }

        .faq-answer a:hover {
            color: #2968e6;
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .faq-item summary {
                padding: 18px 18px;
                font-size: 17px;
            }

            .faq-answer {
                padding: 0 18px 18px;
            }

            .faq-pairing-block {
                padding: 30px 12px 12px;
            }

            .faq-pairing-device {
                width: 64px;
                height: 64px;
            }

            .faq-pairing-device-icon {
                width: 48px;
                height: 48px;
            }

            .faq-pairing-viewfinder {
                width: 15px;
                height: 15px;
            }

            .faq-pairing-bridge {
                height: 64px;
            }

            .faq-pairing-lock {
                width: 32px;
                height: 32px;
            }
        }
    

                    .trust-block {
                        background: rgba(255, 255, 255, 0.03);
                        border: 1px solid rgba(255, 255, 255, 0.08);
                        border-radius: 24px;
                        padding: 40px 32px;
                        backdrop-filter: blur(20px);
                        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                    }

                    .trust-block:nth-child(1) {
                        transform: translateY(-8px) rotate(-0.5deg);
                    }

                    .trust-block:nth-child(2) {
                        transform: translateY(8px) rotate(0.3deg);
                    }

                    .trust-block:nth-child(3) {
                        transform: translateY(-4px) rotate(-0.4deg);
                    }

                    .trust-block:hover {
                        background: rgba(52, 120, 247, 0.08);
                        border-color: rgba(52, 120, 247, 0.4);
                        transform: translateY(-12px) rotate(0deg) scale(1.03);
                    }

                    @media (max-width: 768px) {
                        .trust-blocks-container {
                            flex-direction: column !important;
                            gap: 40px !important;
                        }

                        .trust-blocks-container svg {
                            display: none !important;
                        }

                        .trust-block:hover {
                            transform: translateY(-8px) rotate(0deg) scale(1.02) !important;
                        }
                    }
