/* ============================================
   HRTIME MULTI-STEP FORM - PREMIUM STYLES
   Modern, Clean, Responsive
   ============================================ */

/* ===========================================
   1. CSS CUSTOM PROPERTIES
   =========================================== */
:root {
    --hrform-primary: #E65100;
    --hrform-primary-dark: #D84315;
    --hrform-primary-light: #FF8A50;
    --hrform-success: #22c55e;
    --hrform-success-dark: #16a34a;
    --hrform-blue: #5272C5;
    --hrform-dark: #0B1933;
    --hrform-dark-light: #1a2d4d;
    --hrform-white: #ffffff;
    --hrform-gray-50: #f8f9fa;
    --hrform-gray-100: #f1f3f5;
    --hrform-gray-200: #e9ecef;
    --hrform-gray-300: #dee2e6;
    --hrform-gray-400: #ced4da;
    --hrform-gray-500: #adb5bd;
    --hrform-gray-600: #6c757d;
    --hrform-gray-700: #495057;
    --hrform-gray-800: #343a40;
    --hrform-gray-900: #212529;
    --hrform-font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --hrform-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --hrform-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --hrform-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --hrform-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --hrform-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --hrform-radius: 16px;
    --hrform-radius-sm: 8px;
    --hrform-radius-lg: 24px;
    --hrform-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================================
   2. HERO SECTION
   =========================================== */
.hrform-hero {
    position: relative;
    background: linear-gradient(135deg, var(--hrform-primary) 0%, var(--hrform-primary-dark) 100%);
    padding: 100px 20px 120px;
    overflow: hidden;
    text-align: center;
}

.hrform-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

/* Animated Shapes */
.hrform-hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hrform-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: hrform-float 20s infinite ease-in-out;
}

.hrform-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
}

.hrform-shape:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    animation-delay: -7s;
}

.hrform-shape:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 60%;
    animation-delay: -14s;
}

@keyframes hrform-float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

/* Hero Content */
.hrform-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Badge */
.hrform-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hrform-white);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hrform-badge-dot {
    width: 10px;
    height: 10px;
    background: var(--hrform-success);
    border-radius: 50%;
    animation: hrform-pulse 2s infinite;
    box-shadow: 0 0 10px var(--hrform-success);
}

@keyframes hrform-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Hero H1 */
.hrform-hero h1 {
    font-family: var(--hrform-font);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--hrform-white);
    margin: 0 0 25px;
    line-height: 1.2;
}

.hrform-hero h1 .highlight {
    position: relative;
    display: inline-block;
}

.hrform-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    z-index: -1;
}

/* 13. FIX FÜR DEN ABSTAND ZWISCHEN TEXT UND PILLS */
.hrform-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Elementor Override mit höchster Spezifität */
body .elementor-kit-10 .hrform-hero-content p.hrform-hero-description,
body.elementor-page .hrform-hero-content p.hrform-hero-description,
.elementor-kit-10 p.hrform-hero-description,
.hrform-hero-description {
    font-family: var(--hrform-font);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.8;
    margin-bottom: 25px !important;
    margin-block-end: 25px !important;
    margin-block-start: 0 !important;
}

/* Pills bekommen den Abstand - nicht der Paragraph! */
body .elementor-kit-10 .hrform-hero-content .hrform-hero-benefits,
body.elementor-page .hrform-hero-content .hrform-hero-benefits,
.elementor-widget-container .hrform-hero-benefits,
.hrform-hero .hrform-hero-benefits,
.hrform-hero-benefits {
    margin-top: 25px !important;
    margin-block-start: 25px !important;
    margin-bottom: 0;
    padding-top: 0 !important;
}

/* Hero Benefits - Horizontal Pills (aus hr-ressourcen.css) */
.hrform-hero-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.hrform-benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--hrform-transition);
}

.hrform-benefit-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hrform-benefit-pill i {
    font-size: 1.1rem;
    color: var(--hrform-primary-light);
}

/* Section Divider Light (White for Hero - aus hr-ressourcen.css) */
.hrform-section-divider {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.6) 100%);
    margin: 0 auto 30px auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    animation: hrform-dividerPulse 2s ease-in-out infinite;
}

.hrform-section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: hrform-dividerShine 3s ease-in-out infinite;
}

@keyframes hrform-dividerPulse {

    0%,
    100% {
        transform: scaleX(1);
        opacity: 1;
    }

    50% {
        transform: scaleX(1.05);
        opacity: 0.9;
    }
}

@keyframes hrform-dividerShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

/* Wave Divider */
.hrform-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hrform-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ===========================================
   3. FORM SECTION
   =========================================== */
.hrform-section {
    background: var(--hrform-gray-50);
    padding: 60px 20px 100px;
}

.hrform-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* ===========================================
   4. PROGRESS BAR
   =========================================== */
.hrform-progress {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.hrform-progress-track {
    height: 6px;
    background: var(--hrform-gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 30px;
}

.hrform-progress-fill {
    height: 100%;
    width: 16.666%;
    background: linear-gradient(90deg, var(--hrform-primary), var(--hrform-primary-light));
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrform-steps-indicator {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.hrform-step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--hrform-transition);
}

.hrform-step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hrform-gray-200);
    color: var(--hrform-gray-600);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    transition: var(--hrform-transition);
    border: 3px solid transparent;
}

.hrform-step-label {
    font-size: 0.75rem;
    color: var(--hrform-gray-500);
    font-weight: 500;
    transition: var(--hrform-transition);
}

.hrform-step-dot.active .hrform-step-number {
    background: var(--hrform-primary);
    color: var(--hrform-white);
    box-shadow: 0 0 0 4px rgba(230, 81, 0, 0.2);
}

.hrform-step-dot.active .hrform-step-label {
    color: var(--hrform-primary);
    font-weight: 600;
}

.hrform-step-dot.completed .hrform-step-number {
    background: var(--hrform-success);
    color: var(--hrform-white);
}

.hrform-step-dot.completed .hrform-step-label {
    color: var(--hrform-success-dark);
}

/* ===========================================
   5. FORM CARD
   =========================================== */
.hrform-card {
    background: var(--hrform-white);
    border-radius: var(--hrform-radius-lg);
    box-shadow: var(--hrform-shadow-lg);
    padding: 50px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.hrform-step-content {
    display: none;
    flex-direction: column;
    flex: 1;
    animation: hrform-fadeIn 0.4s ease;
}

.hrform-step-content.active {
    display: flex;
}

@keyframes hrform-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hrform-step-header {
    text-align: center;
    margin-bottom: 40px;
}

.hrform-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--hrform-primary), var(--hrform-primary-dark));
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(230, 81, 0, 0.3);
}

.hrform-step-icon i {
    font-size: 1.75rem;
    color: var(--hrform-white);
}

.hrform-step-header h2 {
    font-family: var(--hrform-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hrform-dark);
    margin: 0 0 10px;
    line-height: 1.3;
}

.hrform-step-header p {
    font-family: var(--hrform-font);
    font-size: 1rem;
    color: var(--hrform-gray-600);
    margin: 0;
}

/* ===========================================
   6. OPTIONS
   =========================================== */
.hrform-options {
    display: grid;
    gap: 15px;
}

.hrform-options-radio {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.hrform-options-checkbox {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.hrform-options-grid {
    grid-template-columns: repeat(3, 1fr);
}

.hrform-option {
    cursor: pointer;
}

.hrform-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hrform-option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 20px;
    background: var(--hrform-gray-50);
    border: 2px solid var(--hrform-gray-200);
    border-radius: var(--hrform-radius);
    text-align: center;
    transition: var(--hrform-transition);
}

.hrform-option-card:hover {
    border-color: var(--hrform-primary);
    background: var(--hrform-white);
    transform: translateY(-3px);
    box-shadow: var(--hrform-shadow-md);
}

.hrform-option input:checked+.hrform-option-card {
    border-color: var(--hrform-primary);
    background: linear-gradient(135deg, rgba(230, 81, 0, 0.05), rgba(230, 81, 0, 0.1));
    box-shadow: 0 0 0 4px rgba(230, 81, 0, 0.1);
}

.hrform-option input:checked+.hrform-option-card .hrform-option-icon {
    background: var(--hrform-primary);
    color: var(--hrform-white);
}

.hrform-option-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hrform-gray-200);
    border-radius: 50%;
    color: var(--hrform-gray-600);
    transition: var(--hrform-transition);
}

.hrform-option-icon i {
    font-size: 1.25rem;
}

.hrform-option-text {
    font-family: var(--hrform-font);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--hrform-dark);
}

.hrform-option-sublabel {
    font-size: 0.75rem;
    color: var(--hrform-gray-500);
    margin-top: -5px;
}

/* ===========================================
   7. INPUT FIELDS
   =========================================== */
.hrform-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hrform-input-row {
    display: flex;
    gap: 20px;
}

.hrform-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hrform-input-full {
    flex: 1 0 100%;
}

.hrform-input-small {
    flex: 0 0 120px;
}

.hrform-input-group label {
    font-family: var(--hrform-font);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hrform-dark);
}

.hrform-input-group label .required {
    color: var(--hrform-primary);
}

.hrform-input-group input {
    padding: 16px 20px;
    border: 2px solid var(--hrform-gray-200);
    border-radius: var(--hrform-radius-sm);
    font-family: var(--hrform-font);
    font-size: 1rem;
    color: var(--hrform-dark);
    transition: var(--hrform-transition);
    background: var(--hrform-white);
}

.hrform-input-group input:focus {
    outline: none;
    border-color: var(--hrform-primary);
    box-shadow: 0 0 0 4px rgba(230, 81, 0, 0.1);
}

/* Checkbox Group - MODIFIED FOR CLICKABILITY */
.hrform-checkbox-group {
    margin-top: 25px;
}

.hrform-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer !important;
    position: relative;
    user-select: none;
}

.hrform-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.hrform-checkbox-mark {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 2px solid var(--hrform-gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--hrform-transition);
    background: var(--hrform-white);
    margin-top: 2px;
}

.hrform-checkbox-mark::after {
    content: '✓';
    color: var(--hrform-white);
    font-weight: bold;
    opacity: 0;
    transition: var(--hrform-transition);
}

.hrform-checkbox input:checked+.hrform-checkbox-mark {
    background: var(--hrform-primary);
    border-color: var(--hrform-primary);
}

.hrform-checkbox input:checked+.hrform-checkbox-mark::after {
    opacity: 1;
}

.hrform-checkbox-text {
    font-family: var(--hrform-font);
    font-size: 0.875rem;
    color: var(--hrform-gray-700);
    line-height: 1.5;
    cursor: pointer !important;
}

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

/* reCAPTCHA */
.hrform-recaptcha {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

/* ===========================================
   8. NAVIGATION BUTTONS
   =========================================== */
.hrform-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding-top: 40px;
}

.hrform-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-family: var(--hrform-font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--hrform-transition);
}

.hrform-btn-prev {
    background: var(--hrform-gray-200);
    color: var(--hrform-gray-700);
}

.hrform-btn-next,
.hrform-btn-submit {
    background: linear-gradient(135deg, var(--hrform-primary), var(--hrform-primary-dark));
    color: var(--hrform-white);
    margin-left: auto;
    box-shadow: 0 10px 30px rgba(230, 81, 0, 0.3);
}

/* ===========================================
   9. ERROR MESSAGES
   =========================================== */
.hrform-error {
    color: #ef4444;
    font-size: 0.875rem;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--hrform-radius-sm);
    display: none;
}

/* ===========================================
   10. SUCCESS STATE
   =========================================== */
.hrform-calendly-wrapper {
    margin: 20px -50px -50px;
    border-radius: 0 0 var(--hrform-radius-lg) var(--hrform-radius-lg);
    overflow: hidden;
}

/* ===========================================
   11. SIDEBAR
   =========================================== */
.hrform-sidebar {
    position: sticky;
    top: 100px;
}

.hrform-sidebar-content {
    background: linear-gradient(180deg, var(--hrform-dark) 0%, var(--hrform-dark-light) 100%);
    border-radius: var(--hrform-radius-lg);
    padding: 40px 30px;
    text-align: center;
    color: var(--hrform-white);
}

.hrform-sidebar-badge {
    background: var(--hrform-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-block;
}

.hrform-sidebar-image {
    width: 180px;
    margin: 0 auto 25px;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hrform-sidebar-text h3 {
    font-family: var(--hrform-font);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.hrform-sidebar-text p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0 0 55px !important;
    /* EXTREMER ABSTAND SIDEBAR */
    line-height: 1.6;
}

.hrform-sidebar-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    /* HART ERZWUNGENES WEISS */
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--hrform-transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
}

.hrform-sidebar-phone * {
    color: #ffffff !important;
}

.hrform-sidebar-phone:hover {
    background: var(--hrform-primary);
    border-color: var(--hrform-primary);
    color: #ffffff !important;
}

/* ===========================================
   12. RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
    .hrform-container {
        grid-template-columns: 1fr;
    }

    .hrform-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .hrform-hero h1 {
        font-size: 1.1rem;
    }

    .hrform-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hrform-card {
        padding: 30px 20px;
    }

    .hrform-navigation {
        flex-direction: column;
    }

    .hrform-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   ANFRAGE PROZESS SEKTION - V1.0 - MODULAR
   Location: anfrage-formular.css
   Style-Source: hrtime-global.css (Look & Feel)
   ============================================================ */

.anfrage-prozess-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    position: relative;
}

.anfrage-prozess-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.anfrage-prozess-header {
    text-align: center;
    margin-bottom: 80px;
}

.anfrage-prozess-label {
    color: #E65100;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.anfrage-prozess-header h2 {
    color: #0B1933;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.anfrage-prozess-divider {
    width: 60px;
    height: 4px;
    background: #E65100;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.anfrage-prozess-intro {
    color: #4A5568;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.anfrage-prozess-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 20px;
}

.anfrage-prozess-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px 25px;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.anfrage-prozess-step:hover {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(11, 25, 51, 0.1);
}

.anfrage-prozess-icon-wrapper {
    position: relative;
    margin-bottom: 35px;
    display: inline-block;
}

.anfrage-prozess-icon-circle {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #0B1933 0%, #1a2d4d 100%);
    border-radius: 30px;
    /* Modern Squircle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #ffffff;
    font-size: 45px;
    box-shadow: 0 15px 35px rgba(11, 25, 51, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.anfrage-prozess-step:hover .anfrage-prozess-icon-circle {
    background: linear-gradient(135deg, #E65100 0%, #FF8A50 100%);
    transform: rotate(10deg);
    box-shadow: 0 20px 45px rgba(230, 81, 0, 0.4);
}

.anfrage-prozess-number {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #0B1933;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    border: 2px solid #f1f3f5;
}

.anfrage-prozess-step:hover .anfrage-prozess-number {
    background: #0B1933;
    color: #ffffff;
    border-color: #0B1933;
}

.anfrage-prozess-content h3 {
    color: #0B1933;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.anfrage-prozess-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.anfrage-prozess-highlight {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.anfrage-prozess-step:hover .anfrage-prozess-highlight {
    background: rgba(230, 81, 0, 0.1);
    color: #E65100;
}

/* Connector (Desktop Only) */
.anfrage-prozess-connector {
    flex: 0 0 60px;
    padding-top: 55px;
}

.anfrage-prozess-line {
    height: 3px;
    background: #e2e8f0;
    width: 100%;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .anfrage-prozess-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .anfrage-prozess-connector {
        display: none;
    }

    .anfrage-prozess-step {
        flex: 0 0 calc(50% - 40px);
        min-width: 320px;
    }
}

@media (max-width: 768px) {
    .anfrage-prozess-section {
        padding: 60px 0;
    }

    .anfrage-prozess-header h2 {
        font-size: 30px;
    }

    .anfrage-prozess-step {
        flex: 0 0 100%;
        padding: 20px 10px;
    }

    .anfrage-prozess-icon-circle {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }
}