/* === Shared Page Styles (hire, imprint, etc.) === */

/* Page Hero */
.page-hero {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-compact {
    padding: 140px 0 60px;
}

.page-hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2.5px;
    margin-bottom: 20px;
}

.page-hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Nav active state */
.nav-active {
    color: var(--text) !important;
    font-weight: 600 !important;
}

/* === Hire Page === */
.hire-section {
    padding: 80px 0 100px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(124, 58, 237, 0.12);
}

.service-card:hover::before {
    opacity: 1;
}

.service-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-bg);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-card:hover .service-number {
    background: var(--accent-bg-strong);
    transform: scale(1.08);
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

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

/* === Process Section === */
.process-section {
    padding: 80px 0 100px;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.process-step {
    display: flex;
    gap: 28px;
    position: relative;
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-marker span {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--accent-bg);
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.process-step:hover .step-marker span {
    background: var(--accent-bg-strong);
    transform: scale(1.1);
}

.step-line {
    width: 2px;
    flex: 1;
    background: var(--border-strong);
    margin: 8px 0;
    min-height: 40px;
}

.step-content {
    padding-bottom: 40px;
}

.step-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Hire CTA */
.hire-cta-section {
    padding: 100px 0;
}

/* === Imprint Page === */
.imprint-section {
    padding: 0 0 100px;
}

.imprint-content {
    max-width: 680px;
}

.imprint-block {
    margin-bottom: 40px;
}

.imprint-block h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.imprint-block p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
}

.imprint-block a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.imprint-block a:hover {
    color: var(--text);
}

/* Footer link */
.footer-link {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(0,0,0,0.15);
    transition: all 0.2s;
}

.footer-link:hover {
    color: var(--text-secondary);
    text-decoration-color: rgba(0,0,0,0.3);
}

/* === Responsive === */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 50px;
    }

    .page-hero-compact {
        padding: 120px 0 40px;
    }

    .page-hero-content h1 {
        font-size: clamp(30px, 8vw, 44px);
        letter-spacing: -1.5px;
    }

    .page-hero-sub {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 28px;
    }

    .process-section {
        padding: 60px 0 80px;
    }

    .hire-section {
        padding: 60px 0 80px;
    }

    .hire-cta-section {
        padding: 72px 0;
    }

    .step-content {
        padding-bottom: 28px;
    }
}

@media (max-width: 420px) {
    .page-hero-content h1 {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .process-step {
        gap: 20px;
    }
}
