/* === Freelancer CTA Page === */

/* Hero */
.lp-hero {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    background: var(--bg);
}
.lp-hero-glow {
    position: absolute; top: -300px; left: 30%; transform: translateX(-50%);
    width: 1000px; height: 1000px;
    background: radial-gradient(circle, rgba(26,86,219,.1) 0%, rgba(99,102,241,.05) 40%, transparent 70%);
    pointer-events: none; z-index: 0;
}
.lp-hero-split {
    position: relative; z-index: 1;
    display: flex;
    align-items: center;
    gap: 56px;
}
.lp-hero-text {
    flex: 1;
    min-width: 0;
}
.lp-hero-text .badge {
    font-size: .9rem;
    margin-bottom: 28px;
}
.lp-hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -.03em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 36px;
}
.lp-hero-sub strong {
    color: var(--text);
    font-weight: 600;
}
.lp-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.lp-hero-image {
    flex-shrink: 0;
    width: 340px;
}
.lp-hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* Intro block */
.lp-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.lp-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.lp-intro strong {
    color: var(--text);
}

/* Steps / Kernfunktionen */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.lp-step {
    position: relative;
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s;
}
.lp-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.lp-step-number {
    position: absolute;
    top: 20px; right: 24px;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .12;
}
.lp-step-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.lp-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.lp-step p {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Value cards */
.lp-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-value-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s;
}
.lp-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--bg);
}
.lp-value-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.lp-value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.lp-value-card p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Responsive */
/* Responsive */
@media (max-width: 900px) {
    .lp-hero-split {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .lp-hero-sub { margin-left: auto; margin-right: auto; }
    .lp-hero-actions { justify-content: center; }
    .lp-hero-image { width: 280px; }
    .lp-steps { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .lp-value-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 640px) {
    .lp-hero { padding: 130px 0 60px; }
    .lp-hero-text h1 { font-size: 2.2rem; }
    .lp-hero-sub { font-size: 1.05rem; }
    .lp-hero-image { width: 240px; }
}
