/* Verkaufen Page Styles */
:root {
    --nim-primary: #2D5546;
    --nim-secondary: #54595F;
    --nim-accent: #61CE70;
    --nim-light: #f8fffe;
    --nim-white: #ffffff;
    --nim-gray-100: #f8f9fa;
    --nim-gray-200: #e9ecef;
    --nim-gray-300: #dee2e6;
    --nim-gray-400: #ced4da;
    --nim-gray-500: #adb5bd;
    --nim-shadow: 0 4px 20px rgba(45, 85, 70, 0.1);
    --nim-shadow-lg: 0 10px 40px rgba(45, 85, 70, 0.15);
}

/* Container with padding */
.nim-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.nim-sell-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--nim-light) 0%, #f0f9f6 100%);
    position: relative;
    overflow: hidden;
}

.nim-sell-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 20% 50%, rgba(97, 206, 112, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.nim-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nim-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--nim-accent) 0%, #7dd683 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(97, 206, 112, 0.3);
}

.nim-badge-icon {
    font-size: 1.2rem;
}

.nim-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--nim-primary);
    line-height: 1.1;
    margin-bottom: 24px;
}

.nim-text-gradient {
    background: linear-gradient(135deg, var(--nim-accent) 0%, #7dd683 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nim-hero-subtitle {
    font-size: 1.25rem;
    color: var(--nim-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.nim-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 32px 0;
    border-top: 1px solid var(--nim-gray-200);
    border-bottom: 1px solid var(--nim-gray-200);
}

.nim-stat {
    text-align: center;
}

.nim-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nim-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.nim-stat-label {
    font-size: 0.9rem;
    color: var(--nim-secondary);
    font-weight: 500;
}

.nim-hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nim-hero-right {
    position: relative;
}

.nim-hero-visual {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, rgba(97, 206, 112, 0.1) 0%, rgba(45, 85, 70, 0.05) 100%);
    border-radius: 24px;
    overflow: visible;
    box-shadow: var(--nim-shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Visual Content */
.nim-visual-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    z-index: 2;
    position: relative;
}

.nim-visual-icon {
    width: 160px;
    height: 160px;
    animation: float 6s ease-in-out infinite;
}

.nim-visual-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 24px rgba(45, 85, 70, 0.15));
}

.nim-visual-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.nim-stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(45, 85, 70, 0.1);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
}

.nim-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(45, 85, 70, 0.15);
}

.nim-stat-1 { animation-delay: 0.2s; }
.nim-stat-2 { animation-delay: 0.4s; }
.nim-stat-3 { animation-delay: 0.6s; }

.nim-stat-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.nim-stat-text {
    font-weight: 700;
    color: var(--nim-primary);
    font-size: 0.95rem;
    white-space: nowrap;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    75% {
        transform: translateY(4px) rotate(-1deg);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nim-hero-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    z-index: 3;
}

.nim-trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nim-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--nim-primary);
}

.nim-indicator-icon {
    width: 20px;
    height: 20px;
    background: var(--nim-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Process Section */
.nim-process-section {
    padding: 100px 0;
    background: white;
}

.nim-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.nim-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nim-primary);
    margin-bottom: 16px;
}

.nim-section-header p {
    font-size: 1.2rem;
    color: var(--nim-secondary);
    line-height: 1.6;
}

.nim-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.nim-step {
    text-align: center;
    position: relative;
    padding: 40px 20px;
    background: var(--nim-gray-100);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nim-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--nim-shadow);
    background: white;
}

.nim-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--nim-accent) 0%, #7dd683 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 16px rgba(97, 206, 112, 0.3);
}

.nim-step-icon {
    width: 80px;
    height: 80px;
    background: rgba(97, 206, 112, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--nim-accent);
    transition: all 0.3s ease;
}

.nim-step:hover .nim-step-icon {
    background: var(--nim-accent);
    color: white;
    transform: scale(1.1);
}

.nim-step-icon svg {
    width: 32px;
    height: 32px;
}

.nim-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--nim-primary);
    margin-bottom: 16px;
}

.nim-step p {
    color: var(--nim-secondary);
    line-height: 1.6;
}

/* Valuation Section */
.nim-valuation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--nim-primary) 0%, #3a6b56 100%);
    position: relative;
}

.nim-valuation-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.nim-form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.nim-form-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.nim-form-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nim-benefit {
    display: flex;
    align-items: start;
    gap: 16px;
}

.nim-benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.nim-benefit strong {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 4px;
}

.nim-benefit p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Form Styles */
.nim-valuation-form {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.nim-form-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.nim-form-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--nim-gray-300);
    z-index: 1;
}

.nim-form-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.nim-form-step span {
    width: 40px;
    height: 40px;
    background: var(--nim-gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--nim-gray-500);
    transition: all 0.3s ease;
}

.nim-form-step.active span,
.nim-form-step.completed span {
    background: var(--nim-accent);
    color: white;
}

.nim-form-step p {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--nim-gray-500);
    transition: color 0.3s ease;
}

.nim-form-step.active p {
    color: var(--nim-primary);
}

.nim-form-section {
    display: none;
}

.nim-form-section.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.nim-form-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nim-primary);
    margin-bottom: 32px;
    text-align: center;
}

.nim-property-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.nim-property-type {
    cursor: pointer;
}

.nim-property-type input[type="radio"] {
    display: none;
}

.nim-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    border: 2px solid var(--nim-gray-200);
    border-radius: 16px;
    transition: all 0.3s ease;
    background: white;
}

.nim-property-type:hover .nim-type-card {
    border-color: var(--nim-accent);
    transform: translateY(-2px);
    box-shadow: var(--nim-shadow);
}

.nim-property-type input[type="radio"]:checked + .nim-type-card {
    border-color: var(--nim-accent);
    background: var(--nim-accent);
}

.nim-property-type input[type="radio"]:checked + .nim-type-card .nim-type-name {
    color: white;
}

.nim-type-icon {
    font-size: 2rem;
    margin-bottom: 4px;
}

.nim-type-name {
    font-weight: 600;
    color: var(--nim-primary);
    text-align: center;
    font-size: 0.9rem;
}

.nim-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.nim-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nim-form-group-full {
    grid-column: 1 / -1;
}

.nim-form-group label {
    font-weight: 600;
    color: var(--nim-primary);
    font-size: 0.9rem;
}

.nim-form-group input,
.nim-form-group select,
.nim-form-group textarea {
    padding: 16px;
    border: 2px solid var(--nim-gray-200);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.nim-form-group input:focus,
.nim-form-group select:focus,
.nim-form-group textarea:focus {
    outline: none;
    border-color: var(--nim-accent);
    box-shadow: 0 0 0 4px rgba(97, 206, 112, 0.1);
}

.nim-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.nim-form-group-checkbox {
    grid-column: 1 / -1;
}

.nim-checkbox {
    display: flex;
    align-items: start;
    gap: 12px;
    cursor: pointer;
}

.nim-checkbox input[type="checkbox"] {
    display: none;
}

.nim-checkbox-mark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--nim-gray-300);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.nim-checkbox input[type="checkbox"]:checked + .nim-checkbox-mark {
    background: var(--nim-accent);
    border-color: var(--nim-accent);
}

.nim-checkbox input[type="checkbox"]:checked + .nim-checkbox-mark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

.nim-checkbox-text {
    font-size: 0.9rem;
    color: var(--nim-secondary);
    line-height: 1.5;
}

.nim-checkbox-text a {
    color: var(--nim-accent);
    text-decoration: underline;
}

.nim-form-actions {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 32px;
}

.nim-form-response {
    margin-top: 24px;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    display: none;
}

.nim-form-response.success {
    background: rgba(97, 206, 112, 0.1);
    color: var(--nim-accent);
    border: 1px solid rgba(97, 206, 112, 0.3);
}

.nim-form-response.error {
    background: rgba(220, 38, 127, 0.1);
    color: #dc267f;
    border: 1px solid rgba(220, 38, 127, 0.3);
}

/* Buttons */
.nim-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nim-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.nim-btn:hover svg {
    transform: translateX(4px);
}

.nim-btn-primary {
    background: linear-gradient(135deg, var(--nim-accent) 0%, #7dd683 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(97, 206, 112, 0.3);
}

.nim-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(97, 206, 112, 0.4);
}

.nim-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.nim-btn-outline {
    background: transparent;
    color: var(--nim-primary);
    border: 2px solid var(--nim-primary);
}

.nim-btn-outline:hover {
    background: var(--nim-primary);
    color: white;
}

.nim-next-btn svg {
    margin-left: 8px;
}

.nim-prev-btn svg {
    margin-right: 8px;
}

.nim-prev-btn:hover svg {
    transform: translateX(-4px);
}

/* Trust Section */
.nim-trust-section {
    padding: 100px 0;
    background: var(--nim-gray-100);
}

.nim-trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.nim-trust-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nim-primary);
    margin-bottom: 16px;
}

.nim-trust-left > p {
    font-size: 1.2rem;
    color: var(--nim-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.nim-trust-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nim-trust-point {
    display: flex;
    align-items: start;
    gap: 16px;
}

.nim-trust-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.nim-trust-point strong {
    display: block;
    font-weight: 700;
    color: var(--nim-primary);
    margin-bottom: 4px;
}

.nim-trust-point p {
    color: var(--nim-secondary);
    line-height: 1.5;
}

.nim-testimonial {
    background: white;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: var(--nim-shadow);
}

.nim-testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.nim-testimonial blockquote {
    font-size: 1.1rem;
    color: var(--nim-primary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 16px;
    border: none;
    padding: 0;
}

.nim-testimonial cite {
    font-size: 0.9rem;
    color: var(--nim-secondary);
    font-weight: 600;
}

.nim-contact-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--nim-shadow);
}

.nim-contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nim-primary);
    margin-bottom: 8px;
}

.nim-contact-card > p {
    color: var(--nim-secondary);
    margin-bottom: 24px;
}

.nim-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nim-contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--nim-gray-100);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nim-contact-method:hover {
    background: rgba(97, 206, 112, 0.05);
    transform: translateY(-2px);
}

.nim-contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.nim-contact-method strong {
    display: block;
    color: var(--nim-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.nim-contact-method small {
    color: var(--nim-secondary);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nim-hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .nim-hero-title {
        font-size: 3rem;
    }
    
    .nim-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .nim-valuation-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .nim-trust-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nim-sell-hero {
        padding: 80px 0;
    }
    
    .nim-hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .nim-hero-stats {
        gap: 20px;
    }
    
    .nim-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nim-section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .nim-section-header p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .nim-process-steps {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .nim-valuation-form {
        padding: 24px;
    }
    
    .nim-form-grid {
        grid-template-columns: 1fr;
    }
    
    .nim-property-types {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .nim-form-actions {
        flex-direction: column;
    }
    
    .nim-form-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .nim-form-header p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .nim-form-section h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .nim-trust-left h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    .nim-trust-left > p {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
    }
    
    .nim-trust-section,
    .nim-process-section,
    .nim-valuation-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .nim-hero-title {
        font-size: 2rem;
    }
    
    .nim-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nim-property-types {
        grid-template-columns: 1fr;
    }
    
    .nim-form-steps {
        gap: 12px;
    }
    
    .nim-form-step span {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .nim-form-step p {
        font-size: 0.75rem;
    }
}