        /* Local Fonts - DSGVO-konform */
        @font-face {
            font-family: 'Source Sans 3';
            font-style: normal;
            font-weight: 400 700;
            font-display: swap;
            src: url(../fonts/source-sans-3-latin.woff2) format('woff2');
        }
        @font-face {
            font-family: 'DM Serif Display';
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: url(../fonts/dm-serif-display-regular.woff2) format('woff2');
        }
        @font-face {
            font-family: 'DM Serif Display';
            font-style: italic;
            font-weight: 400;
            font-display: swap;
            src: url(../fonts/dm-serif-display-italic.woff2) format('woff2');
        }

        :root {
            /* Warme, einladende Farbpalette */
            --primary: #6b8caf;
            --primary-dark: #5a7a9a;
            --primary-light: #7d9cbf;
            --accent: #6b8caf;
            --accent-warm: #6b8caf;
            --accent-light: #8ba8c8;

            /* Warme Hintergründe */
            --bg-warm: #faf8f5;
            --bg-light: #f5f3ef;
            --bg-white: #ffffff;
            --bg-cream: #f9f7f4;

            /* Text mit wärmerem Unterton */
            --text-dark: #2c2c35;
            --text-body: #4a4a55;
            --text-muted: #6b6b78;
            --border-light: #e8e4df;

            /* Weichere, wärmere Schatten */
            --shadow-sm: 0 2px 8px rgba(107, 140, 175, 0.08);
            --shadow-md: 0 4px 16px rgba(107, 140, 175, 0.1);
            --shadow-lg: 0 12px 40px rgba(107, 140, 175, 0.15);
            --shadow-card: 0 4px 24px rgba(107, 140, 175, 0.08);
            --shadow-warm: 0 8px 32px rgba(107, 140, 175, 0.12);
            --shadow-glow: 0 0 40px rgba(107, 140, 175, 0.2);

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

            /* Charaktervolle Fonts */
            --font-main: 'Source Sans 3', -apple-system, sans-serif;
            --font-display: 'DM Serif Display', Georgia, serif;

            --transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: all 1s cubic-bezier(0.4, 0, 0.2, 1);

            --terracotta: #6b8caf;
            --green: #5a9a6e;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-body);
            background: var(--bg-white);
            overflow-x: hidden;
        }

        ::selection {
            background: var(--primary);
            color: white;
        }

        .container {
            width: 100%;
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .mobile-block {
            display: inline;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-light);
            transition: var(--transition);
        }

        .nav.scrolled {
            box-shadow: var(--shadow-sm);
        }

        .nav-inner {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 56px;
        }

        .nav-logo {
            font-family: var(--font-main);
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

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

        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-body);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
        }

        /* Underline Animation */
        .nav-links a:not(.nav-cta)::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:not(.nav-cta):hover::after {
            width: 100%;
        }

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

        .nav-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white !important;
            padding: 8px 20px;
            border-radius: 100px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(107, 140, 175, 0.25);
            opacity: 0;
            transform: translateY(-10px);
            pointer-events: none;
            transition: opacity 1.6s ease, transform 1.6s ease;
        }

        .nav.past-hero .nav-cta {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
            animation: pulse-nav 3s ease-in-out infinite;
        }

        /* Nav CTA Shimmer */
        .nav-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 255, 255, 0) 40%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 60%,
                transparent 100%
            );
            animation: shimmer 3s ease-in-out infinite;
            animation-delay: 1.5s;
        }

        .nav-cta:hover {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
            transform: translateY(-2px);
        }

        @keyframes pulse-nav {
            0%, 100% {
                box-shadow: 0 4px 16px rgba(107, 140, 175, 0.25);
            }
            50% {
                box-shadow: 0 4px 16px rgba(107, 140, 175, 0.25),
                            0 0 0 8px rgba(107, 140, 175, 0.1);
            }
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 24px;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .mobile-cta {
            display: none;
            padding: 10px 18px;
            background: linear-gradient(135deg, #3a4a5c 0%, #2a3a4c 100%);
            color: white;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 100px;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.6s ease;
            pointer-events: none;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(42, 58, 76, 0.3);
        }

        .nav.past-hero .mobile-cta {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
            animation: pulse 3s ease-in-out infinite;
        }

        .nav.menu-open .mobile-cta {
            opacity: 0;
            transform: translateY(-10px);
            pointer-events: none;
        }

        .mobile-cta:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 6px 20px rgba(42, 58, 76, 0.4);
        }

        /* Shimmer effect for mobile CTA */
        .mobile-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 255, 255, 0) 40%,
                rgba(255, 255, 255, 0.4) 50%,
                rgba(255, 255, 255, 0) 60%,
                transparent 100%
            );
            animation: shimmer 3s ease-in-out infinite;
            animation-delay: 1s;
        }

        /* Hero Section */
        .hero {
            padding: 80px 0 40px;
            text-align: center;
            background: linear-gradient(
                180deg,
                #f9f9f9 0%,
                #f7f7f7 40%,
                var(--bg-white) 100%
            );
            position: relative;
            overflow: hidden;
        }

        /* Subtle noise texture */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.025;
            pointer-events: none;
        }

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: var(--font-main);
            font-size: clamp(38px, 5vw, 56px);
            font-weight: 600;
            line-height: 1.2;
            color: var(--text-dark);
            margin-bottom: 18px;
            opacity: 0;
            transform: translateY(24px);
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
            letter-spacing: -0.02em;
        }

        .hero h1 .highlight {
            color: var(--accent-warm);
        }

        .hero-subtitle {
            font-size: 22px;
            color: var(--text-body);
            margin-bottom: 2px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(24px);
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
            line-height: 1.6;
        }

        .hero-text {
            font-size: 22px;
            color: var(--text-body);
            margin-bottom: 32px;
            opacity: 0;
            transform: translateY(24px);
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
            line-height: 1.6;
        }

        .hero-profile {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(24px) scale(0.98);
            animation: fadeInUpScale 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
        }

        .hero-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 14px;
            box-shadow:
                0 8px 32px rgba(107, 140, 175, 0.15),
                0 0 0 4px white,
                0 0 0 5px var(--border-light);
            transition: var(--transition);
        }

        .hero-image:hover {
            transform: scale(1.03);
            box-shadow:
                0 12px 40px rgba(107, 140, 175, 0.2),
                0 0 0 4px white,
                0 0 0 5px var(--accent-warm);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 10%;
            transition: var(--transition);
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            transform: translateZ(0);
        }

        .hero-author-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 0;
            background: transparent;
            border-radius: 0;
            box-shadow: none;
            border: none;
            transition: var(--transition);
        }

        .hero-author-pill:hover {
            box-shadow: none;
            border-color: transparent;
        }

        .hero-author-pill svg {
            width: 16px;
            height: 16px;
            color: var(--green);
        }

        .hero-author-name {
            font-family: var(--font-main);
            font-size: 20px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .hero-author-separator {
            color: var(--text-muted);
            opacity: 0.5;
        }

        .hero-author-cert {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 14px;
            color: var(--green);
            background: rgba(34, 197, 94, 0.1);
            padding: 4px 10px;
            border-radius: 100px;
            border: 1px solid rgba(34, 197, 94, 0.25);
        }

        .hero-author-cert svg {
            width: 12px;
            height: 12px;
        }

        .hero-badges {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 48px;
        }

        .hero-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-body);
            padding: 12px 20px;
            background: white;
            border-radius: 100px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .hero-badge:nth-child(1) { animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards; }
        .hero-badge:nth-child(2) { animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards; }
        .hero-badge:nth-child(3) { animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards; }

        .hero-badge:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary);
        }

        .hero-badge svg {
            width: 18px;
            height: 18px;
            color: var(--primary);
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
        }

        .trust-badge svg {
            width: 16px;
            height: 16px;
            color: var(--primary);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 32px;
            font-family: var(--font-main);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 100px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow:
                0 4px 16px rgba(107, 140, 175, 0.25),
                inset 0 1px 0 rgba(255,255,255,0.1);
            position: relative;
            overflow: hidden;
        }

        /* Shimmer-Effekt für alle Primary Buttons */
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 255, 255, 0) 40%,
                rgba(255, 255, 255, 0.35) 50%,
                rgba(255, 255, 255, 0) 60%,
                transparent 100%
            );
            animation: shimmer 3.5s ease-in-out infinite;
            z-index: 1;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
            opacity: 0;
            transition: var(--transition);
            z-index: 0;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow:
                0 8px 28px rgba(107, 140, 175, 0.3),
                inset 0 1px 0 rgba(255,255,255,0.15);
        }

        .btn-primary:hover::after {
            opacity: 1;
        }

        .btn-primary span,
        .btn-primary:not(:empty) {
            position: relative;
            z-index: 2;
        }

        .btn-primary:active {
            transform: translateY(-1px) scale(1);
        }

        .btn-primary svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease;
            vertical-align: middle;
            margin-top: -1px;
        }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            background: var(--bg-warm);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* Hero CTA Button mit Pulse & Shimmer */
        .btn-hero-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            padding: 8px 40px;
            font-family: var(--font-main);
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 100px;
            border: none;
            cursor: pointer;
            background: linear-gradient(135deg, #3a4a5c 0%, #2a3a4c 100%);
            color: white;
            position: relative;
            overflow: hidden;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow:
                0 8px 32px rgba(42, 58, 76, 0.35),
                0 2px 8px rgba(0, 0, 0, 0.15);
            animation: pulse 3s ease-in-out infinite;
        }

        .btn-hero-cta:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow:
                0 12px 40px rgba(42, 58, 76, 0.45),
                0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .btn-hero-cta:active {
            transform: translateY(-2px) scale(1);
        }

        /* Shimmer / Glanz-Effekt */
        .btn-hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 255, 255, 0) 40%,
                rgba(255, 255, 255, 0.4) 50%,
                rgba(255, 255, 255, 0) 60%,
                transparent 100%
            );
            animation: shimmer 3s ease-in-out infinite;
            animation-delay: 1s;
        }

        /* Subtle inner glow */
        .btn-hero-cta::after {
            content: '';
            position: absolute;
            inset: 1px;
            border-radius: 100px;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .btn-hero-cta span {
            position: relative;
            z-index: 1;
        }

        .btn-hero-cta svg {
            width: 20px;
            height: 20px;
            position: relative;
            z-index: 1;
            transition: transform 0.6s ease;
        }

        .btn-hero-cta:hover svg {
            transform: translateX(4px);
        }

        /* Pulse Animation */
        @keyframes pulse {
            0%, 100% {
                box-shadow:
                    0 8px 32px rgba(42, 58, 76, 0.35),
                    0 2px 8px rgba(0, 0, 0, 0.15),
                    0 0 0 0 rgba(107, 140, 175, 0);
            }
            50% {
                box-shadow:
                    0 8px 32px rgba(42, 58, 76, 0.35),
                    0 2px 8px rgba(0, 0, 0, 0.15),
                    0 0 0 12px rgba(107, 140, 175, 0.15);
            }
        }

        /* Shimmer Animation */
        @keyframes shimmer {
            0% {
                left: -100%;
            }
            50%, 100% {
                left: 100%;
            }
        }

        .hero-cta-wrapper {
            margin-top: 32px;
            opacity: 0;
            transform: translateY(24px);
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.05s forwards;
        }

        .scroll-indicator {
            margin-top: 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            opacity: 0;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.4s forwards;
        }

        .scroll-indicator span {
            font-size: 13px;
            color: var(--text-muted);
            letter-spacing: 1px;
        }

        .scroll-indicator-arrow {
            width: 24px;
            height: 40px;
            border: 2px solid var(--border-light);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            padding-top: 6px;
        }

        .scroll-indicator-arrow::before {
            content: '↓';
            font-size: 16px;
            color: var(--primary);
            line-height: 1;
            animation: scrollBounce 1.5s ease-in-out infinite;
        }

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

        /* Section Styles */
        .section {
            padding: 70px 0;
            position: relative;
        }

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

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

        .section-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent-warm);
            margin-bottom: 18px;
            padding: 6px 16px;
            background: linear-gradient(135deg, rgba(107, 140, 175, 0.1) 0%, rgba(107, 140, 175, 0.05) 100%);
            border-radius: 100px;
        }

        .section-header h2 {
            font-family: var(--font-main);
            font-size: clamp(30px, 4vw, 44px);
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 18px;
            letter-spacing: -0.01em;
            line-height: 1.25;
        }

        .section-header p {
            font-size: 17px;
            color: var(--text-muted);
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Situation Section */
        .situation-intro {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 56px;
            font-size: 18px;
            line-height: 1.85;
            color: var(--text-body);
        }

        .situation-intro strong {
            color: var(--text-dark);
            font-weight: 600;
        }

        .situation-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 56px;
        }

        .situation-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: var(--radius-lg);
            padding: 32px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            transition: var(--transition);
            position: relative;
        }

        .situation-card:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            border-color: rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.85);
        }

        .situation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent-warm));
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            opacity: 0.6;
        }

        .situation-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .situation-card-icon {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(107, 140, 175, 0.1);
            border-radius: 50%;
            color: var(--primary);
        }

        .situation-card-icon svg {
            width: 18px;
            height: 18px;
        }

        .situation-card-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
        }

        .situation-card h3 {
            font-family: var(--font-main);
            font-size: 20px;
            font-weight: 400;
            color: var(--text-dark);
            line-height: 1.55;
            font-style: italic;
            position: relative;
            padding-left: 24px;
            min-height: 80px;
            opacity: 0;
        }

        .situation-card.visible h3 {
            opacity: 1;
        }

        .situation-card h3::before {
            content: '„';
            font-size: 52px;
            font-family: Georgia, serif;
            color: var(--primary);
            opacity: 0.15;
            position: absolute;
            top: -15px;
            left: -5px;
            line-height: 1;
        }

        .situation-summary {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 52px;
            background: linear-gradient(135deg, white 0%, var(--bg-cream) 100%);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            position: relative;
        }

        .situation-summary::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: var(--radius-xl);
            padding: 1px;
            background: linear-gradient(135deg, rgba(107, 140, 175, 0.3), transparent, rgba(107, 140, 175, 0.2));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .situation-summary-highlight {
            font-family: var(--font-main);
            font-size: 24px;
            font-weight: 400;
            font-style: normal;
            color: var(--accent-warm);
            margin: 32px 0;
            padding: 0;
            background: none;
            border-radius: 0;
            display: block;
            border: none;
            line-height: 1.5;
        }

        .situation-summary p {
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 28px;
            color: var(--text-body);
        }

        .situation-summary strong {
            color: var(--text-dark);
            font-weight: 600;
        }

        .situation-note {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 44px;
            padding: 32px 40px;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            background: white;
            position: relative;
        }

        .situation-note::after {
            content: '';
            position: absolute;
            bottom: -22px;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 22px;
            background: linear-gradient(to bottom, var(--border-light), transparent);
        }

        .situation-note p {
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-body);
            margin-bottom: 12px;
        }

        .situation-note p:last-child {
            margin-bottom: 0;
            font-weight: 600;
            color: var(--text-dark);
        }

        /* Process Section */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .process-step {
            text-align: center;
            padding: 44px 32px;
            background: white;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            transition: var(--transition);
            position: relative;
        }

        .process-step:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-warm);
            border-color: transparent;
        }

        .process-icon {
            width: 72px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 26px;
            background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-light) 100%);
            border-radius: 50%;
            position: relative;
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }

        .process-step:hover .process-icon {
            background: linear-gradient(135deg, rgba(107, 140, 175, 0.15) 0%, rgba(107, 140, 175, 0.05) 100%);
            border-color: var(--accent-warm);
        }

        .process-icon svg {
            width: 30px;
            height: 30px;
            color: var(--primary);
            transition: var(--transition);
        }

        .process-step:hover .process-icon svg {
            color: var(--accent-warm);
        }

        .process-number {
            position: absolute;
            top: -6px;
            right: -6px;
            width: 26px;
            height: 26px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border-radius: 50%;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(107, 140, 175, 0.3);
        }

        .process-step h3 {
            font-family: var(--font-main);
            font-size: 24px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 14px;
        }

        .process-step p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.75;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            background: linear-gradient(135deg, rgba(107, 140, 175, 0.15) 0%, rgba(107, 140, 175, 0.1) 100%);
            border-radius: var(--radius-xl);
            z-index: -1;
        }

        .about-image img {
            width: 100%;
            max-width: 420px;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: translateY(-4px);
            box-shadow: var(--shadow-warm);
        }

        .about-content {
            padding-right: 20px;
        }

        .about-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent-warm);
            margin-bottom: 18px;
            padding: 6px 16px;
            background: linear-gradient(135deg, rgba(107, 140, 175, 0.1) 0%, rgba(107, 140, 175, 0.05) 100%);
            border-radius: 100px;
        }

        .about-content h2 {
            font-family: var(--font-main);
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 24px;
            line-height: 1.25;
            letter-spacing: -0.01em;
        }

        .about-badge {
            position: absolute;
            bottom: 16px;
            left: 16px;
            right: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            color: var(--text-dark);
            padding: 12px 18px;
            background: rgba(250, 248, 244, 0.95);
            backdrop-filter: blur(8px);
            border-radius: 12px;
            border: 1px solid var(--border-light);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .about-badge svg {
            width: 16px;
            height: 16px;
            color: var(--primary);
        }

        .about-badge-info {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .about-badge-name {
            font-weight: 600;
        }

        .about-badge-title {
            color: var(--text-muted);
        }

        .about-cert {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            color: var(--green);
            background: rgba(34, 197, 94, 0.1);
            padding: 4px 10px;
            border-radius: 100px;
            border: 1px solid rgba(34, 197, 94, 0.25);
            margin-left: 4px;
        }

        .about-cert svg {
            width: 12px;
            height: 12px;
        }

        .about-points {
            margin-bottom: 24px;
        }

        .about-point {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            margin-bottom: 22px;
        }

        .about-point-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-light) 100%);
            border-radius: 50%;
            color: var(--accent-warm);
            font-size: 15px;
            font-weight: 700;
            border: 1px solid var(--border-light);
        }

        .about-point p {
            font-family: var(--font-main);
            font-size: 18px;
            font-weight: 400;
            line-height: 1.6;
            color: var(--text-dark);
        }

        .about-point strong {
            font-weight: 400;
        }

        .about-highlight {
            padding: 26px 28px;
            background: var(--bg-cream);
            color: var(--text-dark);
            border-radius: var(--radius-md);
            margin: 28px 0;
            font-size: 16px;
            line-height: 1.75;
            display: flex;
            align-items: flex-start;
            gap: 18px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }

        .about-highlight::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(107, 140, 175, 0.05) 0%, transparent 70%);
            transform: translate(30%, -30%);
        }

        .about-highlight-icon {
            width: 28px;
            height: 28px;
            min-width: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(107, 140, 175, 0.15);
            border-radius: 50%;
            font-size: 12px;
            position: relative;
            z-index: 1;
            color: var(--primary);
        }

        .about-highlight strong {
            font-weight: 600;
        }

        .about-conclusion {
            font-family: var(--font-main);
            font-size: 18px;
            font-weight: 400;
            line-height: 1.6;
            color: var(--text-dark);
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .carousel-dots {
            display: none;
        }

        .testimonial-card {
            background: white;
            padding: 34px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            transition: var(--transition);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 24px;
            right: 28px;
            font-family: var(--font-main);
            font-size: 64px;
            line-height: 1;
            color: var(--bg-light);
            pointer-events: none;
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-warm);
            border-color: transparent;
        }

        .testimonial-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 22px;
        }

        .testimonial-stars svg {
            width: 18px;
            height: 18px;
            fill: var(--accent-warm);
            color: var(--accent-warm);
        }

        .testimonial-quote {
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-body);
            margin-bottom: 26px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(107, 140, 175, 0.2);
        }

        .testimonial-name {
            font-family: var(--font-main);
            font-size: 16px;
            font-weight: 400;
            color: var(--text-dark);
        }

        .testimonial-role {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* FAQ Section */
        .faq-grid {
            max-width: 720px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: var(--radius-md);
            margin-bottom: 14px;
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: var(--accent-warm);
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 22px;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: var(--font-main);
            font-size: 16px;
            font-weight: 500;
            color: var(--text-dark);
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-icon {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-left: 16px;
            background: var(--bg-warm);
            border-radius: 50%;
            transition: var(--transition);
            border: 1px solid var(--border-light);
        }

        .faq-icon svg {
            width: 14px;
            height: 14px;
            color: var(--text-muted);
            transition: var(--transition);
        }

        .faq-item.active .faq-icon {
            background: linear-gradient(135deg, var(--accent-warm) 0%, #8ba8c8 100%);
            border-color: transparent;
        }

        .faq-item.active .faq-icon svg {
            transform: rotate(180deg);
            color: white;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-answer-content {
            padding: 0 26px 26px;
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-muted);
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-more {
            text-align: center;
            margin-top: 52px;
        }

        .faq-more p {
            margin-bottom: 18px;
            color: var(--text-body);
            font-size: 17px;
        }

        /* Contact Section */
        .contact-section {
            padding: 110px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: radial-gradient(ellipse at top right, rgba(107, 140, 175, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .contact-section .container {
            position: relative;
            z-index: 1;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 52px;
        }

        .contact-profile {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 28px;
        }

        .contact-profile-image {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 14px;
            border: 3px solid rgba(255,255,255,0.3);
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
        }

        .contact-profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .contact-profile-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .contact-profile-name {
            font-family: var(--font-main);
            font-size: 20px;
            color: white;
        }

        .contact-profile-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: rgba(255,255,255,0.8);
            padding: 6px 14px;
            background: rgba(255,255,255,0.1);
            border-radius: 100px;
            border: 1px solid rgba(255,255,255,0.15);
        }

        .contact-profile-badge svg {
            width: 14px;
            height: 14px;
            color: #7ed687;
        }

        .contact-header h2 {
            font-family: var(--font-main);
            font-size: clamp(30px, 4vw, 40px);
            font-weight: 600;
            margin-bottom: 18px;
            letter-spacing: -0.01em;
        }

        .contact-header p {
            font-size: 17px;
            color: rgba(255,255,255,0.8);
            max-width: 480px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .contact-headline {
            font-size: 20px;
            font-weight: 600;
            color: white;
            margin-bottom: 4px;
        }

        .contact-subheadline {
            font-size: 18px;
            font-weight: 400;
            color: rgba(255,255,255,0.85);
            margin-bottom: 20px;
        }

        .contact-form {
            max-width: 560px;
            margin: 0 auto;
            background: white;
            padding: 24px;
            border-radius: var(--radius-xl);
            box-shadow:
                0 20px 50px rgba(0,0,0,0.2),
                0 0 0 1px rgba(255,255,255,0.1);
        }

        .form-group {
            margin-bottom: 12px;
            position: relative;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 14px 8px;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            font-family: var(--font-main);
            font-size: 15px;
            color: var(--text-dark);
            transition: var(--transition);
            background: var(--bg-warm);
        }

        .form-group label {
            position: absolute;
            left: 14px;
            top: 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            pointer-events: none;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
            padding: 0 4px;
        }

        .form-group label span {
            color: var(--accent-warm);
        }

        /* Floating Label Animation */
        .form-group input:focus + label,
        .form-group input:not(:placeholder-shown) + label,
        .form-group textarea:focus + label,
        .form-group textarea:not(:placeholder-shown) + label {
            top: -10px;
            left: 14px;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            background: white;
        }

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

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(107, 140, 175, 0.1);
        }

        .form-group textarea {
            min-height: 70px;
            resize: vertical;
            padding-top: 16px;
        }

        .form-group textarea + label {
            top: 12px;
        }

        .form-group textarea:focus + label,
        .form-group textarea:not(:placeholder-shown) + label {
            top: -10px;
        }

        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-top: 2px;
            margin-bottom: 12px;
        }

        .form-checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            min-width: 20px;
            margin-top: 2px;
            accent-color: var(--primary);
            cursor: pointer;
        }

        .form-checkbox label {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.5;
            cursor: pointer;
        }

        .form-checkbox label a {
            color: var(--primary);
            text-decoration: underline;
            transition: var(--transition);
        }

        .form-checkbox label a:hover {
            color: var(--primary-dark);
        }

        .form-checkbox label span {
            color: var(--accent-warm);
        }

        .form-submit {
            width: auto;
            padding: 12px 28px;
            margin-top: 8px;
            margin-left: auto;
            margin-right: auto;
            display: block;
            font-size: 15px;
        }

        .form-note {
            margin-top: 14px;
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
            line-height: 1.5;
        }

        .form-badge {
            text-align: center;
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid var(--border-light);
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .form-badge svg {
            width: 18px;
            height: 18px;
            color: var(--green);
        }

        /* CTA Section */
        .cta {
            padding: 110px 0;
            text-align: center;
            background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-light) 100%);
            position: relative;
        }

        .cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.02;
            pointer-events: none;
        }

        .cta .container {
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-family: var(--font-main);
            font-size: clamp(30px, 4vw, 40px);
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 18px;
            letter-spacing: -0.01em;
        }

        .cta p {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto 36px;
            line-height: 1.7;
        }

        .cta-badges {
            display: flex;
            justify-content: center;
            gap: 28px;
            margin-top: 36px;
            flex-wrap: wrap;
        }

        .cta-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-muted);
        }

        .cta-badge svg {
            width: 18px;
            height: 18px;
            color: var(--green);
        }

        /* Footer */
        .footer {
            padding: 80px 0 36px;
            background: linear-gradient(180deg, var(--primary-dark) 0%, #101a28 100%);
            color: white;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(107, 140, 175, 0.3), transparent);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 64px;
            margin-bottom: 52px;
        }

        .footer-brand .nav-logo {
            color: white;
            margin-bottom: 18px;
            display: inline-block;
            font-size: 24px;
        }

        .footer-brand p {
            font-size: 15px;
            color: rgba(255,255,255,0.65);
            line-height: 1.75;
            max-width: 300px;
        }

        .footer-column h4 {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-warm);
            margin-bottom: 26px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 16px;
        }

        .footer-column a {
            font-size: 15px;
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-column a:hover {
            color: white;
            padding-left: 4px;
        }

        .footer-bottom {
            padding-top: 36px;
            border-top: 1px solid rgba(255,255,255,0.08);
            font-size: 14px;
            color: rgba(255,255,255,0.45);
            text-align: center;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes subtlePulse {
            0%, 100% {
                box-shadow: 0 0 12px rgba(107, 140, 175, 0.3);
            }
            50% {
                box-shadow: 0 0 20px rgba(107, 140, 175, 0.5);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        /* Staggered reveal for cards */
        .situation-card.reveal:nth-child(1) { transition-delay: 0s; }
        .situation-card.reveal:nth-child(2) { transition-delay: 0s; }
        .situation-card.reveal:nth-child(3) { transition-delay: 0s; }

        .process-step.reveal:nth-child(1) { transition-delay: 0.1s; }
        .process-step.reveal:nth-child(2) { transition-delay: 0.2s; }
        .process-step.reveal:nth-child(3) { transition-delay: 0.3s; }

        .testimonial-card.reveal:nth-child(1) { transition-delay: 0.1s; }
        .testimonial-card.reveal:nth-child(2) { transition-delay: 0.2s; }
        .testimonial-card.reveal:nth-child(3) { transition-delay: 0.3s; }

        /* Responsive */
        @media (max-width: 968px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .about-image {
                order: -1;
                text-align: center;
                display: inline-block;
                width: 100%;
            }

            .about-image::before {
                display: none;
            }

            .about-image img {
                max-width: 360px;
            }

            .about-badge {
                font-size: 14px;
                padding: 8px 14px;
                left: 50%;
                transform: translateX(-50%);
                right: auto;
                justify-content: space-between;
                gap: 12px;
            }

            .about-badge-info {
                display: flex;
                flex-direction: column;
                gap: 2px;
            }

            .about-badge-name {
                font-size: 14px;
            }

            .about-badge-title {
                font-size: 12px;
            }

            .about-cert {
                white-space: nowrap;
            }

            .about-content {
                padding-right: 0;
                text-align: center;
            }

            .about-points {
                text-align: left;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }

            .situation-cards,
            .process-steps {
                grid-template-columns: 1fr;
                max-width: 480px;
                margin-left: auto;
                margin-right: auto;
            }

            /* Testimonials Carousel */
            .testimonials-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 16px;
                padding: 0 20px 20px;
                margin: 0 -20px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .testimonials-grid::-webkit-scrollbar {
                display: none;
            }

            .testimonial-card {
                flex: 0 0 85%;
                scroll-snap-align: center;
                max-width: 320px;
            }

            .carousel-dots {
                display: flex;
                justify-content: center;
                gap: 8px;
                margin-top: 20px;
            }

            .carousel-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: var(--border-light);
                transition: all 0.6s ease;
            }

            .carousel-dot.active {
                background: var(--primary);
                width: 24px;
                border-radius: 4px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .footer-brand p {
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .mobile-block {
                display: block;
                margin-top: 16px;
            }

            .nav-inner {
                justify-content: center;
                position: relative;
            }

            .mobile-toggle {
                position: absolute;
                right: 16px;
            }

            .mobile-toggle span {
                width: 28px;
                height: 3px;
            }

            .mobile-cta {
                margin: 0 auto;
            }

            .nav-links {
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 24px;
                gap: 20px;
                box-shadow: var(--shadow-md);
                transform: translateY(-150%);
                opacity: 0;
                transition: all 0.6s ease;
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
            }

            .mobile-toggle {
                display: flex;
            }

            .mobile-cta {
                display: block;
            }

            .nav-logo {
                font-size: 0;
            }

            .hero {
                padding: 80px 0 30px;
            }

            .hero-text {
                margin-top: 16px;
                margin-bottom: 20px;
                font-size: 21px;
            }

            .hero-profile {
                margin-bottom: 16px;
            }

            .hero-image {
                width: 120px;
                height: 120px;
                margin-bottom: 10px;
            }

            .hero h1 {
                font-size: 40px;
                line-height: 1.2;
                margin-bottom: 12px;
            }

            .hero-cta-wrapper {
                margin-top: 20px;
            }

            .btn-hero-cta {
                font-size: 15px;
                padding: 12px 28px;
                gap: 12px;
                white-space: nowrap;
            }

            .btn-primary {
                font-size: 15px;
                padding: 12px 24px;
                gap: 10px;
                white-space: nowrap;
            }

            .scroll-indicator {
                margin-top: 16px;
            }

            .hero h1 .highlight {
                font-size: inherit;
            }

            .hero-badges {
                display: none;
            }

            .section {
                padding: 50px 0;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .section-header h2 {
                font-size: 34px;
            }

            .contact-header h2,
            .cta h2 {
                font-size: 34px;
            }

            .about-content h2 {
                font-size: 30px;
            }

            .process-step h3 {
                font-size: 22px;
            }

            .situation-summary {
                padding: 32px 24px;
            }

            .contact-section {
                padding: 24px 0;
            }

            .situation-note {
                padding: 24px 20px;
            }

            .about-highlight {
                flex-direction: column;
                gap: 14px;
                text-align: center;
            }

            .contact-form {
                padding: 16px 14px;
            }

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

            .form-group input,
            .form-group textarea {
                padding: 10px 12px 6px;
                font-size: 14px;
            }

            .form-group label {
                top: 8px;
                font-size: 13px;
            }

            .form-group textarea {
                min-height: 50px;
                padding-top: 14px;
            }

            .form-checkbox {
                margin-top: 0;
                margin-bottom: 10px;
                gap: 6px;
            }

            .form-checkbox label {
                font-size: 12px;
            }

            .form-submit {
                padding: 10px 24px;
                font-size: 14px;
                margin-top: 4px;
            }

            .form-note {
                margin-top: 10px;
                font-size: 11px;
            }

            .form-badge {
                display: none;
            }

            .contact-header {
                margin-bottom: 16px;
            }

            .contact-profile-info {
                flex-direction: row;
                gap: 12px;
            }

            .cta-badges {
                flex-direction: column;
                align-items: center;
                gap: 16px;
            }

            .testimonial-card::before {
                display: none;
            }
        }

        /* WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            right: 48px;
            bottom: 100px;
            width: 72px;
            height: 72px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
            z-index: 999;
            transition: all 0.6s ease;
            animation: pulse-whatsapp 1.5s ease-in-out infinite;
        }

        .whatsapp-button:hover {
            transform: scale(1.15);
            box-shadow: 0 8px 36px rgba(37, 211, 102, 0.7);
        }

        .whatsapp-button svg {
            width: 36px;
            height: 36px;
            fill: white;
        }

        @keyframes pulse-whatsapp {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
            }
            50% {
                transform: scale(1.08);
                box-shadow: 0 8px 40px rgba(37, 211, 102, 0.8);
            }
        }

        @media (max-width: 768px) {
            .whatsapp-button {
                width: 64px;
                height: 64px;
                right: 16px;
                bottom: 80px;
                opacity: 0;
                pointer-events: none;
                transform: scale(0.8) translateY(20px);
                transition: opacity 1.6s ease, transform 1.6s ease, box-shadow 0.6s ease;
            }

            body.past-hero .whatsapp-button {
                opacity: 1;
                pointer-events: auto;
                transform: scale(1) translateY(0);
            }

            .whatsapp-button svg {
                width: 32px;
                height: 32px;
            }
        }
