/* ============================================
   MyWorker Landing Page – Design D: "Clean Canvas"
   Mobile-First CSS (Base: 375px)
   Font: Plus Jakarta Sans (400, 500, 700)
   All classes prefixed with .my-lp-
   Base: Design B (Bright) + Design C (Paint Animations & Form)
   ============================================ */

/* ------------------------------------------
   :root – CSS CUSTOM PROPERTIES
   ------------------------------------------ */
:root {
    --my-lp-green: #7CDA24;
    --my-lp-green-dark: #5cb818;
    --my-lp-green-light: #E7F9E0;
    --my-lp-green-section: #E1F6D4;
    --my-lp-green-glow: rgba(124, 218, 36, 0.25);
    --my-lp-green-subtle: rgba(124, 218, 36, 0.08);
    --my-lp-red-section: #FFE9E9;
    --my-lp-red: #ea4335;
    --my-lp-dark: #1a1a1a;
    --my-lp-text: #4a4a4a;
    --my-lp-text-light: #666;
    --my-lp-bg-light: #f8f9fa;
    --my-lp-font: 'Plus Jakarta Sans', sans-serif;
    --my-lp-radius: 16px;
    --my-lp-radius-sm: 10px;
    --my-lp-radius-btn: 30px;
    --my-lp-radius-pill: 100px;
    --my-lp-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --my-lp-shadow-lg: 0 4px 12px rgba(0,0,0,0.06), 0 20px 48px rgba(0,0,0,0.1);
    --my-lp-shadow-btn: 0 4px 15px rgba(98, 201, 24, 0.4);
    --my-lp-transition: 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ------------------------------------------
   RESET & BASE
   ------------------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--my-lp-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--my-lp-text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--my-lp-green-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--my-lp-green);
}

ul {
    list-style: none;
}

/* ------------------------------------------
   TYPOGRAPHY
   ------------------------------------------ */
.my-lp-h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--my-lp-dark);
    letter-spacing: -0.02em;
}

.my-lp-h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--my-lp-dark);
    letter-spacing: -0.015em;
}

.my-lp-h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--my-lp-dark);
}

.my-lp-accent {
    color: var(--my-lp-green);
}

.my-lp-overline {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--my-lp-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

/* ------------------------------------------
   LAYOUT
   ------------------------------------------ */
.my-lp-wrapper {
    overflow: hidden;
}

.my-lp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.my-lp-section {
    padding: 60px 0;
}

.my-lp-section-header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.my-lp-section-sub {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--my-lp-text);
    margin-top: 12px;
    line-height: 1.7;
}

/* ------------------------------------------
   BUTTONS
   ------------------------------------------ */
.my-lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--my-lp-font);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.4;
    min-height: 48px;
}

.my-lp-btn-primary {
    background: linear-gradient(180deg, #74d825 0%, #5bb611 100%);
    color: #fff;
    padding: 15px 35px;
    border-radius: var(--my-lp-radius-btn);
    box-shadow: var(--my-lp-shadow-btn);
}

.my-lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(98, 201, 24, 0.55);
    color: #fff;
}

.my-lp-btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--my-lp-shadow-btn);
}

.my-lp-btn-outline {
    background: transparent;
    color: var(--my-lp-dark);
    border: 2px solid var(--my-lp-dark);
    padding: 13px 30px;
    border-radius: var(--my-lp-radius-btn);
    font-size: 15px;
}

.my-lp-btn-outline:hover {
    background: var(--my-lp-green);
    border-color: var(--my-lp-green);
    color: #fff;
}

.my-lp-btn-outline:active {
    background: var(--my-lp-green-dark);
    border-color: var(--my-lp-green-dark);
}

.my-lp-btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 13px 30px;
    border-radius: var(--my-lp-radius-btn);
    font-size: 15px;
}

.my-lp-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.my-lp-btn-full {
    width: 100%;
}

.my-lp-btn-sticky {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 15px;
}

/* Submit button with loading spinner (from Design C) */
.my-lp-btn-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 18px 32px;
    position: relative;
}

.my-lp-btn-loading { display: none; }
.my-lp-btn-submit.is-loading .my-lp-btn-text { visibility: hidden; }
.my-lp-btn-submit.is-loading .my-lp-btn-loading {
    display: flex;
    position: absolute;
    animation: my-lp-spin 1s linear infinite;
}

@keyframes my-lp-spin { to { transform: rotate(360deg); } }

/* Focus ring for accessibility */
.my-lp-btn:focus-visible,
.my-lp-form-input:focus-visible,
.my-lp-form-textarea:focus-visible,
.my-lp-hero-input:focus-visible {
    outline: 2px solid var(--my-lp-green);
    outline-offset: 3px;
}

/* ------------------------------------------
   PREVIEW BANNER
   ------------------------------------------ */
.my-lp-preview-banner {
    background: #f59e0b;
    color: #000;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    position: sticky;
    top: 0;
    z-index: 10000;
}

/* ============================================
   SCROLL PROGRESS PAINT ROLLER (from Design C)
   ============================================ */
.my-lp-scroll-progress {
    position: fixed;
    top: 40px; /* below preview banner */
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    z-index: 9998;
    overflow: visible;
}

.my-lp-scroll-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--my-lp-green);
    border-radius: 0 2px 2px 0;
    transition: width 50ms linear;
    box-shadow: 0 0 8px var(--my-lp-green-glow);
}

.my-lp-scroll-progress-roller {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    transition: left 50ms linear;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* ============================================
   CLICK SPARK CANVAS (from Design C)
   ============================================ */
.my-lp-click-spark-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
}

/* ============================================
   STICKY CTA – Fixed Bottom (Mobile Only)
   ============================================ */
.my-lp-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: block;
}

.my-lp-sticky-cta.is-visible {
    transform: translateY(0);
}

/* ============================================
   1. HERO – Bright with Paint Roller Animation
   ============================================ */
.my-lp-hero {
    position: relative;
    padding: 50px 0 40px;
    background: linear-gradient(180deg,
        #d4f5b0 0%,       /* Top: kräftiges Grün (passt zum Paint-Trail #7CDA24) */
        #e2f7c8 15%,      /* Sanfter Übergang */
        #eef9de 35%,      /* Heller werdend */
        #f4faf0 60%,      /* Fast weiß */
        #f8fcf5 100%      /* Unten: sehr helles Grün-Weiß */
    );
    overflow: hidden;
}

/* Background Shapes */
.my-lp-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.my-lp-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.22;
}

.my-lp-hero-shape--1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--my-lp-green) 0%, transparent 70%);
    top: -100px;
    right: -70px;
}

.my-lp-hero-shape--2 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, #a8e86c 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
}

/* === PAINT ROLLER ANIMATION SCENE (from Design C, adapted for bright bg) === */
.my-lp-hero-roller-scene {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.my-lp-hero-paint-trail {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #7CDA24;
    background-image:
        repeating-linear-gradient(
            90deg,
            rgba(92, 184, 24, 0.2) 0px,
            transparent 1px,
            transparent 4px,
            rgba(92, 184, 24, 0.12) 5px,
            transparent 6px,
            transparent 11px
        );
    box-shadow:
        inset 0 -4px 12px rgba(0, 0, 0, 0.08),
        0 4px 20px rgba(124, 218, 36, 0.15);
    mask-image: linear-gradient(180deg,
        black 0%, black 50%,
        rgba(0,0,0,0.7) 70%,
        rgba(0,0,0,0.3) 85%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(180deg,
        black 0%, black 50%,
        rgba(0,0,0,0.7) 70%,
        rgba(0,0,0,0.3) 85%,
        transparent 100%
    );
    opacity: 0.25;
}

.my-lp-hero-paint-trail::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 40%,
        rgba(255, 255, 255, 0.25) 65%,
        rgba(255, 255, 255, 0.1) 85%,
        transparent 100%
    );
    pointer-events: none;
}

.my-lp-hero-roller {
    position: absolute;
    top: 30px;
    left: -200px;
    transform: translateY(-50%);
    z-index: 4;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.2));
}

.my-lp-hero-roller-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

/* === PAINT STREAKS (thin lines left behind by roller) === */
.my-lp-hero-streaks {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 25vh;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.my-lp-hero-streak {
    position: absolute;
    left: 0;
    width: 0%;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(90deg, #7CDA24, #5cb818);
    opacity: 0;
}

.my-lp-hero-streak--1 {
    top: 8%;
    height: 3px;
    opacity: 0.18;
}

.my-lp-hero-streak--2 {
    top: 35%;
    height: 2px;
    opacity: 0.12;
}

.my-lp-hero-streak--3 {
    top: 55%;
    height: 4px;
    opacity: 0.15;
}

.my-lp-hero-streak--4 {
    top: 72%;
    height: 2px;
    opacity: 0.1;
}

.my-lp-hero-streak--5 {
    top: 90%;
    height: 3px;
    opacity: 0.08;
}

/* === PAINT SPLATTERS (dots that appear after roller) === */
.my-lp-hero-splatters {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 25vh;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.my-lp-hero-splat {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #7CDA24 0%, #5cb818 70%, transparent 100%);
    transform: scale(0);
    opacity: 0;
}

.my-lp-hero-splat--1 {
    width: 18px;
    height: 18px;
    top: 15%;
    left: 72%;
}

.my-lp-hero-splat--2 {
    width: 12px;
    height: 12px;
    top: 50%;
    left: 35%;
}

.my-lp-hero-splat--3 {
    width: 22px;
    height: 22px;
    top: 78%;
    left: 85%;
}

/* === SVG PAINT DRIPS (adapted for bright bg with lower opacity) === */
.my-lp-hero-drips {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.5;
}

/* Mobile: streaks + splatters confined to small top area */
.my-lp-hero-streaks {
    height: 70px;
}

.my-lp-hero-splatters {
    height: 70px;
    opacity: 0.5;
}

.my-lp-drip-svg {
    position: absolute;
    top: 0;
    opacity: 0;
    filter: drop-shadow(0 2px 4px rgba(124, 218, 36, 0.1));
}

.my-lp-drip-svg--1 { left: 10%; width: 24px; }
.my-lp-drip-svg--2 { left: 25%; width: 20px; }
.my-lp-drip-svg--3 { left: 48%; width: 28px; }
.my-lp-drip-svg--4 { left: 68%; width: 16px; }

.my-lp-drip-blob {
    transform-origin: center center;
}

.my-lp-drip-svg.is-visible .my-lp-drip-blob {
    animation: my-lp-blob-wobble 3s ease-in-out infinite;
}

@keyframes my-lp-blob-wobble {
    0%, 100% { transform: scale(1) translateY(0); }
    25% { transform: scale(1.08, 0.94) translateY(1px); }
    50% { transform: scale(0.95, 1.06) translateY(-1px); }
    75% { transform: scale(1.04, 0.97) translateY(0.5px); }
}

.my-lp-drip-svg.is-visible .my-lp-drip-path {
    animation: my-lp-drip-shimmer 4s ease-in-out infinite;
}

@keyframes my-lp-drip-shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* Hero Grid */
.my-lp-hero-grid {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* Hero elements start hidden – GSAP animates TO visible (blur text entrance from Design C) */
.my-lp-hero-badge {
    opacity: 0;
    transform: translateY(-20px);
}

.my-lp-hero .my-lp-h1 {
    opacity: 0;
    transform: translateY(25px);
    filter: blur(10px);
}

.my-lp-hero-sub {
    opacity: 0;
    transform: translateY(15px);
    filter: blur(4px);
}

.my-lp-hero-buttons .my-lp-btn {
    opacity: 0;
    transform: translateY(15px);
}

.my-lp-hero-tag {
    opacity: 0;
    transform: translateY(8px) scale(0.92);
}

.my-lp-hero-trust-item {
    opacity: 0;
    transform: translateX(-12px);
}

/* Hero Content */
.my-lp-hero-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.my-lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--my-lp-text);
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(124, 218, 36, 0.2);
    padding: 8px 16px;
    border-radius: var(--my-lp-radius-pill);
    width: fit-content;
}

.my-lp-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--my-lp-green);
    animation: my-lp-badge-pulse 2s ease-in-out infinite;
}

@keyframes my-lp-badge-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.my-lp-hero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--my-lp-text);
}

.my-lp-hero-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
}

.my-lp-hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--my-lp-text);
    line-height: 1.65;
    max-width: 520px;
}

.my-lp-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Service Tags – elegant, uniform */
.my-lp-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.my-lp-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--my-lp-dark);
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(124, 218, 36, 0.2);
    padding: 8px 18px;
    border-radius: var(--my-lp-radius-pill);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.my-lp-hero-tag:hover {
    background: rgba(124, 218, 36, 0.12);
    border-color: rgba(124, 218, 36, 0.4);
}

/* Trust Pills */
.my-lp-hero-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--my-lp-text-light);
}

.my-lp-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.my-lp-hero-trust svg {
    flex-shrink: 0;
}


/* ============================================
   2. TRUST BAR – Green Background, CountUp
   ============================================ */
.my-lp-trust {
    background: var(--my-lp-green-section);
    padding: 28px 0;
}

.my-lp-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    text-align: center;
}

.my-lp-trust-item {
    padding: 6px 4px;
}

.my-lp-trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--my-lp-dark);
    line-height: 1.2;
}

.my-lp-trust-label {
    font-size: 13px;
    color: var(--my-lp-text);
    margin-top: 2px;
    font-weight: 500;
}

/* ============================================
   3. GUARANTEE – 6 USP Cards
   ============================================ */
.my-lp-guarantee {
    background: var(--my-lp-bg-light);
}

.my-lp-guarantee-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.my-lp-guarantee-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-left: 3px solid var(--my-lp-green);
    border-radius: var(--my-lp-radius);
    padding: 28px 24px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.my-lp-guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 218, 36, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.my-lp-guarantee-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    border-left-color: var(--my-lp-green-dark);
}

.my-lp-guarantee-card:hover::before {
    opacity: 1;
}

.my-lp-guarantee-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--my-lp-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.my-lp-guarantee-card p {
    font-size: 0.93rem;
    color: var(--my-lp-text);
    line-height: 1.65;
}

/* ============================================
   4. COMPARISON – Overlapping Cards
   ============================================ */
.my-lp-comparison {
    background: #fff;
}

.my-lp-compare-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.my-lp-compare-bad,
.my-lp-compare-good {
    border-radius: var(--my-lp-radius);
    padding: 28px 22px;
}

.my-lp-compare-bad {
    background: var(--my-lp-red-section);
    order: 1;
}

.my-lp-compare-good {
    background: var(--my-lp-green-section);
    order: 2;
    position: relative;
    padding-bottom: 36px;
}

.my-lp-compare-header-bad {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--my-lp-red);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(234, 67, 53, 0.2);
}

.my-lp-compare-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--my-lp-dark);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(124, 218, 36, 0.3);
}

.my-lp-compare-logo span {
    color: var(--my-lp-green);
}

.my-lp-compare-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.my-lp-compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--my-lp-dark);
    line-height: 1.5;
}

.my-lp-compare-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.my-lp-compare-badge {
    width: 90px;
    height: 90px;
    background: var(--my-lp-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin: 16px 0 0 auto;
    box-shadow: 0 8px 25px rgba(124, 218, 36, 0.4);
}

.my-lp-compare-badge small {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    opacity: 0.92;
}

.my-lp-compare-badge strong {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
}

/* ============================================
   5. PRICE ADVANTAGE – Light Card, 3-Column
   ============================================ */
.my-lp-advantage {
    background: #fff;
}

.my-lp-advantage-box {
    background: var(--my-lp-bg-light);
    border-radius: var(--my-lp-radius);
    padding: 36px 22px;
    text-align: center;
}

.my-lp-advantage-box .my-lp-h2 {
    margin-bottom: 28px;
}

.my-lp-advantage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
    margin-bottom: 28px;
}

.my-lp-advantage-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--my-lp-dark);
    margin-bottom: 6px;
}

.my-lp-advantage-item p {
    font-size: 0.93rem;
    color: var(--my-lp-text);
    line-height: 1.65;
}

.my-lp-advantage-divider {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.my-lp-advantage-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.my-lp-advantage-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--my-lp-text-light);
}

/* ============================================
   6. SERVICES – Cards with Gradient Headers
   ============================================ */
.my-lp-services {
    background: var(--my-lp-bg-light);
}

.my-lp-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.my-lp-service-card {
    background: #fff;
    border-radius: var(--my-lp-radius);
    overflow: hidden;
    box-shadow: var(--my-lp-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.my-lp-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
}


.my-lp-service-content {
    padding: 22px 20px 26px;
}

.my-lp-service-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--my-lp-dark);
    margin-bottom: 8px;
}

.my-lp-service-content p {
    font-size: 0.93rem;
    color: var(--my-lp-text);
    line-height: 1.65;
    margin-bottom: 14px;
}

.my-lp-service-guarantee {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--my-lp-green-dark);
    margin-bottom: 10px;
}

.my-lp-service-list {
    margin-bottom: 18px;
}

.my-lp-service-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.9rem;
    color: var(--my-lp-text);
    line-height: 1.5;
    margin-bottom: 5px;
}

.my-lp-service-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--my-lp-green);
    font-weight: 700;
    font-size: 14px;
}

.my-lp-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--my-lp-font);
    font-weight: 700;
    font-size: 14px;
    color: var(--my-lp-dark);
    background: var(--my-lp-bg-light);
    padding: 10px 20px;
    border-radius: var(--my-lp-radius-btn);
    transition: all 0.3s ease;
    text-decoration: none;
}

.my-lp-service-btn:hover {
    background: var(--my-lp-green);
    color: #fff;
}


/* ============================================
   7b. WARUM MYWORKER (from Design A, adapted for bright)
   ============================================ */
.my-lp-why {
    background: #fff;
}

.my-lp-why-grid {
    display: grid;
    gap: 40px;
}

.my-lp-why-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}

.my-lp-why-visual-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: var(--my-lp-radius);
    padding: 28px;
    box-shadow: var(--my-lp-shadow-lg);
    text-align: center;
    width: 100%;
    max-width: 300px;
    position: relative;
    z-index: 2;
}

.my-lp-why-visual-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--my-lp-green-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--my-lp-green-dark);
}

.my-lp-why-visual-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--my-lp-dark);
    line-height: 1;
    letter-spacing: -0.03em;
}

.my-lp-why-visual-stat span {
    font-size: 1.25rem;
    color: var(--my-lp-text-light);
    font-weight: 500;
}

.my-lp-why-visual-label {
    font-size: 0.85rem;
    color: var(--my-lp-text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.my-lp-why-visual-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.my-lp-why-visual-bar {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.my-lp-why-visual-bar-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--my-lp-text-light);
}

.my-lp-why-bar-track {
    flex: 1;
    height: 6px;
    background: var(--my-lp-bg-light);
    border-radius: 3px;
    overflow: hidden;
}

.my-lp-why-bar-fill {
    height: 100%;
    background: var(--my-lp-green);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease;
}

.my-lp-why-bar-fill.is-animated {
    width: var(--bar-w);
}

.my-lp-why-visual-footer {
    font-size: 0.7rem;
    color: var(--my-lp-text-light);
    margin-top: 10px;
}

/* Floating notification chips */
.my-lp-why-visual-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--my-lp-dark);
    box-shadow: var(--my-lp-shadow);
    z-index: 3;
    white-space: nowrap;
}

.my-lp-why-visual-float svg {
    color: var(--my-lp-green);
    flex-shrink: 0;
}

.my-lp-why-visual-float--1 {
    top: 10%;
    right: -5%;
    animation: my-lp-float 4s ease-in-out infinite;
}

.my-lp-why-visual-float--2 {
    bottom: 15%;
    left: -5%;
    animation: my-lp-float 4s ease-in-out infinite 1.5s;
}

@keyframes my-lp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.my-lp-why-content .my-lp-overline {
    display: block;
    margin-bottom: 10px;
}

.my-lp-why-content .my-lp-h2 {
    margin-bottom: 18px;
}

.my-lp-why-text {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--my-lp-text);
    line-height: 1.7;
    margin-bottom: 28px;
}

.my-lp-why-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.my-lp-why-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.my-lp-why-item-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--my-lp-green-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.my-lp-why-item-icon svg {
    width: 16px;
    height: 16px;
    color: var(--my-lp-green-dark);
}

.my-lp-why-item strong {
    display: block;
    font-size: 1rem;
    color: var(--my-lp-dark);
    margin-bottom: 0.15rem;
}

.my-lp-why-item p {
    font-size: 0.9rem;
    color: var(--my-lp-text);
    line-height: 1.5;
}

/* ============================================
   8. PROCESS – Vertical Timeline (Design A style)
   ============================================ */
.my-lp-process {
    background: var(--my-lp-bg-light);
}

.my-lp-process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 600px;
    margin: 0 auto 36px;
}

.my-lp-process-line {
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: #e0e0e0;
}

.my-lp-process-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: var(--my-lp-green);
    transition: height 0.1s linear;
}

.my-lp-process-step {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    position: relative;
}

.my-lp-process-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--my-lp-text-light);
    flex-shrink: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.my-lp-process-step.is-active .my-lp-process-num {
    background: var(--my-lp-green);
    border-color: var(--my-lp-green);
    color: #fff;
    box-shadow: 0 0 0 6px var(--my-lp-green-glow);
}

.my-lp-process-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--my-lp-dark);
    transition: color 0.3s;
}

.my-lp-process-step.is-active .my-lp-process-text h3 {
    color: var(--my-lp-green-dark);
}

.my-lp-process-text p {
    color: var(--my-lp-text);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* ============================================
   8. LOGOS – Client Logo Bar
   ============================================ */
.my-lp-logos {
    padding: 36px 0;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.my-lp-logos-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--my-lp-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.my-lp-logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.my-lp-logos-item {
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.my-lp-logos-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.my-lp-logos-item img {
    max-height: 36px;
    width: auto;
    object-fit: contain;
}

/* ============================================
   9. TESTIMONIALS – Cards with Green Border
   ============================================ */
.my-lp-testimonials {
    background: var(--my-lp-bg-light);
}

.my-lp-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 36px;
}

.my-lp-testimonial-card {
    background: #fff;
    border-radius: var(--my-lp-radius);
    padding: 22px 20px;
    border-left: 3px solid var(--my-lp-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.my-lp-testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.my-lp-testimonial-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.my-lp-testimonial-card blockquote {
    font-size: 0.93rem;
    color: var(--my-lp-text);
    line-height: 1.7;
    margin-bottom: 14px;
    font-style: normal;
}

.my-lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.my-lp-testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--my-lp-green-light);
    color: var(--my-lp-green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.my-lp-testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--my-lp-dark);
}

.my-lp-testimonial-role {
    font-size: 0.8rem;
    color: var(--my-lp-text-light);
}

/* ============================================
   MARQUEE – Green Scrolling Banner
   ============================================ */
.my-lp-marquee {
    background: var(--my-lp-green);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.my-lp-marquee-track {
    display: inline-flex;
    gap: 0;
    animation: my-lp-marquee 30s linear infinite;
}

.my-lp-marquee-track span {
    display: inline-block;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

@keyframes my-lp-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   10. FAQ – Details/Summary Accordion
   ============================================ */
.my-lp-faq-section {
    background: #fff;
}

.my-lp-faq-list {
    max-width: 800px;
    margin: 0 auto 36px;
}

.my-lp-faq-item {
    border-bottom: 1px solid #eee;
}

.my-lp-faq-item:first-child {
    border-top: 1px solid #eee;
}

.my-lp-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--my-lp-dark);
    cursor: pointer;
    list-style: none;
    transition: color 0.3s ease;
}

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

.my-lp-faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--my-lp-green);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
    line-height: 1;
}

.my-lp-faq-item[open] summary::after {
    content: "\2212";
}

.my-lp-faq-item summary:hover {
    color: var(--my-lp-green-dark);
}

.my-lp-faq-item[open] summary {
    color: var(--my-lp-green-dark);
}

.my-lp-faq-answer {
    padding: 0 0 18px;
    font-size: 0.93rem;
    color: var(--my-lp-text);
    line-height: 1.7;
}

.my-lp-faq-answer a {
    color: var(--my-lp-green-dark);
    text-decoration: underline;
    text-decoration-color: rgba(92, 184, 24, 0.3);
}

.my-lp-faq-answer a:hover {
    text-decoration-color: var(--my-lp-green-dark);
}

/* ============================================
   11. CONTACT FORM – Paint Frame (from Design C)
   ============================================ */
.my-lp-form-section {
    background: var(--my-lp-bg-light);
}

/* Trust items above form */
.my-lp-form-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
    margin-bottom: 28px;
}

.my-lp-form-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--my-lp-dark);
}

.my-lp-form-trust-item svg {
    stroke: var(--my-lp-green);
    flex-shrink: 0;
}

/* Form Card with Paint Frame (from Design C) */
.my-lp-form-card {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--my-lp-radius);
    padding: 32px 24px;
    box-shadow: var(--my-lp-shadow-lg);
    position: relative;
}

/* Paint corner accents (from Design C) */
.my-lp-form-paint-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 1;
    pointer-events: none;
}

.my-lp-form-paint-corner--tl {
    top: -4px;
    left: -4px;
    border-top: 4px solid var(--my-lp-green);
    border-left: 4px solid var(--my-lp-green);
    border-radius: var(--my-lp-radius) 0 0 0;
}

.my-lp-form-paint-corner--tr {
    top: -4px;
    right: -4px;
    border-top: 4px solid var(--my-lp-green);
    border-right: 4px solid var(--my-lp-green);
    border-radius: 0 var(--my-lp-radius) 0 0;
}

.my-lp-form-paint-corner--bl {
    bottom: -4px;
    left: -4px;
    border-bottom: 4px solid var(--my-lp-green);
    border-left: 4px solid var(--my-lp-green);
    border-radius: 0 0 0 var(--my-lp-radius);
}

.my-lp-form-paint-corner--br {
    bottom: -4px;
    right: -4px;
    border-bottom: 4px solid var(--my-lp-green);
    border-right: 4px solid var(--my-lp-green);
    border-radius: 0 0 var(--my-lp-radius) 0;
}

/* Form layout */
.my-lp-form-row {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.my-lp-form-group {
    margin-bottom: 16px;
}

.my-lp-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--my-lp-dark);
    margin-bottom: 6px;
}

.my-lp-form-optional {
    font-weight: 400;
    color: var(--my-lp-text-light);
}

/* Form inputs */
.my-lp-form-input {
    width: 100%;
    font-family: var(--my-lp-font);
    font-size: 1rem;
    padding: 14px 16px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--my-lp-radius-sm);
    background: var(--my-lp-bg-light);
    color: var(--my-lp-dark);
    transition: border-color var(--my-lp-transition), box-shadow var(--my-lp-transition);
    appearance: none;
    -webkit-appearance: none;
}

.my-lp-form-input:focus {
    outline: none;
    border-color: var(--my-lp-green);
    box-shadow: 0 0 0 3px var(--my-lp-green-glow);
    background: #fff;
}

.my-lp-form-input::placeholder {
    color: #999;
}

.my-lp-form-input.is-error {
    border-color: var(--my-lp-red);
    box-shadow: 0 0 0 3px rgba(234, 67, 53, 0.15);
}

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

/* Error messages */
.my-lp-form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--my-lp-red);
    margin-top: 4px;
    min-height: 0;
}

/* Foto-Upload (from Design C) */
.my-lp-form-upload-group {
    margin-bottom: 16px;
}

.my-lp-form-upload {
    position: relative;
    border: 2px dashed rgba(0,0,0,0.1);
    border-radius: var(--my-lp-radius-sm);
    transition: border-color var(--my-lp-transition), background var(--my-lp-transition);
}

.my-lp-form-upload:hover,
.my-lp-form-upload.is-dragover {
    border-color: var(--my-lp-green);
    background: var(--my-lp-green-subtle);
}

.my-lp-form-upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.my-lp-form-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    color: var(--my-lp-text-light);
}

.my-lp-form-upload-label svg { color: var(--my-lp-green); }

.my-lp-form-upload-label span {
    font-size: 0.9rem;
    font-weight: 500;
}

.my-lp-form-upload-label small {
    font-size: 0.75rem;
    color: var(--my-lp-text-light);
}

.my-lp-form-upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.my-lp-form-upload-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(0,0,0,0.08);
}

/* DSGVO Checkbox (custom, from Design C) */
.my-lp-form-checkbox-group {
    margin-bottom: 24px;
}

.my-lp-form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--my-lp-text);
}

.my-lp-form-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.my-lp-form-checkbox-custom {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(0,0,0,0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--my-lp-transition);
    margin-top: 1px;
}

.my-lp-form-checkbox-label input:checked + .my-lp-form-checkbox-custom {
    background: var(--my-lp-green);
    border-color: var(--my-lp-green);
}

.my-lp-form-checkbox-label input:checked + .my-lp-form-checkbox-custom::after {
    content: '\2713';
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.my-lp-form-checkbox-label input:focus-visible + .my-lp-form-checkbox-custom {
    box-shadow: 0 0 0 3px var(--my-lp-green-glow);
}

.my-lp-form-checkbox-text a {
    color: var(--my-lp-green-dark);
    font-weight: 600;
    text-decoration: underline;
}

/* Submit button wrapper */
.my-lp-form-submit-wrap {
    position: relative;
}

/* Privacy notice under form */
.my-lp-form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--my-lp-text-light);
}

/* ============================================
   12. CTA FINAL – Dark Background
   ============================================ */
.my-lp-cta-final {
    background: #0f1533;
    text-align: center;
    padding: 70px 0;
}

.my-lp-cta-final .my-lp-h2 {
    color: #fff;
    margin-bottom: 16px;
}

.my-lp-cta-sub {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 28px;
}

.my-lp-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.my-lp-cta-trust-line {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}

/* ============================================
   INLINE CTA – Centered Button Block
   ============================================ */
.my-lp-inline-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.my-lp-inline-cta-hint {
    font-size: 13px;
    color: var(--my-lp-text-light);
    display: block;
}

/* ============================================
   RESPONSIVE: 768px+ (Tablet)
   ============================================ */
@media (min-width: 768px) {

    .my-lp-container {
        padding: 0 30px;
    }

    .my-lp-section {
        padding: 80px 0;
    }

    .my-lp-section-header {
        margin-bottom: 50px;
    }

    /* Hero: single column, centered */
    .my-lp-hero {
        padding: 80px 0 70px;
    }

    .my-lp-hero-grid {
        max-width: 700px;
    }

    .my-lp-hero-buttons {
        flex-direction: row;
    }

    /* Paint effects: bigger on tablet+ */
    .my-lp-hero-roller-scene {
        height: 20vh;
    }

    .my-lp-hero-roller {
        top: 10vh;
    }

    .my-lp-hero-roller-img {
        width: 120px;
        height: 120px;
    }

    .my-lp-hero-drips {
        top: 18vh;
        height: 120px;
        opacity: 0.7;
    }

    .my-lp-hero-streaks {
        height: 20vh;
    }

    .my-lp-hero-splatters {
        height: 20vh;
        opacity: 0.7;
    }

    /* Trust Bar: 4 columns */
    .my-lp-trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .my-lp-trust-number {
        font-size: 2.25rem;
    }

    /* Guarantee: 2 columns */
    .my-lp-guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    /* Comparison: Side by side, overlapping */
    .my-lp-compare-wrapper {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }

    .my-lp-compare-bad {
        flex: 1;
        order: 1;
        margin-right: -20px;
        z-index: 1;
        padding: 30px 24px;
        border-radius: var(--my-lp-radius) 0 0 var(--my-lp-radius);
    }

    .my-lp-compare-good {
        flex: 1.15;
        order: 2;
        z-index: 2;
        box-shadow: -6px 0 30px rgba(0, 0, 0, 0.08), 0 10px 30px rgba(0, 0, 0, 0.06);
        padding: 30px 28px 30px 36px;
        border-radius: var(--my-lp-radius);
    }

    .my-lp-compare-good {
        padding-bottom: 30px;
    }

    .my-lp-compare-badge {
        position: absolute;
        bottom: -24px;
        right: -16px;
        width: 110px;
        height: 110px;
        margin: 0;
    }

    .my-lp-compare-badge strong {
        font-size: 1.8rem;
    }

    .my-lp-compare-badge small {
        font-size: 11px;
    }

    /* Why MyWorker: Two-column grid */
    .my-lp-why-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .my-lp-why-visual {
        min-height: 420px;
    }

    /* Price Advantage: 3 columns */
    .my-lp-advantage-box {
        padding: 46px 36px;
    }

    .my-lp-advantage-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        text-align: center;
    }

    .my-lp-advantage-divider {
        border-top: none;
        border-bottom: none;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        padding: 0 24px;
    }

    .my-lp-advantage-item:first-child {
        padding-right: 24px;
    }

    .my-lp-advantage-item:last-child {
        padding-left: 24px;
    }

    /* Services: 2 columns */
    .my-lp-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    /* Process stays vertical */

    /* Testimonials: 2 columns */
    .my-lp-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    /* Logos */
    .my-lp-logos-item {
        width: 110px;
    }

    .my-lp-logos-grid {
        gap: 28px;
    }

    .my-lp-logos-item img {
        max-height: 40px;
    }

    /* FAQ */
    .my-lp-faq-item summary {
        padding: 20px 0;
        font-size: 1.05rem;
    }

    /* Form: Two-column rows */
    .my-lp-form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .my-lp-form-card {
        padding: 40px 36px;
    }

    /* CTA Final */
    .my-lp-cta-final {
        padding: 90px 0;
    }

    .my-lp-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    /* Sticky CTA: hide on tablet and above */
    .my-lp-sticky-cta {
        display: none !important;
    }

    /* Inline CTA */
    .my-lp-inline-cta {
        flex-direction: row;
        justify-content: center;
        gap: 14px;
    }

    .my-lp-inline-cta-hint {
        display: flex;
        align-items: center;
    }
}

/* ============================================
   RESPONSIVE: 1024px+ (Desktop)
   ============================================ */
@media (min-width: 1024px) {

    .my-lp-container {
        padding: 0 40px;
    }

    /* Hero */
    .my-lp-hero {
        padding: 100px 0 90px;
    }

    .my-lp-hero-content {
        gap: 22px;
    }

    .my-lp-hero-shape--1 {
        width: 500px;
        height: 500px;
        top: -140px;
        right: -100px;
    }

    .my-lp-hero-shape--2 {
        width: 360px;
        height: 360px;
        bottom: -80px;
        left: -80px;
    }

    /* Paint effects: full size on desktop */
    .my-lp-hero-roller-scene {
        height: 28vh;
    }

    .my-lp-hero-roller {
        top: 14vh;
    }

    .my-lp-hero-roller-img {
        width: 140px;
        height: 140px;
    }

    .my-lp-hero-drips {
        top: 26vh;
        height: 180px;
        opacity: 1;
    }

    .my-lp-hero-streaks {
        height: 28vh;
    }

    .my-lp-hero-splatters {
        height: 28vh;
        opacity: 1;
    }

    .my-lp-hero-paint-trail {
        opacity: 0.35;
    }

    /* Guarantee: 3 columns */
    .my-lp-guarantee-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

    /* Services: 4 columns */
    .my-lp-services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    /* Process stays vertical at desktop too */

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

    /* Logos */
    .my-lp-logos-item {
        width: 130px;
    }

    .my-lp-logos-grid {
        gap: 36px;
    }

    /* Form */
    .my-lp-form-card {
        padding: 44px 40px;
    }
}

/* ============================================
   RESPONSIVE: 1280px+ (Large Desktop)
   ============================================ */
@media (min-width: 1280px) {

    .my-lp-container {
        max-width: 1240px;
        padding: 0 40px;
    }

    .my-lp-hero-grid {
        max-width: 750px;
    }

    .my-lp-guarantee-card {
        padding: 30px 26px;
    }

    .my-lp-service-content {
        padding: 24px;
    }

    .my-lp-advantage-box {
        padding: 56px 48px;
    }

    .my-lp-form-card {
        padding: 48px 44px;
    }

    .my-lp-testimonial-card {
        padding: 26px 24px;
    }
}

/* ============================================
   ACCESSIBILITY: prefers-reduced-motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .my-lp-marquee-track {
        animation: none !important;
    }

    .my-lp-guarantee-card:hover,
    .my-lp-service-card:hover,
    .my-lp-testimonial-card:hover {
        transform: none !important;
    }

    .my-lp-btn-primary:hover {
        transform: none !important;
    }

    .my-lp-sticky-cta {
        transition: none !important;
    }

    html {
        scroll-behavior: auto !important;
    }

    /* Hide decorative animations */
    .my-lp-scroll-progress,
    .my-lp-hero-drips,
    .my-lp-hero-roller-scene,
    .my-lp-hero-streaks,
    .my-lp-hero-splatters,
    .my-lp-click-spark-canvas {
        display: none;
    }

    /* Show hero content immediately */
    .my-lp-hero-badge,
    .my-lp-hero .my-lp-h1,
    .my-lp-hero-sub,
    .my-lp-hero-buttons .my-lp-btn,
    .my-lp-hero-tag,
    .my-lp-hero-trust-item {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    /* Disable floating animations */
    .my-lp-why-visual-float {
        animation: none !important;
    }
}


/* ============================================
   DIVI INTEGRATION OVERRIDES
   Prevents Divi default styles from interfering
   with the landing page layout.
   ============================================ */

/* Remove Divi's default padding/margin on LP pages */
body.page-template-page-landing #et-main-area,
body.page-template-page-danke #et-main-area {
    padding-top: 0;
}

body.page-template-page-landing #main-content,
body.page-template-page-danke #main-content {
    padding: 0;
    margin: 0;
    background: transparent;
}

/* Ensure full-width sections (no Divi container constraints) */
body.page-template-page-landing .entry-content,
body.page-template-page-danke .entry-content {
    padding: 0;
    max-width: none;
}

body.page-template-page-landing .my-lp-wrapper,
body.page-template-page-danke .my-lp-wrapper {
    max-width: none;
    padding: 0;
    margin: 0;
}

/* Prevent Divi from styling our elements */
body.page-template-page-landing #main-content h1,
body.page-template-page-landing #main-content h2,
body.page-template-page-landing #main-content h3,
body.page-template-page-landing #main-content h4,
body.page-template-page-landing #main-content p,
body.page-template-page-landing #main-content a,
body.page-template-page-landing #main-content ul,
body.page-template-page-landing #main-content li,
body.page-template-page-danke #main-content h1,
body.page-template-page-danke #main-content h2,
body.page-template-page-danke #main-content h3,
body.page-template-page-danke #main-content h4,
body.page-template-page-danke #main-content p,
body.page-template-page-danke #main-content a,
body.page-template-page-danke #main-content ul,
body.page-template-page-danke #main-content li {
    padding-bottom: 0;
    line-height: inherit;
    letter-spacing: normal;
}

/* ── Divi button resets ──
   Divi sets text-align, padding, line-height on generic
   a and button selectors. We need high specificity here. */
body.page-template-page-landing .my-lp-btn,
body.page-template-page-danke .my-lp-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    text-align: center;
    text-decoration: none;
    font-family: var(--my-lp-font);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: normal;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

/* Divi overrides color on a:hover globally */
body.page-template-page-landing .my-lp-btn-primary,
body.page-template-page-landing .my-lp-btn-primary:hover,
body.page-template-page-landing .my-lp-btn-primary:focus,
body.page-template-page-landing .my-lp-btn-primary:visited,
body.page-template-page-danke .my-lp-btn-primary,
body.page-template-page-danke .my-lp-btn-primary:hover,
body.page-template-page-danke .my-lp-btn-primary:focus,
body.page-template-page-danke .my-lp-btn-primary:visited {
    color: #fff !important;
    text-decoration: none !important;
}

/* Ensure button containers center properly under Divi */
body.page-template-page-landing .my-lp-hero-buttons,
body.page-template-page-landing .my-lp-inline-cta,
body.page-template-page-landing .my-lp-cta-buttons,
body.page-template-page-landing .my-lp-advantage-cta,
body.page-template-page-landing .my-lp-form-submit-wrap {
    display: flex;
    align-items: center;
}

/* Divi sets its own padding on buttons – prevent that */
body.page-template-page-landing .my-lp-btn-primary {
    padding: 15px 35px;
}
body.page-template-page-landing .my-lp-btn-outline {
    padding: 13px 30px;
}
body.page-template-page-landing .my-lp-btn-sticky {
    padding: 16px 24px;
    width: 100%;
}
body.page-template-page-landing .my-lp-btn-submit {
    padding: 18px 32px;
    width: 100%;
}

/* Divi adds padding-bottom to all p tags – fix for our sections */
body.page-template-page-landing .my-lp-wrapper p,
body.page-template-page-danke .my-lp-wrapper p {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Divi adds extra margins on headings */
body.page-template-page-landing .my-lp-wrapper h1,
body.page-template-page-landing .my-lp-wrapper h2,
body.page-template-page-landing .my-lp-wrapper h3,
body.page-template-page-landing .my-lp-wrapper h4,
body.page-template-page-danke .my-lp-wrapper h1,
body.page-template-page-danke .my-lp-wrapper h2 {
    padding-bottom: 0;
    margin: 0;
}

/* Divi sets list-style on ul/li globally */
body.page-template-page-landing .my-lp-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
body.page-template-page-landing .my-lp-wrapper li {
    list-style: none;
    padding: 0;
}

/* Divi sets a max-width on images inside containers */
body.page-template-page-landing .my-lp-wrapper img {
    max-width: 100%;
    height: auto;
}

/* Divi sets input font-size – override for our form */
body.page-template-page-landing .my-lp-form-input {
    font-size: 1rem;
    line-height: 1.5;
}

/* Divi might add bottom border to inputs */
body.page-template-page-landing .my-lp-form-input,
body.page-template-page-landing .my-lp-form-textarea {
    border: 1px solid #e2e8f0;
    box-shadow: none;
}

body.page-template-page-landing .my-lp-form-input:focus,
body.page-template-page-landing .my-lp-form-textarea:focus {
    border-color: #7CDA24;
    box-shadow: 0 0 0 3px rgba(124, 218, 36, 0.15);
}


/* ============================================
   AJAX FORM MESSAGE (server-side feedback)
   ============================================ */

.my-lp-form-message {
    display: none;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 1.25rem;
    text-align: center;
    line-height: 1.5;
}

.my-lp-form-message--error {
    display: block;
    background: rgba(234, 67, 53, 0.08);
    color: #d32f2f;
    border: 1px solid rgba(234, 67, 53, 0.2);
}

.my-lp-form-message--success {
    display: block;
    background: rgba(124, 218, 36, 0.08);
    color: #3d7a0a;
    border: 1px solid rgba(124, 218, 36, 0.25);
}


/* ============================================
   DANKE PAGE STYLES
   ============================================ */

.my-lp-danke-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.my-lp-danke-content {
    max-width: 600px;
    margin: 0 auto;
}

.my-lp-danke-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 380px;
    margin: 2rem auto 0;
    text-align: left;
}

.my-lp-danke-step {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    background: rgba(124, 218, 36, 0.04);
    border: 1px solid rgba(124, 218, 36, 0.12);
}

.my-lp-danke-step-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 218, 36, 0.1);
    border-radius: 50%;
}

.my-lp-danke-step strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.15rem;
}

.my-lp-danke-step p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}
