
        @font-face {
            font-family: 'Josefin Sans';
            src: url('josefin-400.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'Josefin Sans';
            src: url('josefin-600.ttf') format('truetype');
            font-weight: 600;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'Josefin Sans';
            src: url('josefin-700.ttf') format('truetype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }
        :root {
            --primary: #352660;
            --secondary: #4b3d77;
            --accent: #a5cad9;
            --light: #c5e4ef;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Josefin Sans', sans-serif;
            color: var(--primary);
            line-height: 1.6;
            background: var(--white);
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 4rem;
        }
        
        /* Logo */
        .logo-bar {
            position: absolute;
            top: 3rem;
            left: 4rem;
            z-index: 10;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
        }
        
        .logo svg {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: block;
        }
        
        .logo-text {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: -0.02em;
        }
        
        .logo-text span {
            color: var(--accent);
        }
        
        /* Hero */
        .hero {
            background: linear-gradient(160deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            padding: 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: rgba(165, 202, 217, 0.08);
            border-radius: 50%;
            transform: rotate(-15deg);
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 60%;
            height: 100%;
            background: rgba(165, 202, 217, 0.05);
            border-radius: 50%;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 2;
            padding: 12rem 4rem 8rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .hero-text {
            padding: 2rem;
        }
        
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }
        
        .hero h1 span {
            color: var(--accent);
            display: block;
            margin-top: 0.5rem;
        }
        
        .hero-sub {
            font-size: 1.25rem;
            font-weight: 300;
            opacity: 0.85;
            margin-bottom: 3rem;
            line-height: 1.7;
        }
        
        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: var(--accent);
            color: var(--primary);
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            white-space: nowrap;
        }
        
        .hero-cta:hover {
            background: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }
        
        .hero-cta::after {
            content: '→';
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }
        
        .hero-cta:hover::after {
            transform: translateX(5px);
        }
        
        .hero-image {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-image-frame {
            width: 100%;
            max-width: 450px;
            height: 400px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
            border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }
        
        .hero-image-frame::before {
            content: '';
            position: absolute;
            inset: 20px;
            border: 2px solid rgba(53, 38, 96, 0.2);
            border-radius: inherit;
            z-index: 2;
            pointer-events: none;
        }
        
        .hero-image-frame img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: inherit;
            display: block;
        }
        
        /* Wave divider */
        .wave-divider {
            height: 100px;
            background: var(--light);
            position: relative;
        }
        
        .wave-divider::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            right: 0;
            height: 100px;
            background: var(--light);
            border-radius: 50% 50% 0 0 / 100% 100% 0 0;
        }
        
        /* Pain Points - Light background */
        .pain-section {
            background: var(--light);
            padding: 8rem 0;
            position: relative;
        }
        
        .pain-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 80px;
            background: var(--accent);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .section-header p {
            font-size: 1.2rem;
            color: var(--secondary);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .pain-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }
        
        .pain-item {
            padding: 2rem 0;
            border-top: 3px solid var(--accent);
        }
        
        .pain-item p {
            font-size: 1.15rem;
            color: var(--primary);
            line-height: 1.6;
            font-weight: 400;
        }
        
        /* Context section - Primary background */
        .context-section {
            background: var(--primary);
            color: var(--white);
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .context-section::before {
            content: '';
            position: absolute;
            right: -10%;
            top: -20%;
            width: 50%;
            height: 140%;
            background: rgba(165, 202, 217, 0.06);
            border-radius: 50%;
        }
        
        .context-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        
        .context-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.2;
        }
        
        .context-text h2 span {
            color: var(--accent);
        }
        
        .context-list {
            list-style: none;
        }
        
        .context-list li {
            font-size: 1.2rem;
            padding: 1.2rem 0;
            padding-left: 2rem;
            position: relative;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .context-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }
        
        .context-text > p {
            margin-top: 2rem;
            font-size: 1.2rem;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .context-visual {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .context-box {
            width: 100%;
            max-width: 350px;
            height: 350px;
            background: linear-gradient(135deg, rgba(165,202,217,0.15) 0%, rgba(197,228,239,0.08) 100%);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            border: 2px solid rgba(165,202,217,0.2);
            position: relative;
            overflow: hidden;
        }
        
        .context-box img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: inherit;
            display: block;
        }
        
        /* Toolkit Connection - White background */
        .toolkit-section {
            background: var(--white);
            padding: 8rem 0;
            position: relative;
        }
        
        .toolkit-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, var(--light), transparent);
        }
        
        .toolkit-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .toolkit-visual {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .toolkit-box {
            width: 100%;
            max-width: 380px;
            height: 280px;
            background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(53, 38, 96, 0.1);
            gap: 0.5rem;
        }
        

        .toolkit-box img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: inherit;
            display: block;
            transform: scale(1.15);
        }
        
        .toolkit-text h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .toolkit-text p {
            font-size: 1.15rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .toolkit-prices {
            list-style: none;
            margin: 1.75rem 0 2rem;
            border-top: 1px solid var(--accent);
        }

        .toolkit-prices li {
            display: grid;
            grid-template-columns: minmax(6rem, .7fr) 1.3fr;
            gap: 1rem;
            padding: .9rem 0;
            border-bottom: 1px solid var(--accent);
            color: var(--secondary);
            line-height: 1.5;
        }

        .toolkit-prices strong {
            color: var(--primary);
        }
        
        .toolkit-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.3rem;
            transition: all 0.3s ease;
        }
        
        .toolkit-link:hover {
            gap: 1rem;
            border-color: var(--primary);
        }
        
        /* Packages - Light background */
        .packages-section {
            background: var(--light);
            padding: 8rem 0;
            position: relative;
        }
        
        .packages-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, var(--white), transparent);
        }
        
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
            position: relative;
            z-index: 2;
        }
        
        .package-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2.5rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid var(--accent);
            position: relative;
            overflow: hidden;
        }
        
        .package-card:hover {
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(53, 38, 96, 0.08);
        }
        
        .package-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .package-card:hover::before {
            opacity: 1;
        }
        

        .package-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .package-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .package-desc {
            font-size: 0.9rem;
            color: var(--secondary);
            line-height: 1.5;
        }
        
        /* Bonus - White background */
        .bonus-section {
            background: var(--white);
            padding: 5rem 0;
            text-align: center;
            position: relative;
        }
        
        .bonus-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, var(--light), transparent);
        }
        
        .bonus-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .bonus-content h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .bonus-list {
            list-style: none;
            margin: 2rem 0;
            text-align: left;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .bonus-list li {
            padding: 1.2rem 0;
            border-bottom: 1px solid var(--accent);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
        }
        
        .bonus-list li span:first-child {
            font-weight: 600;
            color: var(--primary);
        }
        
        .bonus-list li span:last-child {
            font-weight: 700;
            color: var(--secondary);
            font-size: 1.2rem;
        }
        
        .bonus-note {
            font-size: 0.95rem;
            color: var(--secondary);
            margin-top: 1.5rem;
            line-height: 1.6;
        }
        
        /* CTA - Primary background */
        .cta-section {
            background: var(--primary);
            color: var(--white);
            padding: 8rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 60%;
            height: 200%;
            background: rgba(165, 202, 217, 0.04);
            border-radius: 50%;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .cta-content p {
            font-size: 1.3rem;
            opacity: 0.85;
            margin-bottom: 3rem;
            line-height: 1.6;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: var(--accent);
            color: var(--primary);
            padding: 1.5rem 3.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
        .cta-button:hover {
            background: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
        }
        
        .cta-button::after {
            content: '→';
            font-size: 1.4rem;
            transition: transform 0.3s ease;
        }
        
        .cta-button:hover::after {
            transform: translateX(8px);
        }
        
        .cta-note {
            margin-top: 3rem;
            font-size: 1.1rem;
            opacity: 0.7;
            line-height: 1.6;
        }
        
        /* FAQ - White background */
        .faq-section {
            background: var(--white);
            padding: 6rem 0;
            position: relative;
        }
        
        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, var(--light), transparent);
        }
        
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem 4rem;
            margin-top: 3rem;
            position: relative;
            z-index: 2;
        }
        
        .faq-item {
            border-bottom: 2px solid var(--accent);
            padding-bottom: 1.5rem;
        }
        
        .faq-item h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.6rem;
            line-height: 1.4;
        }
        
        .faq-item p {
            font-size: 1.05rem;
            color: var(--secondary);
            line-height: 1.6;
        }
        
        @media (max-width: 900px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* About - Light background */
        .about-section {
            background: var(--light);
            padding: 8rem 0;
            position: relative;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, var(--white), transparent);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image-frame {
            width: 100%;
            max-width: 450px;
            height: 550px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
            border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            position: relative;
            overflow: hidden;
            margin: 0 auto;
            box-shadow: 0 30px 60px rgba(53, 38, 96, 0.15);
            gap: 1rem;
        }
        
        .about-image-frame::before {
            content: '';
            position: absolute;
            inset: 20px;
            border: 2px solid rgba(53, 38, 96, 0.2);
            border-radius: inherit;
            z-index: 2;
            pointer-events: none;
        }
        
        .about-image-frame img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: inherit;
            display: block;
        }
        
        .about-text h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .about-text p {
            font-size: 1.15rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            color: var(--primary);
        }
        
        .about-values {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        .about-value {
            background: var(--white);
            color: var(--primary);
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 2px solid var(--accent);
            transition: all 0.3s ease;
        }
        
        .about-value:hover {
            border-color: var(--primary);
            background: var(--accent);
        }
        
        /* Footer */
        footer {
            background: var(--primary);
            color: var(--white);
            padding: 4rem 0 3rem;
            text-align: center;
        }
        
        .footer-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: var(--accent);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--white);
        }
        
        .legal-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        
        .legal-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .legal-links a:hover {
            color: var(--accent);
        }
        
        .disclaimer {
            font-size: 0.85rem;
            opacity: 0.6;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .disclaimer + .disclaimer {
            margin-top: 1rem;
        }
        
        /* Responsive */
        @media (max-width: 900px) {
            .container {
                padding: 0 2rem;
            }
            
            .logo-bar {
                left: 2rem;
                top: 2rem;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 8rem 2rem 6rem;
            }
            
            .hero-text {
                padding: 0;
                width: 100%;
            }
            
            .hero h1 {
                font-size: 2rem;
                word-break: break-word;
            }
            
            .hero-sub {
                font-size: 1.1rem;
            }
            
            .hero-cta {
                font-size: 0.95rem;
                padding: 1rem 1.8rem;
            }
            
            .hero-image {
                order: -1;
                height: 300px;
            }
            
            .hero-image-frame {
                max-width: 280px;
                height: 280px;
            }
            
            .pain-grid {
                grid-template-columns: 1fr;
            }
            
            .context-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .toolkit-content {
                grid-template-columns: 1fr;
            }
            
            .packages-grid {
                grid-template-columns: 1fr;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .about-image-frame {
                max-width: 300px;
                height: 350px;
            }
        }
    
/* Multi-page navigation and shared page layout */
.site-header{position:sticky;top:0;z-index:100;background:rgba(18,16,42,.96);border-bottom:1px solid rgba(197,228,239,.22);backdrop-filter:blur(14px)}
.site-header-inner{width:min(1220px,calc(100% - 40px));min-height:78px;margin:auto;display:flex;align-items:center;gap:34px}
.site-brand{display:block;flex:0 0 215px}
.site-brand img{display:block;width:215px;height:auto;filter:brightness(0) invert(1)}
.site-nav{margin-left:auto;display:flex;align-items:center;gap:24px}
.site-nav a{color:#fff;text-decoration:none;font-size:.84rem;font-weight:700;white-space:nowrap}
.site-nav a:hover,.site-nav a[aria-current=page]{color:var(--accent);text-decoration:underline;text-underline-offset:8px}
.site-nav .nav-cta{padding:11px 17px;background:var(--primary);border:1px solid rgba(255,255,255,.18);text-decoration:none}
.nav-toggle{display:none;margin-left:auto;width:46px;height:46px;border:1px solid rgba(255,255,255,.3);background:transparent;color:#fff}
.nav-toggle span:not(.sr-only){display:block;width:24px;height:2px;margin:5px auto;background:currentColor}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.page-hero{min-height:520px;padding:clamp(70px,8vw,110px) 24px;background:linear-gradient(125deg,#12102a 0%,#211b48 48%,#352660 100%);color:#fff;position:relative;overflow:hidden;display:flex;align-items:center}
.page-hero:after{content:"";position:absolute;width:420px;height:420px;right:-110px;top:-180px;border:1px solid rgba(197,228,239,.35);border-radius:52% 48% 38% 62%;transform:rotate(24deg)}
.page-hero:before{content:"";position:absolute;right:clamp(24px,7vw,110px);top:50%;width:min(36vw,470px);height:76%;transform:translateY(-50%) rotate(2deg);background-position:center;background-size:cover;clip-path:polygon(8% 0,96% 5%,100% 84%,83% 100%,0 92%,3% 15%);box-shadow:0 28px 70px rgba(0,0,0,.28)}
.page-hero.hero-services:before{background-image:linear-gradient(rgba(53,38,96,.1),rgba(18,16,42,.2)),url("hero-leistungen-v2.webp")}
.page-hero.hero-prices:before{background-image:linear-gradient(rgba(53,38,96,.08),rgba(18,16,42,.18)),url("hero-preise-v2.webp")}
.page-hero.hero-about:before{background-image:linear-gradient(rgba(53,38,96,.12),rgba(18,16,42,.24)),url("sandra.jpeg")}
.page-hero.hero-faq:before{background-image:linear-gradient(rgba(53,38,96,.08),rgba(18,16,42,.18)),url("hero-faq-v2.webp")}
.page-hero-inner{width:min(1120px,100%);margin:auto;position:relative;z-index:1;padding-right:min(40vw,510px)}
.page-hero h1{max-width:720px;color:#fff;font-size:clamp(2.7rem,5.2vw,5rem);line-height:.98}
.page-hero p{max-width:650px;color:rgba(255,255,255,.86);font-size:clamp(1.05rem,1.7vw,1.28rem)}
.eyebrow{margin:0 0 18px;color:var(--accent);font-size:.75rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase}
.page-section{padding:clamp(75px,9vw,125px) 24px}
.page-section.alt{background:var(--light)}
.page-section.dark{background:linear-gradient(125deg,#12102a,#352660);color:#fff}
.page-section.dark h2,.page-section.dark h3{color:#fff}
.section-inner{width:min(1120px,100%);margin:auto}
.intro-grid{display:grid;grid-template-columns:1fr .82fr;gap:clamp(45px,8vw,110px);align-items:center}
.intro-grid.reverse{grid-template-columns:.82fr 1fr}
.intro-grid.reverse>div{grid-column:2}
.intro-grid.reverse>figure{grid-column:1;grid-row:1}
.editorial-image{margin:0;min-height:440px;clip-path:polygon(5% 0,96% 4%,100% 88%,82% 100%,0 94%,3% 19%);overflow:hidden;background:var(--secondary)}
.editorial-image img{width:100%;height:100%;min-height:440px;object-fit:cover}
.editorial-image--portrait img{object-position:center 28%}
.service-link-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:50px}
.service-link{min-height:280px;padding:34px;display:flex;flex-direction:column;justify-content:flex-end;color:var(--primary);text-decoration:none;border:2px solid var(--primary);transition:.2s}
.service-link:nth-child(2){background:var(--accent);border:0;color:var(--primary);clip-path:polygon(6% 0,100% 5%,95% 100%,0 92%)}
.service-link:nth-child(3){background:var(--primary);border:0;color:#fff;clip-path:polygon(0 6%,94% 0,100% 89%,8% 100%)}
.service-link:hover{transform:translateY(-6px)}
.service-link strong{font:700 1.65rem/1.1 'Josefin Sans',sans-serif;margin-bottom:13px}
.service-link span{font-size:.95rem}
.process-list{margin-top:48px;border-top:1px solid rgba(75,61,119,.28)}
.process-row{display:grid;grid-template-columns:90px .65fr 1.2fr;gap:30px;padding:25px 0;border-bottom:1px solid rgba(75,61,119,.28)}
.process-row b{font:700 2.2rem/1 'Josefin Sans',sans-serif;color:var(--primary)}
.process-row strong{font-size:1.05rem}
.price-intro{display:flex;justify-content:space-between;gap:40px;align-items:end;margin-bottom:45px}
.price-intro p{max-width:570px}
.price-note{margin-top:40px;padding:24px 28px;background:var(--secondary);border-left:5px solid var(--primary)}
.bonus-content{max-width:980px;margin:50px auto 0}
.bonus-list{list-style:none;margin:0;padding:0;border-top:2px solid var(--primary);border-bottom:2px solid var(--primary)}
.bonus-list li{display:grid;grid-template-columns:minmax(230px,.8fr) 1.2fr;gap:34px;align-items:center;padding:24px 28px;border-bottom:1px solid rgba(53,38,96,.22)}
.bonus-list li:last-child{border-bottom:0}
.bonus-list li:nth-child(even){background:rgba(197,228,239,.55)}
.bonus-list span:first-child{font-weight:700;color:var(--primary)}
.bonus-list span:last-child{font:700 1.08rem/1.35 'Josefin Sans',sans-serif;color:var(--primary)}
.bonus-note{margin:26px 28px 0;color:var(--primary)}

/* Final contrast layer: every surface has an explicit readable foreground. */
.page-section,
.page-section.alt,
.page-cta{color:#21183f}
.page-section p,
.page-section li,
.page-section span,
.page-section.alt p,
.page-section.alt li,
.page-section.alt span,
.page-cta p{color:#302555}
.page-section h2,
.page-section h3,
.page-section strong,
.page-section.alt h2,
.page-section.alt h3,
.page-section.alt strong,
.page-cta h2{color:#352660}
.page-section .eyebrow,
.page-section.alt .eyebrow{color:#4b3d77}
.page-section.dark{color:#fff}
.page-section.dark p,
.page-section.dark li,
.page-section.dark span{color:rgba(255,255,255,.88)}
.page-section.dark h2,
.page-section.dark h3,
.page-section.dark strong{color:#fff}
.page-section.dark .eyebrow{color:#c5e4ef}
.service-link,
.service-link span,
.service-link strong{color:#352660}
.service-link:nth-child(2),
.service-link:nth-child(2) span,
.service-link:nth-child(2) strong{color:#21183f}
.service-link:nth-child(3),
.service-link:nth-child(3) span,
.service-link:nth-child(3) strong{color:#fff}
.bonus-list span:first-child,
.bonus-list span:last-child,
.bonus-note{color:#352660}
.faq-item,
.faq-item p,
.faq-item li{color:#302555}
.faq-item h3{color:#352660}
.price-card,
.price-card p,
.price-card li{color:#302555}
.price-card h3,
.price-card strong{color:#352660}
.page-cta{padding:90px 24px;background:var(--secondary);text-align:center}
.page-cta h2{max-width:830px;margin-inline:auto}
.page-cta p{max-width:680px;margin-inline:auto}
.shared-footer{background:#12102a;color:#fff;padding:65px 24px 28px}
.shared-footer-grid{width:min(1120px,100%);margin:auto;display:grid;grid-template-columns:1.5fr repeat(3,1fr);gap:42px}
.shared-footer img{width:210px;filter:brightness(0) invert(1)}
.shared-footer nav{display:flex;flex-direction:column;gap:8px}
.shared-footer strong{margin-bottom:8px}
.shared-footer a{color:#fff;text-decoration:none;font-size:.86rem}
.shared-footer a:hover{text-decoration:underline}
.shared-footer-note{width:min(1120px,100%);margin:45px auto 0;padding-top:20px;border-top:1px solid rgba(255,255,255,.18);font-size:.75rem;color:rgba(255,255,255,.68)}
.skip-link{position:fixed;left:16px;top:-80px;z-index:200;background:#fff;color:#12102a;padding:12px 18px}
.skip-link:focus{top:16px}
@media(max-width:980px){.nav-toggle{display:block}.site-nav{position:fixed;inset:78px 0 auto;background:#12102a;padding:28px;display:none;flex-direction:column;align-items:flex-start}.site-nav.open{display:flex}.page-hero{min-height:700px;align-items:flex-end}.page-hero:before{width:min(78vw,500px);height:44%;right:50%;top:28%;transform:translate(50%,-50%) rotate(1deg)}.page-hero-inner{padding:290px 0 0;text-align:center}.page-hero h1,.page-hero p{margin-inline:auto}.intro-grid,.intro-grid.reverse{grid-template-columns:1fr}.intro-grid.reverse>div,.intro-grid.reverse>figure{grid-column:1;grid-row:auto}.service-link-grid{grid-template-columns:1fr 1fr}.shared-footer-grid{grid-template-columns:1fr 1fr}.shared-footer-grid>a{grid-column:1/-1}}
@media(max-width:640px){.site-header-inner{width:calc(100% - 28px)}.site-brand,.site-brand img{width:180px}.page-hero{min-height:650px;padding:55px 20px}.page-hero:before{width:84vw;height:40%;top:24%}.page-hero-inner{padding-top:250px}.page-hero h1{font-size:clamp(2.35rem,12vw,3.45rem)}.page-section{padding:70px 20px}.service-link-grid{grid-template-columns:1fr}.process-row{grid-template-columns:55px 1fr}.process-row p{grid-column:2}.price-intro{align-items:flex-start;flex-direction:column}.bonus-list li{grid-template-columns:1fr;gap:8px;padding:22px 18px}.bonus-note{margin-inline:0}.shared-footer-grid{grid-template-columns:1fr}.shared-footer-grid>a{grid-column:auto}}
