/**
 * Wärmepumpen Landingpage Styles
 *
 * @package He-Solar
 */

/* ===================================
   Hero Section
   =================================== */
   .wp-hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.wp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Gradient von links (stark) nach rechts (transparent) - Bild rechts sichtbar */
    background: linear-gradient(
        90deg,
        rgba(32, 98, 12, 0.9) 0%,
        rgba(32, 98, 12, 0.8) 30%,
        rgba(32, 98, 12, 0.5) 55%,
        rgba(32, 98, 12, 0.2) 75%,
        transparent 100%
    );
}

.wp-hero-section .container {
    position: relative;
    z-index: 2;
}

.wp-hero-content {
    max-width: 600px;
    color: #ffffff;
    padding: 80px 0;
}

.wp-hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.wp-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wp-hero-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.wp-hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 550px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.wp-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-wp-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 1.125rem;
    font-weight: 600;
    background: linear-gradient(135deg, #7cb342 0%, #689f38 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 179, 66, 0.4);
    cursor: pointer;
}

.btn-wp-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(124, 179, 66, 0.6);
    background: linear-gradient(135deg, #8bc34a 0%, #7cb342 100%);
    color: #ffffff;
}

.btn-wp-primary.btn-large {
    padding: 18px 48px;
    font-size: 1.25rem;
}

.btn-wp-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 1.125rem;
    font-weight: 600;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-wp-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

.wp-hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   Trust Badges Section
   =================================== */
.wp-trust-badges-section {
    background-color: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid #e5e7eb;
}

.wp-trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.wp-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4b5563;
    font-size: 0.9375rem;
    font-weight: 500;
}

.wp-trust-icon {
    width: 24px;
    height: 24px;
    color: #7cb342;
}

/* ===================================
   Section Titles
   =================================== */
.wp-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.wp-section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
}

.wp-text-center {
    text-align: center;
}

/* ===================================
   Intro Section
   =================================== */
.wp-intro-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.wp-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.wp-intro-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 32px;
}

.wp-vorteile-list h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.wp-vorteile-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wp-vorteile-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.wp-vorteile-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background-color: #7cb342;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.wp-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* ===================================
   USP Section
   =================================== */
.wp-usp-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.wp-usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.wp-usp-card {
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.wp-usp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.wp-usp-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(124, 179, 66, 0.1);
    border-radius: 16px;
}

.wp-usp-icon svg {
    width: 32px;
    height: 32px;
    color: #7cb342;
}

.wp-usp-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.wp-usp-card p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   Urgency Section (Warum jetzt wechseln)
   =================================== */
.wp-urgency-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.wp-urgency-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: start;
}

.wp-urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7cb342, #558b2f);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wp-urgency-text {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 32px;
}

.wp-urgency-reasons {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wp-urgency-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background-color: #f9fafb;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-urgency-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.wp-urgency-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #7cb342, #558b2f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-urgency-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
}

.wp-urgency-item-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.wp-urgency-item-content p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.wp-urgency-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wp-stat-card {
    background-color: #f9fafb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease;
}

.wp-stat-card:hover {
    transform: translateY(-4px);
}

.wp-stat-card-highlight {
    background: linear-gradient(135deg, #7cb342, #558b2f);
    color: #ffffff;
}

.wp-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.wp-stat-card-highlight .wp-stat-number {
    color: #ffffff;
}

.wp-stat-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.wp-stat-card-highlight .wp-stat-label {
    color: #ffffff;
}

.wp-stat-sublabel {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 4px;
}

.wp-stat-card-highlight .wp-stat-sublabel {
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   Comparison Section (Kostenvergleich)
   =================================== */
.wp-comparison-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.wp-comparison-table {
    max-width: 900px;
    margin: 48px auto 24px;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.wp-comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background-color: #1f2937;
    color: #ffffff;
}

.wp-comparison-header .wp-comparison-col {
    padding: 20px 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wp-comparison-icon-old svg,
.wp-comparison-icon-new svg {
    width: 20px;
    height: 20px;
}

.wp-comparison-icon-old svg {
    stroke: #f87171;
}

.wp-comparison-icon-new svg {
    stroke: #7cb342;
}

.wp-comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}

.wp-comparison-row:last-child {
    border-bottom: none;
}

.wp-comparison-col {
    padding: 16px 24px;
    display: flex;
    align-items: center;
}

.wp-comparison-col-label {
    font-weight: 500;
    color: #374151;
    background-color: #f9fafb;
}

.wp-comparison-col-old {
    justify-content: center;
    color: #6b7280;
}

.wp-comparison-col-new {
    justify-content: center;
}

.wp-comparison-col-new.wp-highlight {
    color: #7cb342;
    font-weight: 600;
}

.wp-comparison-row-total {
    background-color: #f0fdf4;
}

.wp-comparison-row-total .wp-comparison-col-label {
    background-color: #f0fdf4;
    font-weight: 600;
}

.wp-highlight-big {
    font-size: 1.25rem;
    font-weight: 700;
    color: #7cb342;
}

.wp-comparison-footnote {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.8125rem;
    color: #9ca3af;
    text-align: center;
}

/* ===================================
   Process Section (So einfach gehts)
   =================================== */
.wp-process-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.wp-process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-top: 64px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.wp-process-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    position: relative;
}

.wp-process-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #7cb342, #558b2f);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.wp-process-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #7cb342, #d1d5db, #7cb342);
    margin-top: 32px;
    flex-shrink: 0;
}

.wp-process-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.wp-process-content>p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.wp-process-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.wp-process-checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: #4b5563;
}

.wp-process-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237cb342' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

/* ===================================
   Testimonials Section
   =================================== */
.wp-testimonials-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.wp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.wp-testimonial-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.wp-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.wp-testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: #fbbf24;
}

.wp-testimonial-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 24px 0;
    font-style: italic;
}

.wp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wp-testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7cb342, #558b2f);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.wp-testimonial-info {
    display: flex;
    flex-direction: column;
}

.wp-testimonial-name {
    font-weight: 600;
    color: #1f2937;
}

.wp-testimonial-location {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* ===================================
   Konfigurator Section (Enhanced Header)
   =================================== */
.wp-konfigurator-badge {
    display: inline-block;
    background-color: #f0fdf4;
    color: #7cb342;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.wp-konfigurator-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
}

.wp-konfigurator-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: #4b5563;
}

.wp-konfigurator-benefit svg {
    width: 20px;
    height: 20px;
    stroke: #7cb342;
}

/* ===================================
   Konfigurator Section
   =================================== */
.wp-konfigurator-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.wp-konfigurator-header {
    text-align: center;
    margin-bottom: 48px;
}

/* Progress Bar */
.wp-progress-bar {
    max-width: 900px;
    margin: 0 auto 48px;
}

.wp-progress-track {
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 2px;
    margin-bottom: 24px;
    overflow: hidden;
}

.wp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7cb342, #689f38);
    border-radius: 2px;
    width: 20%;
    transition: width 0.4s ease;
}

.wp-progress-steps {
    display: flex;
    justify-content: space-between;
}

.wp-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.wp-progress-step.active,
.wp-progress-step.completed {
    opacity: 1;
}

.wp-step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e5e7eb;
    color: #6b7280;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wp-progress-step.active .wp-step-number {
    background-color: #7cb342;
    color: #ffffff;
}

.wp-progress-step.completed .wp-step-number {
    background-color: #7cb342;
    color: #ffffff;
}

.wp-step-label {
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
}

.wp-progress-step.active .wp-step-label {
    color: #7cb342;
    font-weight: 600;
}

/* Form Container */
.wp-konfigurator-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.wp-form-step {
    display: none;
    padding: 48px;
}

.wp-form-step.active {
    display: block;
}

.wp-step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin-bottom: 32px;
}

.wp-step-subtitle {
    font-size: 1rem;
    color: #6b7280;
    text-align: center;
    margin-top: -20px;
    margin-bottom: 32px;
}

/* Card Selection (Step 1) */
.wp-card-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.wp-selection-card {
    cursor: pointer;
}

.wp-selection-card input {
    display: none;
}

.wp-card-inner {
    padding: 48px 32px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.wp-selection-card:hover .wp-card-inner {
    border-color: #7cb342;
    box-shadow: 0 4px 20px rgba(124, 179, 66, 0.15);
}

.wp-selection-card input:checked+.wp-card-inner {
    border-color: #7cb342;
    background-color: rgba(124, 179, 66, 0.05);
    box-shadow: 0 4px 20px rgba(124, 179, 66, 0.2);
}

.wp-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.wp-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: #4b5563;
    stroke-width: 1.5;
}

.wp-selection-card input:checked+.wp-card-inner .wp-card-icon svg {
    stroke: #7cb342;
}

.wp-card-label {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1f2937;
}

/* Accordion (Step 2) */
.wp-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wp-accordion-item {
    background-color: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wp-accordion-item.completed {
    background-color: #f0f9f0;
}

.wp-accordion-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wp-accordion-header:hover {
    background-color: #f3f4f6;
}

.wp-accordion-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e5e7eb;
    color: #6b7280;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.wp-accordion-item.completed .wp-accordion-number {
    background-color: #7cb342;
    color: #ffffff;
}

.wp-accordion-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    flex-grow: 1;
}

.wp-accordion-value {
    font-size: 0.875rem;
    color: #6b7280;
    margin-right: 8px;
}

.wp-accordion-item.completed .wp-accordion-value {
    color: #7cb342;
    font-weight: 500;
}

.wp-accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.wp-accordion-icon::before,
.wp-accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #6b7280;
    transition: all 0.3s ease;
}

.wp-accordion-icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wp-accordion-icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wp-accordion-item.active .wp-accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.wp-accordion-content {
    display: none;
    padding: 0 24px 24px;
}

.wp-accordion-item.active .wp-accordion-content {
    display: block;
}

.wp-question-text {
    font-size: 1rem;
    color: #4b5563;
    text-align: center;
    margin-bottom: 24px;
}

/* Option Grid */
.wp-option-grid {
    display: grid;
    gap: 16px;
}

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

.wp-option-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.wp-option-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.wp-option-card {
    cursor: pointer;
}

.wp-option-card input {
    display: none;
}

.wp-option-card .wp-option-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 80px;
    background-color: #ffffff;
}

.wp-option-card:hover .wp-option-label {
    border-color: #7cb342;
}

.wp-option-card input:checked+.wp-option-label,
.wp-option-card input:checked~.wp-option-label {
    border-color: #7cb342;
    background-color: rgba(124, 179, 66, 0.08);
    color: #7cb342;
}

.wp-option-card-large .wp-option-label {
    padding: 32px 24px;
    min-height: 160px;
}

.wp-option-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.wp-option-icon svg {
    width: 100%;
    height: 100%;
    stroke: #6b7280;
}

.wp-option-card input:checked~.wp-option-label .wp-option-icon svg,
.wp-option-card input:checked+.wp-option-label .wp-option-icon svg {
    stroke: #7cb342;
}

.wp-option-hint {
    display: block;
    font-size: 0.8125rem;
    color: #9ca3af;
    font-weight: 400;
    margin-top: 8px;
}

/* Renovation Cards */
.wp-renovation-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.wp-renovation-card {
    cursor: pointer;
}

.wp-renovation-card input {
    display: none;
}

.wp-renovation-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.wp-renovation-card:hover .wp-renovation-inner {
    border-color: #9ca3af;
}

.wp-renovation-card input:checked+.wp-renovation-inner.positive {
    border-color: #7cb342;
    background-color: rgba(124, 179, 66, 0.05);
}

.wp-renovation-card input:checked+.wp-renovation-inner.negative {
    border-color: #b91c1c;
    background-color: rgba(185, 28, 28, 0.05);
}

.wp-renovation-icon {
    position: relative;
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.wp-renovation-icon svg {
    width: 100%;
    height: 100%;
    stroke: #6b7280;
}

.wp-check-icon,
.wp-x-icon {
    position: absolute;
    bottom: -4px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-check-icon {
    background-color: #7cb342;
}

.wp-check-icon svg {
    width: 12px;
    height: 12px;
    stroke: #ffffff;
}

.wp-x-icon {
    background-color: #b91c1c;
}

.wp-x-icon svg {
    width: 10px;
    height: 10px;
    stroke: #ffffff;
}

.wp-renovation-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1f2937;
    text-align: center;
}

.wp-renovation-card input:checked+.wp-renovation-inner.positive .wp-renovation-label {
    color: #7cb342;
}

.wp-renovation-card input:checked+.wp-renovation-inner.negative .wp-renovation-label {
    color: #b91c1c;
}

/* Summary Message */
.wp-summary-message {
    margin-top: 32px;
    padding: 24px;
    background-color: #f0f9f0;
    border-radius: 12px;
}

.wp-summary-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.wp-summary-image {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.wp-summary-text p {
    margin: 0;
    font-size: 1.0625rem;
    color: #1f2937;
    line-height: 1.6;
}

/* Förderung Cards (Step 3) */
.wp-foerderung-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.wp-foerderung-card {
    cursor: pointer;
}

.wp-foerderung-card input {
    display: none;
}

.wp-foerderung-inner {
    position: relative;
    padding: 32px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    height: 100%;
}

.wp-foerderung-card:hover .wp-foerderung-inner {
    border-color: #7cb342;
}

.wp-foerderung-card input:checked+.wp-foerderung-inner {
    border-color: #7cb342;
    background-color: rgba(124, 179, 66, 0.05);
}

.wp-foerderung-percent {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #b91c1c;
    margin-bottom: 8px;
}

.wp-foerderung-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.wp-foerderung-text {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.wp-foerderung-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wp-foerderung-check svg {
    width: 16px;
    height: 16px;
    stroke: transparent;
    transition: stroke 0.3s ease;
}

.wp-foerderung-card input:checked+.wp-foerderung-inner .wp-foerderung-check {
    background-color: #7cb342;
    border-color: #7cb342;
}

.wp-foerderung-card input:checked+.wp-foerderung-inner .wp-foerderung-check svg {
    stroke: #ffffff;
}

.wp-foerderung-result {
    text-align: center;
    padding: 24px;
    background-color: #f9fafb;
    border-radius: 12px;
    margin-bottom: 24px;
}

.wp-foerderung-result-label {
    font-size: 1.125rem;
    color: #1f2937;
    margin-right: 16px;
}

.wp-foerderung-result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b91c1c;
}

.wp-foerderung-disclaimer {
    font-size: 0.8125rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* Config Summary (Step 4) */
.wp-config-summary {
    background-color: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.wp-config-header {
    margin-bottom: 20px;
}

.wp-config-type {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.wp-config-details {
    display: block;
    font-size: 0.9375rem;
    color: #6b7280;
    margin-top: 4px;
}

.wp-config-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wp-config-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wp-config-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #4b5563;
    min-width: 120px;
}

.wp-config-select {
    padding: 10px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #1f2937;
    background-color: #ffffff;
    min-width: 250px;
}

.wp-config-functions {
    display: flex;
    gap: 24px;
}

.wp-config-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: #4b5563;
}

.wp-config-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: #7cb342;
}

/* Product Card */
.wp-product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.wp-product-image {
    position: relative;
    background-color: #f9fafb;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-product-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.wp-product-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wp-energy-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: #16a34a;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
}

.wp-product-content {
    padding: 40px 40px 40px 0;
}

.wp-product-label {
    display: inline-block;
    font-size: 0.8125rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.wp-product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.wp-product-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 20px;
}

.wp-product-cta {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.wp-product-details-toggle {
    display: inline-block;
    font-size: 0.9375rem;
    color: #b91c1c;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 16px;
}

.wp-product-details-toggle:hover {
    text-decoration: underline;
}

.wp-product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.wp-product-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.9375rem;
    color: #4b5563;
}

.wp-product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #b91c1c;
    border-radius: 50%;
}

/* Contact Form (Step 5) */
.wp-contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.wp-form-row {
    margin-bottom: 20px;
}

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

.wp-form-row-address {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 16px;
}

.wp-form-row-city {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
}

.wp-form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 8px;
}

.wp-form-input,
.wp-form-select,
.wp-form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    color: #1f2937;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wp-form-input:focus,
.wp-form-select:focus,
.wp-form-textarea:focus {
    outline: none;
    border-color: #7cb342;
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

.wp-form-input::placeholder {
    color: #9ca3af;
}

.wp-radio-inline {
    display: flex;
    gap: 24px;
}

.wp-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 1rem;
    color: #4b5563;
}

.wp-radio-label input {
    width: 18px;
    height: 18px;
    accent-color: #7cb342;
}

.wp-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.5;
}

.wp-checkbox-label input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #7cb342;
    flex-shrink: 0;
}

.wp-checkbox-label a {
    color: #b91c1c;
}

.wp-form-hint {
    font-size: 0.8125rem;
    color: #9ca3af;
    margin-top: 4px;
    margin-left: 30px;
}

.wp-alternative-address {
    padding: 20px;
    background-color: #f9fafb;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Navigation Buttons */
.wp-form-navigation {
    display: flex;
    justify-content: space-between;
    padding: 24px 48px 48px;
    background-color: #ffffff;
}

.wp-btn-back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    background-color: #f3f4f6;
    color: #4b5563;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wp-btn-back:hover {
    background-color: #e5e7eb;
}

.wp-btn-next,
.wp-btn-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
    background-color: #b91c1c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.wp-btn-next:hover,
.wp-btn-submit:hover {
    background-color: #991b1b;
    transform: translateY(-2px);
}

.wp-btn-next:disabled,
.wp-btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.wp-success-message {
    text-align: center;
    padding: 80px 48px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.wp-success-icon {
    margin-bottom: 32px;
}

.wp-success-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.wp-success-text {
    font-size: 1.0625rem;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   FAQ Section
   =================================== */
.wp-faq-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.wp-faq-accordion {
    max-width: 800px;
    margin: 48px auto 0;
}

.wp-faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.wp-faq-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.wp-faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    transition: background-color 0.3s ease;
}

.wp-faq-question:hover {
    background-color: #f9fafb;
}

.wp-faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #20620c;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.wp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.wp-faq-item.active .wp-faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.wp-faq-answer p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   CTA Section
   =================================== */
.wp-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #20620c 0%, #2c5282 100%);
}

.wp-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.wp-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.wp-cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .wp-hero-title {
        font-size: 2.5rem;
    }

    .wp-hero-subtitle {
        font-size: 1.5rem;
    }

    .wp-intro-grid {
        gap: 48px;
    }

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

    .wp-foerderung-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .wp-foerderung-cards .wp-foerderung-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .wp-hero-section {
        min-height: 600px;
    }

    .wp-hero-content {
        padding: 60px 0;
    }

    .wp-hero-title {
        font-size: 2rem;
    }

    .wp-hero-subtitle {
        font-size: 1.25rem;
    }

    .wp-hero-description {
        font-size: 1rem;
    }

    .wp-hero-buttons {
        flex-direction: column;
    }

    .wp-trust-badges {
        gap: 24px;
    }

    .wp-trust-badge {
        font-size: 0.8125rem;
    }

    .wp-intro-section {
        padding: 60px 0;
    }

    .wp-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wp-intro-image {
        order: -1;
    }

    .wp-usp-section {
        padding: 60px 0;
    }

    .wp-usp-grid {
        grid-template-columns: 1fr;
    }

    .wp-section-title {
        font-size: 1.75rem;
    }

    /* Urgency Section Mobile */
    .wp-urgency-section {
        padding: 60px 0;
    }

    .wp-urgency-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wp-urgency-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wp-stat-number {
        font-size: 2.5rem;
    }

    .wp-urgency-item {
        flex-direction: column;
        text-align: center;
    }

    /* Comparison Section Mobile */
    .wp-comparison-section {
        padding: 60px 0;
    }

    .wp-comparison-table {
        font-size: 0.875rem;
    }

    .wp-comparison-header,
    .wp-comparison-row {
        grid-template-columns: 1.2fr 0.9fr 0.9fr;
    }

    .wp-comparison-col {
        padding: 12px 8px;
    }

    .wp-comparison-header .wp-comparison-col span:not([class]) {
        font-size: 0.75rem;
    }

    /* Process Section Mobile */
    .wp-process-section {
        padding: 60px 0;
    }

    .wp-process-steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .wp-process-step {
        max-width: 100%;
    }

    .wp-process-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    /* Testimonials Section Mobile */
    .wp-testimonials-section {
        padding: 60px 0;
    }

    .wp-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Konfigurator Benefits Mobile */
    .wp-konfigurator-benefits {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .wp-konfigurator-section {
        padding: 60px 0;
    }

    .wp-progress-steps {
        display: none;
    }

    .wp-form-step {
        padding: 32px 24px;
    }

    .wp-card-selection {
        grid-template-columns: 1fr;
    }

    .wp-option-grid-4,
    .wp-option-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .wp-renovation-row {
        grid-template-columns: 1fr;
    }

    .wp-foerderung-cards {
        grid-template-columns: 1fr;
    }

    .wp-foerderung-cards .wp-foerderung-card:last-child {
        grid-column: span 1;
    }

    .wp-product-card {
        grid-template-columns: 1fr;
    }

    .wp-product-content {
        padding: 32px;
    }

    .wp-form-row-2,
    .wp-form-row-address,
    .wp-form-row-city {
        grid-template-columns: 1fr;
    }

    .wp-form-navigation {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
    }

    .wp-btn-back,
    .wp-btn-next,
    .wp-btn-submit {
        width: 100%;
        justify-content: center;
    }

    .wp-btn-next,
    .wp-btn-submit {
        margin-left: 0;
    }

    .wp-summary-content {
        flex-direction: column;
        text-align: center;
    }

    .wp-summary-image {
        width: 100%;
        max-width: 250px;
        height: auto;
    }

    .wp-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .wp-hero-title {
        font-size: 1.75rem;
    }

    .wp-option-grid-4,
    .wp-option-grid-5 {
        grid-template-columns: 1fr;
    }

    .wp-foerderung-percent {
        font-size: 2.5rem;
    }

    .wp-foerderung-result-value {
        font-size: 2rem;
    }
}
