        :root {
            --color-bg: #1a2628;
            --color-bg-dark: #151e20;
            --color-orange: #e8734a;
            --color-text: #ffffff;
            --color-text-muted: #8a9a9c;
            --color-border: rgba(138, 154, 156, 0.2);
            --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);
        }

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

        body {
            background: var(--color-bg);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--color-text);
            line-height: 1.6;
            font-weight: 400;
        }

        .tm {
            font-size: 0.4em;
            vertical-align: super;
            line-height: 0;
            margin-left: 0.04em;
            opacity: 0.95;
        }

        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 4rem;
            position: fixed;
            top: 0;
            width: 100%;
            background: transparent;
            z-index: 1000;
            transition: background 0.3s;
        }

        nav.scrolled {
            background: rgba(26, 38, 40, 0.95);
            backdrop-filter: blur(10px);
        }

        .logo {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 2.3rem;
            font-weight: 400;
            color: #F47C3C;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

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

        .nav-links a {
            color: var(--color-text);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 400;
            transition: opacity 0.3s;
        }

        .nav-links a:hover {
            opacity: 0.75;
        }

        .btn {
            background: var(--color-orange);
            color: var(--color-text);
            padding: 0.7rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(232, 115, 74, 0.18);
        }

        .btn:hover {
            background: #f5845d;
            transform: translateY(-1px);
            box-shadow: 0 14px 32px rgba(232, 115, 74, 0.22);
        }

        .btn-large {
            padding: 1.1rem 2.5rem;
            font-size: 1rem;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 6rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            display: flex;
        }

        .hero-video,
        .hero-video-left,
        .hero-video-right {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.5);
            opacity: 1;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-video.fading,
        .hero-video-left.fading,
        .hero-video-right.fading {
            opacity: 0;
        }

        .hero-video-left,
        .hero-video-right {
            width: 50%;
        }

        /* Desktop: show both videos side by side */
        @media (min-width: 969px) {
            .hero-video {
                display: none;
            }

            .hero-video-left,
            .hero-video-right {
                display: block;
            }
        }

        /* Mobile: show single video container */
        @media (max-width: 968px) {
            .hero-video-left,
            .hero-video-right {
                display: none;
            }

            .hero-video {
                display: block;
            }
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(10, 14, 15, 0.78) 0%,
                rgba(18, 24, 26, 0.38) 22%,
                rgba(18, 24, 26, 0.42) 78%,
                rgba(10, 14, 15, 0.86) 100%
            );
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
        }

        .hero h1 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(3rem, 7vw, 5rem);
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 2rem;
        }

        .hero h1 .line1 {
            display: block;
            color: var(--color-text);
        }

        .hero h1 .line2 {
            display: block;
            color: var(--color-orange);
        }

        .hero-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: var(--color-text-muted);
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
            font-weight: 400;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
            font-size: 0.95rem;
            color: var(--color-text-muted);
            font-weight: 400;
        }

        .hero-features span {
            display: inline-flex;
            align-items: center;
            padding: 0.35rem 0.7rem;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(0, 0, 0, 0.12);
            border-radius: 999px;
            backdrop-filter: blur(10px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
        }

        .scroll-indicator::before {
            content: '';
            display: block;
            width: 1px;
            height: 60px;
            background: linear-gradient(to bottom, transparent, var(--color-text-muted));
        }

        /* Section Styles */
        section {
            padding: 7rem 4rem;
        }

        .section-dark {
            background: var(--color-bg-dark);
        }

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

        .section-title {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 400;
            text-align: center;
            margin-bottom: 4rem;
            line-height: 1.25;
        }

        /* Problem/Solution Grid */
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            margin-top: 4rem;
        }

        .comparison-row {
            display: contents;
        }

        .comparison-item {
            padding: 2rem 0;
            border-top: 1px solid var(--color-border);
        }

        .comparison-left {
            text-align: left;
            color: #5a6a6c;
            text-decoration: line-through;
            padding-right: 3rem;
        }

        .comparison-right {
            text-align: left;
            color: var(--color-text);
            padding-left: 3rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .comparison-right::before {
            content: '';
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            margin-top: 0.1rem;
            background: var(--color-orange);
            mask-size: contain;
            mask-repeat: no-repeat;
            mask-position: center;
            -webkit-mask-size: contain;
            -webkit-mask-repeat: no-repeat;
            -webkit-mask-position: center;
        }

        .comparison-row:nth-child(1) .comparison-right::before {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
        }

        .comparison-row:nth-child(2) .comparison-right::before {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
        }

        .comparison-row:nth-child(3) .comparison-right::before {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8h1a4 4 0 0 1 0 8h-1'/%3E%3Cpath d='M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z'/%3E%3Cline x1='6' y1='1' x2='6' y2='4'/%3E%3Cline x1='10' y1='1' x2='10' y2='4'/%3E%3Cline x1='14' y1='1' x2='14' y2='4'/%3E%3C/svg%3E");
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8h1a4 4 0 0 1 0 8h-1'/%3E%3Cpath d='M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z'/%3E%3Cline x1='6' y1='1' x2='6' y2='4'/%3E%3Cline x1='10' y1='1' x2='10' y2='4'/%3E%3Cline x1='14' y1='1' x2='14' y2='4'/%3E%3C/svg%3E");
        }

        .comparison-row:nth-child(4) .comparison-right::before {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
        }

        .comparison-item h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 400;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem 6rem;
            margin-top: 3rem;
        }

        .feature {
            text-align: left;
        }

        .feature-number {
            color: var(--color-orange);
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .feature h3 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.75rem;
            font-weight: 400;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .feature p {
            font-family: 'Inter', sans-serif;
            color: var(--color-text-muted);
            line-height: 1.7;
            font-size: 1rem;
            font-weight: 400;
        }

        /* Process Section */
        .process-section {
            padding: 7rem 4rem;
        }

        .process-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .process-title {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(2.5rem, 5vw, 3.25rem);
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 0;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 100px;
            left: 12.5%;
            right: 12.5%;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--color-border) 10%, var(--color-border) 90%, transparent);
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
            position: relative;
        }

        .process-step-image img:first-child {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.65);
            border-radius: 12px;
            display: block;
        }

        .process-step-overlay {
            position: absolute;
            width: 40%;
            height: auto;
            max-height: 60%;
            object-fit: contain !important;
            filter: brightness(1) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4)) !important;
            z-index: 10;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            opacity: 0; /* Hidden by default */
            pointer-events: none;
            transform: scale(0.9) translateY(10px);
        }

        /* Show screenshots when hovering the view badge */
        .view-badge:hover ~ .process-step-overlay {
            opacity: 1;
            pointer-events: auto;
            transform: scale(1) translateY(0);
        }

        .overlay-left {
            left: -5%;
            top: -5%;
        }

        .overlay-right {
            right: -5%;
            top: -5%;
        }

        .overlay-upper {
            z-index: 11;
        }

        .overlay-lower {
            top: 20%;
            left: 5%;
            z-index: 10;
        }

        /* View Badge - Smaller and in lower right */
        .view-badge {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(232, 115, 74, 0.15);
            color: var(--color-orange);
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            opacity: 1;
            z-index: 25; /* Higher than overlays */
            cursor: pointer;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(232, 115, 74, 0.2);
            display: flex;
            align-items: center;
            gap: 3px;
            transition: all 0.3s ease;
        }

        .view-badge:hover {
            background: rgba(232, 115, 74, 0.25);
            opacity: 1;
            transform: translateY(-1px);
            border-color: rgba(232, 115, 74, 0.4);
        }

        .view-badge::before {
            content: '🔍';
            font-size: 0.7rem;
        }

        /* Show screenshots when hovering the view badge OR the image container */
        .view-badge:hover ~ .process-step-overlay,
        .process-step-image:hover .process-step-overlay {
            opacity: 1;
            pointer-events: auto;
            transform: scale(1) translateY(0);
        }

        /* Simplified Hover effect for overlays when they appear */
        .process-step-overlay:hover {
            transform: scale(1.05) translateY(-5px) !important;
            filter: brightness(1.05) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5)) !important;
        }

        /* Lightbox Modal */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 14, 15, 0.98);
            z-index: 9999;
            cursor: zoom-out;
            padding: 40px;
            box-sizing: border-box;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90vh;
            border-radius: 12px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
            transform: scale(0.9);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .lightbox.active img {
            transform: scale(1);
        }

        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 30px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s;
            z-index: 10002;
        }

        .lightbox-close:hover {
            opacity: 1;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 3rem;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
            z-index: 10002;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .lightbox-nav:hover {
            opacity: 1;
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }

        .lightbox-counter {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1rem;
            background: rgba(0, 0, 0, 0.5);
            padding: 8px 16px;
            border-radius: 20px;
            backdrop-filter: blur(5px);
            z-index: 10002;
        }

        .process-step-placeholder {
            width: 48px;
            height: 48px;
            opacity: 0.25;
            background: var(--color-orange);
            mask-size: contain;
            mask-repeat: no-repeat;
            mask-position: center;
            -webkit-mask-size: contain;
            -webkit-mask-repeat: no-repeat;
            -webkit-mask-position: center;
        }

        .process-step:nth-child(1) .process-step-placeholder {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
        }

        .process-step:nth-child(2) .process-step-placeholder {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='2' width='14' height='20' rx='2' ry='2'/%3E%3Cline x1='12' y1='18' x2='12.01' y2='18'/%3E%3C/svg%3E");
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='2' width='14' height='20' rx='2' ry='2'/%3E%3Cline x1='12' y1='18' x2='12.01' y2='18'/%3E%3C/svg%3E");
        }

        .process-step:nth-child(3) .process-step-placeholder {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10 9 9 9 8 9'/%3E%3C/svg%3E");
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10 9 9 9 8 9'/%3E%3C/svg%3E");
        }

        .process-step:nth-child(4) .process-step-placeholder {
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
        }

        .process-step-number {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--color-orange);
            letter-spacing: 0.1em;
            margin-bottom: 0.75rem;
        }

        .process-step-title {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.35rem;
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 0.5rem;
        }

        .process-step-desc {
            font-family: 'Inter', sans-serif;
            color: var(--color-text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .process-kicker {
            text-align: center;
            margin-top: 4rem;
        }

        .process-kicker a {
            font-family: 'Inter', sans-serif;
            color: var(--color-orange);
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: opacity 0.3s;
        }

        .process-kicker a:hover {
            opacity: 0.8;
        }

        .process-kicker a::after {
            content: '→';
        }

        @media (max-width: 968px) {
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .process-step-overlay {
                width: 60%;
                top: 5%;
                height: 90%;
            }

            .overlay-left {
                left: -8%;
            }

            .overlay-right {
                right: -8%;
            }

            .overlay-lower {
                top: 20%;
                left: 5%;
            }
        }

        @media (max-width: 640px) {
            .process-steps {
                grid-template-columns: 1fr;
            }

            .process-step-overlay {
                width: 50%;
                top: 5%;
                height: 90%;
            }

            .overlay-left {
                left: -5%;
            }

            .overlay-right {
                right: -5%;
            }

            .overlay-lower {
                top: 15%;
                left: 2%;
            }
        }

        /* Testimonials */
        .testimonials {
            padding: 7rem 4rem;
        }

        .testimonial-item {
            padding: 3rem 0;
            border-bottom: 1px solid var(--color-border);
        }

        .testimonial-item:last-child {
            border-bottom: none;
        }

        .testimonial-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .testimonial-text {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.6rem;
            font-weight: 400;
            line-height: 1.5;
        }

        .testimonial-author {
            text-align: right;
        }

        .author-name {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 0.25rem;
        }

        .author-title {
            font-family: 'Inter', sans-serif;
            color: var(--color-text-muted);
            font-size: 0.9rem;
            font-weight: 400;
        }

        .author-result {
            font-family: 'Inter', sans-serif;
            color: var(--color-orange);
            margin-top: 0.75rem;
            font-weight: 500;
            font-size: 0.9rem;
        }

        /* Coach Section */
        .coach-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .coach-image {
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
        }

        .coach-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .coach-content {
            padding-left: 1rem;
        }

        .coach-tag {
            font-family: 'Inter', sans-serif;
            color: var(--color-orange);
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            margin-bottom: 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .coach-content h2 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 2.75rem;
            font-weight: 400;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .coach-content p {
            font-family: 'Inter', sans-serif;
            color: var(--color-text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1rem;
            font-weight: 400;
        }

        .coach-content .highlight {
            color: var(--color-text);
            font-size: 1.1rem;
            margin-top: 2rem;
            font-weight: 400;
        }

        .coach-name {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.6rem;
            font-weight: 400;
            margin-top: 3rem;
            margin-bottom: 0.5rem;
        }

        .coach-credentials {
            font-family: 'Inter', sans-serif;
            color: var(--color-text-muted);
            font-size: 0.9rem;
            font-weight: 400;
        }

        /* Coaches */
        .coaches {
            padding-top: 7.5rem;
            padding-bottom: 7.5rem;
        }

        .coaches-header {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 3.25rem;
        }

        .coaches-title {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(2.5rem, 5vw, 3.25rem);
            font-weight: 400;
            line-height: 1.15;
            margin-top: 0.75rem;
        }

        .coaches-grid {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
        }

        .coaches-grid article:nth-child(2) .coach-card-image img {
            object-position: center 35%;
        }

        .coach-card {
            border: 1px solid rgba(255, 255, 255, 0.10);
            background: rgba(255, 255, 255, 0.03);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }

        .coach-card-image {
            aspect-ratio: 4 / 3;
            background: rgba(0, 0, 0, 0.25);
        }

        .coach-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: brightness(0.25);
        }

        .coach-card-body {
            padding: 1.25rem 1.25rem 1.4rem;
        }

        .coach-card-name {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.65rem;
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }

        .coach-card-desc {
            font-family: 'Inter', sans-serif;
            color: var(--color-text-muted);
            line-height: 1.75;
            font-size: 1rem;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 8rem 4rem;
        }

        .cta-section h2 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 400;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .cta-section h2 .orange {
            color: var(--color-orange);
        }

        .cta-section > .container > p {
            font-family: 'Inter', sans-serif;
            color: var(--color-text-muted);
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            font-weight: 400;
        }

        .cta-section p strong {
            color: var(--color-orange);
            font-weight: 600;
        }

        .cta-details {
            font-family: 'Inter', sans-serif;
            margin-top: 1.5rem;
            color: var(--color-text-muted);
            font-size: 0.9rem;
            font-weight: 400;
        }

        /* Logo Link */
.logo-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

/* Footer */
        footer {
            padding: 3rem 4rem;
            border-top: 1px solid var(--color-border);
            background: var(--color-bg-dark);
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 2rem;
            align-items: start;
        }

        .footer-logo {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--color-text);
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            text-align: center;
        }

        .contact-title {
            font-family: 'Inter', sans-serif;
            color: var(--color-text-muted);
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .contact-link {
            font-family: 'Inter', sans-serif;
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 400;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-link:hover {
            color: var(--color-text);
        }

        .footer-legal {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            text-align: right;
        }

        .privacy-link {
            font-family: 'Inter', sans-serif;
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 400;
            transition: color 0.3s;
        }

        .privacy-link:hover {
            color: var(--color-text);
        }

        .impressum {
            margin-top: 1rem;
            opacity: 0.7;
        }

        .impressum h3 {
            font-family: 'Inter', sans-serif;
            color: var(--color-text);
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .impressum p {
            font-family: 'Inter', sans-serif;
            color: var(--color-text-muted);
            font-size: 0.7rem;
            line-height: 1.3;
            margin: 0.15rem 0;
        }

        .impressum strong {
            color: var(--color-text);
            font-weight: 500;
        }

        .copyright {
            font-family: 'Inter', sans-serif;
            color: var(--color-text-muted);
            font-size: 0.8rem;
            font-weight: 400;
            margin-top: 1rem;
        }

        @media (max-width: 968px) {
            footer {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                text-align: center;
            }

            .footer-legal {
                text-align: center;
            }

            .footer-contact {
                order: 2;
            }

            .footer-logo {
                order: 1;
            }

            .footer-legal {
                order: 3;
            }
        }

        /* Responsive */
        @media (max-width: 968px) {
            nav {
                padding: 1.25rem 1.5rem;
            }

            section {
                padding: 4rem 1.5rem;
            }

            .comparison-grid,
            .features-grid,
            .coach-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .coaches-grid {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }

            .comparison-left,
            .comparison-right {
                padding: 1.5rem 0;
            }

            .comparison-right {
                padding-left: 0;
            }

            .testimonial-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .testimonial-author {
                text-align: left;
            }

            .nav-links {
                gap: 1rem;
                font-size: 0.85rem;
            }

            footer {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
                padding: 2rem 1.5rem;
            }

            .coach-content {
                padding-left: 0;
            }
        }

        @media (max-width: 640px) {
            .nav-links li:not(:last-child) {
                display: none;
            }
        }

/* ===== SURVEY STYLES ===== */

/* Survey-specific styles */
.survey-banner {
    background: linear-gradient(135deg, #1a2628 0%, #151e20 100%);
    padding: 30px 20px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.survey-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/Download.jpeg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.survey-banner-content {
    position: relative;
    z-index: 1;
}

        .survey-banner h1 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 2.5rem;
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 0;
            line-height: 1.2;
        }

        .survey-banner h1 .tm {
            font-size: 0.5em;
        }

        .success-heading .tm {
            font-size: 0.5em;
        }

.survey-banner p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #8a9a9c;
    margin: 0;
}

.survey-container {
    max-width: 760px;
    margin: 40px auto;
    padding: 50px 60px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    min-height: auto;
    display: block;
}

.survey-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #f8f8f8;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.survey-progress-bar {
    height: 100%;
    background: #e8734a;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 12.5%;
}

.survey-question {
    display: none;
    opacity: 0;
}

.survey-question.active {
    display: block;
    opacity: 1;
    animation: fadeInPremium 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.question-label {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 500;
    color: #1a2628;
    margin-bottom: 12px;
    display: block;
    line-height: 1.1;
}

.question-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #8a9a9c;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 0;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    border: 1px solid rgba(26, 38, 40, 0.08);
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 100%;
    min-height: 64px;
}

.checkbox-item:hover {
    border-color: #e8734a;
    background: rgba(232, 115, 74, 0.01);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.checkbox-item input[type="checkbox"] {
    margin-right: 14px;
    width: 18px;
    height: 18px;
    accent-color: #e8734a;
    flex-shrink: 0;
}

.checkbox-item label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #1a2628;
    margin: 0;
    cursor: pointer;
    flex: 1;
    line-height: 1.4;
    font-weight: 400;
}

.form-input {
    width: 100%;
    padding: 18px 24px;
    border: 1px solid rgba(26, 38, 40, 0.1);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #1a2628;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 0;
}

.form-input:focus {
    outline: none;
    border-color: #e8734a;
    box-shadow: 0 0 0 4px rgba(232, 115, 74, 0.05);
}

.form-textarea {
    width: 100%;
    min-height: 160px;
    padding: 18px 24px;
    border: 1px solid rgba(26, 38, 40, 0.1);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #1a2628;
    background: #ffffff;
    resize: vertical;
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 0;
}

.form-textarea:focus {
    outline: none;
    border-color: #e8734a;
    box-shadow: 0 0 0 4px rgba(232, 115, 74, 0.05);
}

.radio-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}

.radio-item {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    border: 1px solid rgba(26, 38, 40, 0.08);
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 100%;
    min-height: 64px;
}

.radio-item:hover {
    border-color: #e8734a;
    background: rgba(232, 115, 74, 0.01);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.radio-item input[type="radio"] {
    margin-right: 14px;
    width: 18px;
    height: 18px;
    accent-color: #e8734a;
    flex-shrink: 0;
}

.radio-item label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #1a2628;
    margin: 0;
    cursor: pointer;
    flex: 1;
    font-weight: 400;
    line-height: 1.4;
}

.privacy-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 20px;
    background: #fcfcfc;
    border-radius: 12px;
    border-left: 4px solid #e8734a;
}

.survey-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(26, 38, 40, 0.05);
}

.survey-btn {
    padding: 18px 48px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: 0.01em;
}

.survey-btn-secondary {
    background: #f5f5f5;
    color: #1a2628;
    flex: 0 0 auto;
}

.survey-btn-secondary:hover {
    background: #eeeeee;
}

.survey-btn-primary {
    background: #e8734a;
    color: #ffffff;
    flex: 1;
    box-shadow: 0 10px 25px rgba(232, 115, 74, 0.2);
}

.survey-btn-primary:hover {
    background: #d66542;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(232, 115, 74, 0.3);
}

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

.success-screen {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

.success-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #1a2628;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.success-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #8a9a9c;
    margin-bottom: 3rem;
    font-weight: 400;
}

.success-cta {
    background: linear-gradient(135deg, rgba(232, 115, 74, 0.03) 0%, rgba(232, 115, 74, 0.01) 100%);
    border: 1px solid rgba(232, 115, 74, 0.15);
    border-radius: 16px;
    padding: 40px;
    margin: 0 0 2.5rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.success-cta h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    color: #1a2628;
    margin-bottom: 32px;
}

.success-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.success-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(26, 38, 40, 0.06);
    transition: all 0.3s ease;
}

.success-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(232, 115, 74, 0.2);
}

        .success-step-number {
            font-size: 2rem;
            min-width: 40px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .success-step-number svg {
            width: 24px;
            height: 24px;
            color: #e8734a;
        }

        /* Email section icon */
        .success-screen svg {
            color: #e8734a;
        }

.success-step-content {
    flex: 1;
}

.success-step-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2628;
    margin-bottom: 6px;
}

.success-step-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #8a9a9c;
    line-height: 1.6;
}

.back-home-btn {
    background: #e8734a;
    color: #ffffff;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(232, 115, 74, 0.2);
}

.back-home-btn:hover {
    background: #d66542;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(232, 115, 74, 0.3);
}

        .error-message {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: #e74c3c;
            margin-top: 4px;
        }

        /* Slider table styles */
        .guidance-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .guidance-table th {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: #8a9a9c;
            text-align: center;
            padding: 12px 8px;
            border-bottom: 1px solid rgba(26, 38, 40, 0.1);
        }

        .guidance-table td {
            padding: 16px 8px;
            text-align: center;
            border-bottom: 1px solid rgba(26, 38, 40, 0.05);
        }

        .guidance-table .category-label {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            color: #1a2628;
            text-align: left;
            padding-left: 0;
        }

        .guidance-radio {
            width: 16px;
            height: 16px;
            accent-color: #e8734a;
            cursor: pointer;
        }

/* Survey Responsive adjustments */
@media (max-width: 768px) {
    .survey-banner {
        padding: 20px 16px 15px;
        margin-top: 50px;
    }

    .survey-banner h1 {
        font-size: 1.75rem;
    }

    .survey-banner p {
        font-size: 0.95rem;
    }

    .survey-container {
        padding: 32px 20px;
        margin: 20px 10px;
        min-height: 500px;
    }

    .question-label {
        font-size: 1.75rem;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .radio-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .success-screen {
        padding: 10px;
    }

    .success-heading {
        font-size: 2.25rem;
    }

    .success-subheading {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .success-cta {
        padding: 24px;
        margin: 0 0 1.5rem 0;
    }

    .success-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .success-step {
        padding: 16px;
        gap: 12px;
    }

    .success-step-number {
        font-size: 1.5rem;
        min-width: 32px;
    }

    .success-step-number svg {
        width: 20px;
        height: 20px;
    }

    /* Email section responsive */
    .success-screen svg {
        width: 16px;
        height: 16px;
    }

    .success-step-title {
        font-size: 1rem;
    }

    .success-step-text {
        font-size: 0.9rem;
    }

    .survey-navigation {
        flex-direction: row;
    }

    .survey-btn {
        width: 100%;
    }

    .survey-btn-secondary {
        flex: 0 0 auto;
        width: auto;
    }

    .back-home-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
}