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

        :root {
            --bg: #0B0B0C;
            --panel: #111114;
            --text: #F5F5F5;
            --muted: #B9B9B9;
            --border: rgba(255,255,255,0.08);
            --highlight: rgba(255,255,255,0.04);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(11, 11, 12, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        nav {
            max-width: 1280px;
            margin: 0 auto;
            padding: 32px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        .logo-left {
            flex-shrink: 0;
        }

        .logo-left img {
            height: 48px;
            width: auto;
            display: block;
        }

        .logo-right {
            flex-shrink: 0;
            margin-left: 32px;
        }

        .logo-right img {
            height: 52px;
            width: auto;
            display: block;
            opacity: 0.92;
        }

        .nav-links {
            display: flex;
            gap: 48px;
            list-style: none;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-links a {
            color: rgba(245, 245, 245, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.2s;
        }

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

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: radial-gradient(ellipse at top, #141418 0%, #0B0B0C 50%, #0E0E10 100%);
            padding: 150px 48px 100px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            opacity: 0.3;
        }

        .hero-blur-1 {
            position: absolute;
            top: 25%;
            left: 25%;
            width: 400px;
            height: 400px;
            background: var(--text);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.1;
        }

        .hero-blur-2 {
            position: absolute;
            bottom: 25%;
            right: 33%;
            width: 500px;
            height: 500px;
            background: var(--text);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.05;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1024px;
            text-align: center;
        }

        /* Premium page loading animation */
        body {
            opacity: 0;
            transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body.page-loaded {
            opacity: 1;
        }

        .hero {
            opacity: 0;
            transform: scale(0.98);
            transition: all 2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .hero.loaded {
            opacity: 1;
            transform: scale(1);
        }

        /* Hero content loading animation */
        .hero-content h1 {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
        }

        .hero-content.loaded h1 {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-content .subheadline {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s;
        }

        .hero-content.loaded .subheadline {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-content .cta-buttons {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1.6s cubic-bezier(0.16, 1, 0.3, 1) 1s;
        }

        .hero-content.loaded .cta-buttons {
            opacity: 1;
            transform: translateY(0);
        }

        /* Advanced Scroll Animations - Varied & Premium */

        /* Section Headers - elegant fade with slight rise */
        .section-header {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        /* Symptom Cards - staggered wave from bottom */
        .symptom-card {
            opacity: 0;
            transform: translateY(60px) scale(0.95);
            transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .symptom-card:nth-child(1) { transition-delay: 0.1s; }
        .symptom-card:nth-child(2) { transition-delay: 0.25s; }
        .symptom-card:nth-child(3) { transition-delay: 0.4s; }

        .symptom-card.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Process Cards - rotating wave with scale */
        .process-card {
            opacity: 0;
            transform: translateY(50px) scale(0.92) rotateX(8deg);
            transform-origin: center bottom;
            transition: all 0.95s cubic-bezier(0.16, 1, 0.3, 1);
            perspective: 1000px;
        }

        .process-card:nth-child(1) { transition-delay: 0.05s; }
        .process-card:nth-child(2) { transition-delay: 0.15s; }
        .process-card:nth-child(3) { transition-delay: 0.25s; }
        .process-card:nth-child(4) { transition-delay: 0.35s; }

        .process-card.visible {
            opacity: 1;
            transform: translateY(0) scale(1) rotateX(0deg);
        }

        /* Service Cards - alternating slide with elegant timing */
        .service-card {
            opacity: 0;
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .service-card:nth-child(odd) {
            transform: translateX(-40px) translateY(20px);
        }

        .service-card:nth-child(even) {
            transform: translateX(40px) translateY(20px);
        }

        .service-card:nth-child(1) { transition-delay: 0.05s; }
        .service-card:nth-child(2) { transition-delay: 0.15s; }
        .service-card:nth-child(3) { transition-delay: 0.25s; }
        .service-card:nth-child(4) { transition-delay: 0.35s; }
        .service-card:nth-child(5) { transition-delay: 0.45s; }

        .service-card.visible {
            opacity: 1;
            transform: translateX(0) translateY(0);
        }

        /* Value Statements - elegant sequential reveal */
        .value-statement {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 1.1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .value-statement:nth-child(1) { transition-delay: 0.1s; }
        .value-statement:nth-child(2) { transition-delay: 0.2s; }
        .value-statement:nth-child(3) { transition-delay: 0.3s; }
        .value-statement:nth-child(4) { transition-delay: 0.4s; }

        .value-statement.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .values-intro {
            opacity: 0;
            transform: translateY(40px) scale(0.97);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .values-intro.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .values-closing {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
        }

        .values-closing.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Filter Cards - opposing directions (cinematic reveal) */
        .filter-card {
            opacity: 0;
            transition: all 1.1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .filter-card:first-child {
            transform: translateX(-50px) rotateY(5deg);
            transition-delay: 0.1s;
        }

        .filter-card:last-child {
            transform: translateX(50px) rotateY(-5deg);
            transition-delay: 0.25s;
        }

        .filter-card.visible {
            opacity: 1;
            transform: translateX(0) rotateY(0deg);
        }

        /* Why Section - gentle pulse in */
        .why-section {
            opacity: 0;
            transform: translateY(30px) scale(0.96);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
        }

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

        /* Process Note - delayed elegant fade */
        .process-note {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
        }

        .process-note.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Filter Note - delayed elegant fade */
        .filter-note {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
        }

        .filter-note.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Enhanced Hover Effects - Premium Interactions */
        .symptom-card,
        .process-card,
        .service-card,
        .filter-card {
            will-change: transform, box-shadow;
        }

        .symptom-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .process-card:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
        }

        .service-card.has-modal:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 72px rgba(0, 0, 0, 0.35);
        }

        .filter-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
        }

        /* Scroll Indicator Animation */
        .scroll-indicator {
            animation: floatPulse 3s ease-in-out infinite;
            opacity: 0;
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 2s;
        }

        .scroll-indicator.visible {
            opacity: 1;
        }

        @keyframes floatPulse {
            0%, 100% {
                transform: translateY(0);
                opacity: 0.6;
            }
            50% {
                transform: translateY(10px);
                opacity: 1;
            }
        }

        .scroll-dot {
            animation: dotPulse 3s ease-in-out infinite;
        }

        @keyframes dotPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.3);
            }
        }

        /* Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Hero Background Subtle Motion on Scroll */
        .hero-bg {
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Contact Section Animations */
        .contact-cta {
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
        }

        .contact-cta.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .contact-cta:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 16px 48px rgba(245, 245, 245, 0.15);
        }

        /* Contact boxes staggered animation */
        .contact-boxes {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
        }

        .contact-boxes.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-boxes > div {
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .contact-boxes > div:hover {
            transform: translateY(-4px);
            background: rgba(17, 17, 20, 0.6);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .hero h1 {
            font-size: clamp(40px, 8vw, 96px);
            font-weight: 600;
            line-height: 1.15;
            margin-bottom: 32px;
        }

        .hero h1 .muted {
            color: var(--muted);
        }

        .hero .subheadline {
            font-size: clamp(18px, 2.5vw, 24px);
            line-height: 1.7;
            color: var(--muted);
            margin-bottom: 48px;
            max-width: 768px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero .subheadline .light {
            color: rgba(245, 245, 245, 0.6);
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            align-items: center;
        }

        .btn-primary {
            display: inline-block;
            padding: 16px 40px;
            background: var(--text);
            color: var(--bg);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 9999px;
            transition: all 0.2s;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary {
            color: rgba(245, 245, 245, 0.7);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .btn-secondary:hover {
            color: var(--text);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 48px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            animation: fadeIn 1s 1s forwards, bounce 2s 2s infinite;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

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

        .scroll-indicator-inner {
            width: 24px;
            height: 40px;
            border: 2px solid rgba(245, 245, 245, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 8px;
        }

        .scroll-dot {
            width: 4px;
            height: 8px;
            background: rgba(245, 245, 245, 0.4);
            border-radius: 2px;
        }

        /* Section */
        section {
            padding: 96px 48px;
        }

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

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

        .section-header h2 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 600;
            margin-bottom: 56px;
        }

        .section-header p {
            font-size: clamp(16px, 2vw, 20px);
            line-height: 1.7;
            color: var(--muted);
            max-width: 768px;
            margin: 0 auto;
        }

        /* Problem Section */
        .problem-section {
            background: var(--panel);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .symptoms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 48px;
        }

        .symptom-card {
            padding: 56px 40px 68px;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 24px;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .symptom-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .symptom-card:hover {
            background: var(--highlight);
            border-color: rgba(245, 245, 245, 0.2);
        }

        .symptom-card h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .symptom-card p {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.6;
            max-width: 32ch;
        }

        .why-section {
            text-align: center;
            max-width: 768px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s;
        }

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

        .why-section .label {
            color: var(--text);
            font-weight: 500;
            margin-bottom: 8px;
        }

        /* Process Section */
        .process-section {
            background: linear-gradient(135deg, #0E0E10 0%, #0B0B0C 50%, #141418 100%);
        }

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

        .process-card {
            padding: 40px 32px;
            background: rgba(17, 17, 20, 0.5);
            border: 1px solid var(--border);
            border-radius: 24px;
            transition: all 0.25s ease;
            opacity: 0;
            transform: translateY(20px);
            position: relative;
            min-height: 240px;
            display: flex;
            flex-direction: column;
        }

        .process-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .process-card:hover {
            background: rgba(17, 17, 20, 0.7);
            border-color: rgba(245, 245, 245, 0.12);
        }

        .phase-number {
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 38px;
            font-weight: 700;
            color: rgba(185, 185, 185, 0.06);
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .phase-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            margin-top: 48px;
            line-height: 1.35;
        }

        .phase-desc {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
            opacity: 0.9;
        }

        .process-note {
            text-align: center;
            margin-top: 96px;
            font-size: 13px;
            color: rgba(185, 185, 185, 0.6);
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 24px;
        }

        .service-card {
            padding: 32px;
            background: rgba(17, 17, 20, 0.3);
            border: 1px solid var(--border);
            border-radius: 24px;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
            grid-column: span 2;
        }

        .service-card.has-modal {
            cursor: pointer;
        }

        .service-card.has-modal:hover {
            transform: translateY(-2px);
        }

        .service-card:nth-child(4) {
            grid-column: 2 / 4;
        }

        .service-card:nth-child(5) {
            grid-column: 4 / 6;
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            background: rgba(17, 17, 20, 0.5);
            border-color: rgba(245, 245, 245, 0.2);
        }

        .service-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            transition: color 0.3s;
        }

        .service-card:hover h3 {
            color: var(--text);
        }

        .service-card p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
        }

        .service-expand {
            margin-top: 24px;
            background: transparent;
            border: none;
            color: rgba(245, 245, 245, 0.5);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            padding: 0;
            transition: color 0.2s;
            font-family: inherit;
        }

        .service-expand:hover {
            color: rgba(245, 245, 245, 0.8);
        }

        .service-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(11, 11, 12, 0);
            backdrop-filter: blur(0px);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 24px;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .service-modal.active {
            display: flex;
            background: rgba(11, 11, 12, 0.92);
            backdrop-filter: blur(8px);
        }

        .service-modal-content {
            background: rgba(11, 11, 12, 0.95);
            backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 24px;
            padding: 48px 44px 48px 48px;
            max-width: 760px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            overflow-x: hidden;
            position: relative;
            transform: scale(0.85) translateY(30px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            scrollbar-gutter: stable;
        }

        .service-modal.active .service-modal-content {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .service-modal-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: transparent;
            border: none;
            color: rgba(245, 245, 245, 0.5);
            font-size: 24px;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.2s;
        }

        .service-modal-close:hover {
            color: rgba(245, 245, 245, 0.9);
        }

        .service-modal h4 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 32px;
            color: var(--text);
        }

        .service-modal ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-modal li {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 16px;
            padding-left: 16px;
            position: relative;
        }

        .service-modal li:before {
            content: '•';
            position: absolute;
            left: 0;
            color: rgba(185, 185, 185, 0.6);
        }

        .service-modal li:last-child {
            margin-bottom: 0;
        }

        .service-modal li ul {
            margin-top: 12px;
        }

        .service-modal li ul li {
            margin-bottom: 8px;
            font-size: 13px;
        }

        .service-sections-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .service-section {
            list-style: none;
        }

        .service-section:before {
            content: none !important;
        }

        .service-section-heading {
            font-weight: 600;
            color: var(--text);
            margin-bottom: 4px;
            font-size: 16px;
        }

        .service-section-subtext {
            font-size: 12px;
            opacity: 0.6;
            margin-bottom: 16px;
        }

        .service-section ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .service-section li {
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 10px;
            padding-left: 16px;
            position: relative;
        }

        .service-section li:before {
            content: '•';
            position: absolute;
            left: 0;
            color: rgba(185, 185, 185, 0.6);
        }

        @media (max-width: 640px) {
            .service-sections-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        /* Values Section */
        .values-section {
            background: var(--bg);
            padding: 96px 48px 80px;
        }

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

        .values-intro {
            text-align: center;
            margin-bottom: 64px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s;
        }

        .values-intro.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .values-intro h2 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .values-intro p {
            font-size: clamp(16px, 2vw, 20px);
            color: var(--muted);
            line-height: 1.7;
        }

        .value-statement {
            padding: 40px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s;
        }

        .value-statement:first-child {
            border-top: none;
            padding-top: 0;
        }

        .value-statement.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .value-statement h3 {
            font-size: clamp(22px, 3vw, 28px);
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 20px;
            color: var(--text);
            letter-spacing: -0.01em;
        }

        .value-details {
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding-left: 28px;
            border-left: 2px solid rgba(255, 255, 255, 0.08);
        }

        .value-details p {
            font-size: clamp(15px, 1.6vw, 16px);
            line-height: 1.7;
            color: rgba(185, 185, 185, 0.85);
        }

        .values-closing {
            text-align: center;
            margin-top: 64px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s;
        }

        .values-closing.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .values-closing p {
            font-size: clamp(16px, 1.8vw, 18px);
            color: rgba(185, 185, 185, 0.8);
            line-height: 1.6;
            max-width: 560px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .values-section {
                padding: 64px 24px 56px;
            }

            .values-intro {
                margin-bottom: 48px;
            }

            .value-statement {
                padding: 32px 0;
            }

            .value-details {
                padding-left: 20px;
                gap: 12px;
            }

            .values-closing {
                margin-top: 48px;
                padding-top: 32px;
            }
        }

        /* Filter Section */
        .filter-section {
            background: radial-gradient(ellipse at center, #141418 0%, #0B0B0C 100%);
        }

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

        .filter-card {
            padding: 48px;
            background: rgba(17, 17, 20, 0.5);
            border: 1px solid var(--border);
            border-radius: 32px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s;
            display: flex;
            flex-direction: column;
        }

        .filter-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .filter-badge {
            display: inline-block;
            padding: 6px 16px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border-radius: 9999px;
            margin-bottom: 24px;
        }

        .filter-badge.positive {
            background: rgba(245, 245, 245, 0.1);
            color: var(--text);
        }

        .filter-badge.negative {
            background: rgba(245, 245, 245, 0.05);
            color: var(--muted);
        }

        .filter-list {
            list-style: none;
            flex: 1;
        }

        .filter-list li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .filter-list li:last-child {
            margin-bottom: 0;
        }

        .filter-list li span:first-child {
            margin-top: 4px;
            flex-shrink: 0;
        }

        .filter-list li span:last-child {
            white-space: nowrap;
        }

        .filter-list.positive li span:first-child {
            color: rgba(245, 245, 245, 0.6);
        }

        .filter-list.negative li span:first-child {
            color: rgba(185, 185, 185, 0.4);
        }

        .filter-list.positive li span:last-child {
            color: var(--muted);
        }

        .filter-list.positive li span:last-child strong {
            color: var(--text);
            font-weight: 500;
        }

        .filter-list.negative li span:last-child {
            color: rgba(185, 185, 185, 0.7);
        }

        .filter-note {
            text-align: center;
            margin-top: 64px;
            font-size: 15px;
            color: rgba(185, 185, 185, 0.75);
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        /* Contact Modal */
        .contact-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(11, 11, 12, 0);
            backdrop-filter: blur(0px);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 24px;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .contact-modal.active {
            display: flex;
            background: rgba(11, 11, 12, 0.9);
            backdrop-filter: blur(12px);
        }

        .contact-modal-content {
            background: rgba(17, 17, 20, 0.92);
            backdrop-filter: blur(32px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 32px;
            padding: 56px 52px 56px 56px;
            max-width: 640px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            overflow-x: hidden;
            position: relative;
            transform: scale(0.85) translateY(40px);
            opacity: 0;
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            scrollbar-gutter: stable;
        }

        .contact-modal.active .contact-modal-content {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .modal-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: transparent;
            border: none;
            color: rgba(245, 245, 245, 0.5);
            font-size: 32px;
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.2s;
            line-height: 1;
        }

        .modal-close:hover {
            color: rgba(245, 245, 245, 0.9);
        }

        .modal-header {
            margin-bottom: 40px;
            padding-right: 40px;
            padding-left: 40px;
        }

        .modal-header h3 {
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 16px;
            line-height: 1.2;
            text-align: center;
        }

        .modal-header p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--muted);
        }

        .modal-subtitle {
            margin-top: 12px;
            font-size: 15px !important;
            color: rgba(185, 185, 185, 0.7) !important;
        }

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

        .modal-form label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .modal-form .required {
            color: rgba(255, 99, 71, 0.8);
        }

        .modal-form input[type="text"],
        .modal-form input[type="email"],
        .modal-form input[type="tel"],
        .modal-form textarea {
            width: 100%;
            padding: 14px 20px;
            background: rgba(11, 11, 12, 0.8);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text);
            font-family: inherit;
            font-size: 16px;
            transition: all 0.2s;
        }

        .modal-form input::placeholder,
        .modal-form textarea::placeholder {
            color: rgba(185, 185, 185, 0.4);
        }

        .modal-form input:focus,
        .modal-form textarea:focus {
            outline: none;
            border-color: rgba(245, 245, 245, 0.2);
            background: rgba(11, 11, 12, 0.9);
        }

        .modal-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .btn-submit {
            width: 100%;
            margin-top: 16px;
            font-size: 18px;
            padding: 18px;
        }

        /* Full Form Styles for Modal */
        .modal-form .form-container {
            background: transparent;
            border: none;
            padding: 0;
            margin: 0;
        }

        .modal-form .form-section {
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .modal-form .form-section:last-of-type {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .modal-form .section-number {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            color: rgba(185, 185, 185, 0.6);
            margin-bottom: 24px;
            margin-top: 8px;
            letter-spacing: 0.1em;
        }

        .modal-form .section-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .modal-form .section-subtitle {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 24px;
        }

        .modal-form .helper {
            font-weight: 400;
            color: rgba(185, 185, 185, 0.6);
            font-size: 12px;
            display: block;
            margin-top: 4px;
        }

        .modal-form .checkbox-group,
        .modal-form .radio-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .modal-form .checkbox-item,
        .modal-form .radio-item,
        .modal-form .selection-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 20px;
            background: rgba(185, 185, 185, 0.08);
            border: 2px solid rgba(185, 185, 185, 0.15);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            margin-bottom: 12px;
            color: rgba(185, 185, 185, 0.9);
            font-size: 15px;
            font-weight: 500;
            line-height: 1.4;
            text-align: center;
            user-select: none;
        }

        .modal-form .checkbox-item:hover,
        .modal-form .radio-item:hover,
        .modal-form .selection-item:hover {
            background: rgba(185, 185, 185, 0.12);
            border-color: rgba(185, 185, 185, 0.25);
        }

        .modal-form .selection-item.selected {
            background: rgba(185, 185, 185, 0.18);
            border-color: rgba(185, 185, 185, 0.4);
            color: rgba(245, 245, 245, 0.95);
        }

        .modal-form .checkbox-item input,
        .modal-form .radio-item input {
            margin: 0;
            cursor: pointer;
            flex-shrink: 0;
        }

        .modal-form .checkbox-item label,
        .modal-form .radio-item label {
            margin: 0;
            cursor: pointer;
            color: rgba(185, 185, 185, 0.9);
            font-size: 15px;
            font-weight: 500;
            line-height: 1.4;
            text-align: center;
        }

        .modal-form .checkbox-item input[type="checkbox"],
        .modal-form .radio-item input[type="radio"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: rgba(185, 185, 185, 0.8);
        }

        .modal-form .inline-input {
            display: inline-block;
            width: auto;
            min-width: 160px;
            margin-left: 8px;
            padding: 6px 12px;
            font-size: 14px;
        }

        .modal-form .link-input-group {
            display: flex;
            gap: 12px;
            margin-top: 8px;
        }

        .modal-form .link-input-group input[type="url"] {
            flex: 1;
        }

        .modal-form .why-box {
            margin-top: 12px;
            padding: 12px 14px;
            background: rgba(245, 245, 245, 0.03);
            border-left: 2px solid rgba(245, 245, 245, 0.2);
            border-radius: 8px;
            font-size: 12px;
            color: var(--muted);
            line-height: 1.6;
        }

        .modal-form .why-box strong {
            color: var(--text);
            font-weight: 500;
        }

        .modal-form .submit-section {
            text-align: center;
            padding-top: 24px;
            margin-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        /* Multi-Step Form Styles */
        .form-step {
            display: none;
            animation: fadeInStep 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .form-step.active {
            display: block;
        }

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

        /* Progress Indicator */
        .form-progress {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 48px;
            padding: 0;
        }

        .progress-step {
            flex: 1;
            height: 3px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 2px;
            margin: 0 3px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .progress-step:first-child {
            margin-left: 0;
        }

        .progress-step:last-child {
            margin-right: 0;
        }

        .progress-step.completed,
        .progress-step.active {
            background: rgba(245, 245, 245, 0.3);
        }

        .progress-step.active {
            background: var(--text);
        }

        /* Floating Label Input Fields */
        .floating-input {
            position: relative;
            margin-bottom: 24px;
        }

        .floating-input input,
        .floating-input textarea,
        .floating-input select {
            width: 100%;
            padding: 20px 16px 8px 16px;
            background: rgba(11, 11, 12, 0.6);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text);
            font-family: inherit;
            font-size: 16px;
            text-align: left;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .floating-input input::placeholder,
        .floating-input textarea::placeholder {
            color: transparent;
        }

        .floating-input input:focus,
        .floating-input textarea:focus,
        .floating-input select:focus {
            outline: none;
            border-color: rgba(245, 245, 245, 0.3);
            background: rgba(11, 11, 12, 0.8);
        }

        .floating-input label {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(185, 185, 185, 0.5);
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
            background: transparent;
        }

        .floating-input textarea + label {
            top: 24px;
            transform: none;
        }

        /* Label disappears when actively typing */
        .floating-input input:focus + label,
        .floating-input textarea:focus + label,
        .floating-input select:focus + label {
            opacity: 0;
        }

        /* Label appears above when field has content but not focused */
        .floating-input input:not(:placeholder-shown):not(:focus) + label,
        .floating-input textarea:not(:placeholder-shown):not(:focus) + label,
        .floating-input select:not([value=""]):not(:focus) + label {
            top: -10px;
            transform: translateY(0);
            font-size: 13px;
            color: var(--text);
            font-weight: 500;
            letter-spacing: 0.02em;
            background: var(--bg);
            padding: 0 6px;
            opacity: 1;
        }

        /* ========================================
           FORM INPUT OPTIONS - TESZT VERZIÓK
           ======================================== */

        /* OPCIÓ 1: Static Label Above (Always Visible) */
        .form-option-1 .input-wrapper {
            margin-bottom: 24px;
        }

        .form-option-1 .input-label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: rgba(185, 185, 185, 0.7);
            margin-bottom: 8px;
            letter-spacing: 0.02em;
        }

        .form-option-1 input,
        .form-option-1 textarea {
            width: 100%;
            padding: 16px;
            background: rgba(11, 11, 12, 0.6);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text);
            font-family: inherit;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-option-1 input:focus,
        .form-option-1 textarea:focus {
            outline: none;
            border-color: rgba(245, 245, 245, 0.3);
            background: rgba(11, 11, 12, 0.8);
        }

        .form-option-1 input::placeholder,
        .form-option-1 textarea::placeholder {
            color: rgba(185, 185, 185, 0.3);
        }

        /* OPCIÓ 2: Material Design (Smooth Placeholder → Label) */
        .form-option-2 .input-wrapper {
            position: relative;
            margin-bottom: 24px;
        }

        .form-option-2 input,
        .form-option-2 textarea {
            width: 100%;
            padding: 18px 16px 10px 16px;
            background: rgba(11, 11, 12, 0.6);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text);
            font-family: inherit;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-option-2 input:focus,
        .form-option-2 textarea:focus {
            outline: none;
            border-color: rgba(245, 245, 245, 0.3);
            background: rgba(11, 11, 12, 0.8);
        }

        .form-option-2 .input-label {
            position: absolute;
            left: 16px;
            top: 16px;
            color: rgba(185, 185, 185, 0.5);
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            transform-origin: left top;
        }

        .form-option-2 input:focus ~ .input-label,
        .form-option-2 input:not(:placeholder-shown) ~ .input-label,
        .form-option-2 textarea:focus ~ .input-label,
        .form-option-2 textarea:not(:placeholder-shown) ~ .input-label {
            transform: translateY(-20px) scale(0.85);
            color: rgba(245, 245, 245, 0.8);
            font-weight: 500;
        }

        .form-option-2 input::placeholder,
        .form-option-2 textarea::placeholder {
            color: transparent;
        }

        /* OPCIÓ 3: Label to Border (Outlined Style) */
        .form-option-3 .input-wrapper {
            position: relative;
            margin-bottom: 24px;
        }

        .form-option-3 input,
        .form-option-3 textarea {
            width: 100%;
            padding: 16px;
            background: rgba(11, 11, 12, 0.6);
            border: 2px solid rgba(185, 185, 185, 0.15);
            border-radius: 12px;
            color: var(--text);
            font-family: inherit;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-option-3 input:focus,
        .form-option-3 textarea:focus {
            outline: none;
            border-color: rgba(245, 245, 245, 0.4);
            background: rgba(11, 11, 12, 0.8);
        }

        .form-option-3 .input-label {
            position: absolute;
            left: 16px;
            top: 16px;
            color: rgba(185, 185, 185, 0.5);
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            background: var(--bg);
            padding: 0 6px;
        }

        .form-option-3 input:focus ~ .input-label,
        .form-option-3 input:not(:placeholder-shown) ~ .input-label,
        .form-option-3 textarea:focus ~ .input-label,
        .form-option-3 textarea:not(:placeholder-shown) ~ .input-label {
            top: -10px;
            font-size: 12px;
            color: rgba(245, 245, 245, 0.8);
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .form-option-3 input::placeholder,
        .form-option-3 textarea::placeholder {
            color: transparent;
        }

        /* OPCIÓ 4: Side-by-Side (Traditional Layout) */
        .form-option-4 .input-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 24px;
        }

        .form-option-4 .input-label {
            min-width: 140px;
            font-size: 14px;
            font-weight: 500;
            color: rgba(185, 185, 185, 0.8);
            text-align: right;
        }

        .form-option-4 input,
        .form-option-4 textarea {
            flex: 1;
            padding: 16px;
            background: rgba(11, 11, 12, 0.6);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text);
            font-family: inherit;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-option-4 input:focus,
        .form-option-4 textarea:focus {
            outline: none;
            border-color: rgba(245, 245, 245, 0.3);
            background: rgba(11, 11, 12, 0.8);
        }

        .form-option-4 input::placeholder,
        .form-option-4 textarea::placeholder {
            color: rgba(185, 185, 185, 0.3);
        }

        /* OPCIÓ 5: Label Inside → Slides Up (Custom - Boxes Move Down) */
        .form-option-5 .input-wrapper {
            position: relative;
            margin-bottom: 24px;
            padding-top: 0;
            transition: padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* When input has value, add space at top for label */
        .form-option-5 .input-wrapper.has-value {
            padding-top: 22px;
        }

        .form-option-5 input,
        .form-option-5 textarea {
            width: 100%;
            padding: 16px;
            background: rgba(11, 11, 12, 0.6);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text);
            font-family: inherit;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-option-5 input:focus,
        .form-option-5 textarea:focus {
            outline: none;
            border-color: rgba(245, 245, 245, 0.3);
            background: rgba(11, 11, 12, 0.8);
        }

        .form-option-5 .input-label {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            /* Same styling as Option 1 static label */
            font-size: 13px;
            font-weight: 500;
            color: rgba(185, 185, 185, 0.7);
            letter-spacing: 0.02em;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        /* Textarea label starts at top-left, not centered */
        .form-option-5 textarea ~ .input-label {
            top: 16px;
            transform: translateY(0);
        }

        /* Label slides up when input has value - smaller gap */
        .form-option-5 .input-wrapper.has-value .input-label {
            top: -10px;
            left: 0;
            transform: translateY(0);
            font-size: 13px;
            font-weight: 500;
            color: rgba(185, 185, 185, 0.7);
            letter-spacing: 0.02em;
        }

        /* Label also slides up on focus (even without value) */
        .form-option-5 .input-wrapper:focus-within .input-label {
            top: -10px;
            left: 0;
            transform: translateY(0);
            font-size: 13px;
            font-weight: 500;
            color: rgba(185, 185, 185, 0.7);
            letter-spacing: 0.02em;
        }

        .form-option-5 .input-wrapper:focus-within {
            padding-top: 22px;
        }

        .form-option-5 input::placeholder,
        .form-option-5 textarea::placeholder {
            color: rgba(185, 185, 185, 0.4);
            font-size: 15px;
        }

        /* Dynamic Field Animation */
        .dynamic-field {
            opacity: 0;
            max-height: 0;
            margin-top: 0 !important;
            overflow: hidden;
            transform: translateY(-10px);
            pointer-events: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .dynamic-field.visible {
            opacity: 1;
            max-height: 300px;
            margin-top: 28px !important;
            margin-bottom: 0 !important;
            transform: translateY(0);
            pointer-events: auto;
            overflow: visible;
        }

        /* Specific spacing for referral field (between "Ajánlás" and "Egyéb" options) */
        #referral_name_field.visible {
            margin-bottom: 16px !important;
        }

        /* Form Navigation Buttons */
        .form-navigation {
            display: flex;
            gap: 16px;
            margin-top: 40px;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .btn-prev,
        .btn-next {
            flex: 1;
            padding: 18px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            border: none;
            font-family: inherit;
        }

        .btn-prev {
            background: rgba(255, 255, 255, 0.05);
            color: var(--muted);
            border: 1px solid var(--border);
        }

        .btn-prev:hover:not(:disabled) {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(245, 245, 245, 0.2);
            color: var(--text);
            transform: translateY(-1px);
        }

        .btn-next {
            background: var(--text);
            color: var(--bg);
            font-weight: 600;
        }

        .btn-next:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 245, 245, 0.2);
        }

        .btn-prev:disabled {
            opacity: 0.2;
            cursor: not-allowed;
        }

        /* Custom Scrollbar for Modals */
        .contact-modal-content::-webkit-scrollbar,
        .service-modal-content::-webkit-scrollbar {
            width: 6px;
        }

        .contact-modal-content::-webkit-scrollbar-track,
        .service-modal-content::-webkit-scrollbar-track {
            background: transparent;
            margin: 32px 4px;
            border-radius: 10px;
        }

        .contact-modal-content::-webkit-scrollbar-thumb,
        .service-modal-content::-webkit-scrollbar-thumb {
            background: rgba(245, 245, 245, 0.15);
            border-radius: 10px;
            border: 2px solid transparent;
            background-clip: padding-box;
        }

        .contact-modal-content::-webkit-scrollbar-thumb:hover,
        .service-modal-content::-webkit-scrollbar-thumb:hover {
            background: rgba(245, 245, 245, 0.25);
            background-clip: padding-box;
        }

        /* Contact Section */
        .contact-section {
            background: var(--bg);
        }

        form {
            max-width: 1024px;
            margin: 0 auto;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 24px;
        }

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

        label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--muted);
            margin-bottom: 8px;
        }

        input, textarea, select {
            width: 100%;
            padding: 14px 20px;
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: 16px;
            color: var(--text);
            font-family: inherit;
            font-size: 16px;
            transition: all 0.2s;
        }

        input::placeholder,
        textarea::placeholder {
            color: rgba(185, 185, 185, 0.4);
        }

        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: rgba(245, 245, 245, 0.4);
            box-shadow: 0 0 0 3px rgba(245, 245, 245, 0.1);
        }

        textarea {
            resize: none;
            min-height: 120px;
        }

        .submit-wrapper {
            padding-top: 16px;
        }

        button[type="submit"] {
            padding: 16px 48px;
            background: var(--text);
            color: var(--bg);
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 9999px;
            cursor: pointer;
            transition: all 0.2s;
        }

        button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .mailto-link {
            font-size: 12px;
            color: rgba(185, 185, 185, 0.6);
            margin-top: 16px;
        }

        .mailto-link a {
            color: rgba(245, 245, 245, 0.7);
            text-decoration: underline;
        }

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

        .success-message {
            display: none;
            padding: 48px;
            background: rgba(17, 17, 20, 0.5);
            border: 1px solid var(--border);
            border-radius: 32px;
            text-align: center;
        }

        .success-message.show {
            display: block;
        }

        .success-icon {
            width: 64px;
            height: 64px;
            background: rgba(245, 245, 245, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 24px;
        }

        .success-message h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .success-message p {
            color: var(--muted);
            line-height: 1.7;
        }

        /* Footer */
        footer {
            padding: 80px 48px 64px;
            background: var(--panel);
            border-top: 1px solid var(--border);
        }

        .footer-content {
            max-width: 1152px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-logo {
            opacity: 0.6;
            transition: opacity 0.2s;
            display: inline-block;
            margin-bottom: 32px;
        }

        .footer-logo:hover {
            opacity: 1;
        }

        .footer-logo img {
            max-width: 85px;
            width: auto;
            height: auto;
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: var(--muted);
            max-width: 512px;
            margin: 0 auto 32px;
        }

        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-nav a {
            font-size: 14px;
            color: var(--muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-nav a:hover {
            color: var(--text);
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid var(--border);
            font-size: 12px;
            color: rgba(185, 185, 185, 0.6);
        }

        /* Mobile */
        @media (max-width: 768px) {
            nav {
                padding: 20px 24px;
                flex-direction: column;
                gap: 20px;
            }

            .logo-left,
            .logo-right {
                position: static;
            }

            .logo-left img {
                height: 32px;
            }

            .logo-right img {
                height: 40px;
            }

            .nav-links {
                position: static;
                transform: none;
                gap: 16px;
                font-size: 13px;
            }

            section {
                padding: 64px 24px;
            }

            .hero {
                padding: 120px 24px 80px;
            }

            .symptoms-grid,
            .services-grid,
            .values-grid,
            .filter-grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                grid-column: span 1 !important;
            }

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

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

            .form-row {
                grid-template-columns: 1fr;
            }

            footer {
                padding: 64px 24px 48px;
            }

            .footer-nav {
                flex-direction: column;
                gap: 16px;
            }

            .contact-modal-content {
                padding: 32px 24px;
                border-radius: 24px;
            }

            .modal-header {
                margin-bottom: 32px;
                padding-right: 0;
                padding-left: 0;
            }

            .modal-header h3 {
                font-size: 28px;
            }

            .contact-modal {
                padding: 16px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        /* Cookie Banner - MEDIASCAPE minimal card style */
        .cookie-banner {
            position: fixed;
            bottom: 24px;
            right: 24px;
            transform: translateX(120%);
            max-width: 420px;
            background: linear-gradient(135deg, rgba(15, 15, 18, 0.92) 0%, rgba(20, 20, 24, 0.92) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 20px 24px;
            z-index: 10002;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cookie-banner.show {
            transform: translateX(0);
        }

        .cookie-content {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .cookie-text {
            flex: 1;
        }

        .cookie-text h4 {
            font-size: 15px;
            font-weight: 600;
            color: rgba(245, 245, 245, 0.95);
            margin: 0 0 6px 0;
            letter-spacing: -0.01em;
        }

        .cookie-text p {
            font-size: 13px;
            line-height: 1.5;
            color: rgba(185, 185, 185, 0.85);
            margin: 0;
        }

        .cookie-actions {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
            justify-content: flex-end;
        }

        .cookie-btn {
            padding: 10px 20px;
            font-size: 13px;
            font-weight: 500;
            border-radius: 7px;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .cookie-btn-primary {
            background: rgba(245, 245, 245, 0.95);
            color: rgba(15, 15, 18, 1);
        }

        .cookie-btn-primary:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-1px);
        }

        .cookie-btn-secondary {
            background: transparent;
            color: rgba(185, 185, 185, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .cookie-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .cookie-banner {
                bottom: 20px;
                right: 20px;
                left: 20px;
                max-width: none;
                padding: 24px 20px;
                border-radius: 14px;
            }

            .cookie-content {
                gap: 20px;
            }

            .cookie-text h4 {
                font-size: 15px;
            }

            .cookie-text p {
                font-size: 13px;
            }

            .cookie-actions {
                flex-direction: column;
                gap: 10px;
            }

            .cookie-btn {
                width: 100%;
                padding: 14px 24px;
            }
        }

        @media (max-width: 480px) {
            .cookie-banner {
                bottom: 16px;
                width: calc(100% - 32px);
            }
        }
