/* ===== MODERN EIGENTÜMER PAGE STYLES ===== */
/* Minimalistisch, Clean, Professionell mit dezenten Animationen */

/* Owner Hero Header - Two Options Design */
.owner-hero-header {
    background: linear-gradient(135deg, #5a8e22 0%, #4a7c1c 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 750px;
}

.owner-hero-header .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

/* Energy flow removed - static background only */

/* Hero Headline */
.hero-headline {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.hero-headline .intro {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero-headline .main {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    line-height: 1.1;
}

/* Options Showcase */
.options-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.option-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    min-width: 250px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 1);
}

.option-label {
    background: rgba(116, 183, 42, 0.1);
    color: #5a8e22;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: gentle-bounce 3s ease-in-out infinite;
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.option-card h3 {
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.option-value {
    font-size: 2rem;
    font-weight: 700;
    color: #74b72a;
    margin: 10px 0;
}

.option-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.divider {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse-divider 2s ease-in-out infinite;
}

@keyframes pulse-divider {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Shared Benefits - Glassmorphism Container */
.shared-benefits.glass-container {
    display: inline-flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.shared-benefits.glass-container:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.benefit-item svg {
    width: 20px;
    height: 20px;
    color: #74b72a;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .shared-benefits.glass-container {
        flex-direction: column;
        gap: 12px;
        padding: 16px 24px;
        width: auto;
    }

    .benefit-item {
        font-size: 0.9rem;
    }
}

/* Premium Header Styles - Keep for compatibility */
.premium-header {
    background: linear-gradient(135deg, #5a8e22 0%, #4a7c1c 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.premium-header .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.premium-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(116, 183, 42, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(116, 183, 42, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .owner-hero-header {
        padding: 60px 0 40px;
        min-height: 600px;
    }
    
    .hero-headline .intro {
        font-size: 1rem;
    }
    
    .hero-headline .main {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .options-showcase {
        flex-direction: column;
        gap: 20px;
        margin: 30px 0;
    }
    
    .option-card {
        max-width: 100%;
        min-width: 100%;
        padding: 25px;
    }
    
    .divider {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .shared-benefits {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .benefit {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .owner-hero-header {
        min-height: 450px;
    }

    .option-icon {
        font-size: 2.5rem;
    }

    .option-value {
        font-size: 1.75rem;
    }

    .option-card h3 {
        font-size: 1.25rem;
    }
}

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

/* Market Ticker - Subtle Eye-Catcher */
.market-ticker-subtle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 28px;
    margin: 0 auto 40px;
    backdrop-filter: blur(10px);
    animation: subtle-pulse 4s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes subtle-pulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.ticker-label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
}

.ticker-value {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.ticker-trend {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
}

.ticker-trend.positive {
    background: rgba(34, 197, 94, 0.15);
    color: #74b72a;
}

.ticker-info {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    line-height: 1;
}

/* Premium Typography */
.premium-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 auto 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 900px;
}

.title-accent {
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.premium-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto 50px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.highlight-number {
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.highlight-tech {
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.trust-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.trust-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* Modern Value Proposition */
.premium-intro {
    padding: 100px 0;
    background: #fff;
}

.section-title.minimal {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #74b72a 0%, #5a8e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Interactive Rental Calculator */
.rental-calculator-preview {
    background: #f8fafc;
    border-radius: 24px;
    padding: 48px;
    margin: 48px 0;
}

.calc-input-modern label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.input-slider-combo {
    display: flex;
    align-items: center;
    gap: 24px;
}

.modern-slider {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.modern-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #74b72a 0%, #5a8e22 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(116, 183, 42, 0.3);
    transition: transform 0.2s;
}

.modern-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.area-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    min-width: 120px;
}

.calc-result-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.result-card {
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.result-card.highlight {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 2px solid #74b72a;
}

.result-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 8px;
}

.result-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
}

.result-card.highlight .result-value {
    color: #74b72a;
}

/* Three Pillars Modern */
.three-pillars-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.pillar-card {
    padding: 40px 32px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pillar-card.featured {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #74b72a;
}

.pillar-icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #74b72a 0%, #5a8e22 100%);
    border-radius: 12px;
    margin-bottom: 24px;
}

.pillar-icon {
    width: 28px;
    height: 28px;
    color: #fff;
}

.pillar-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.pillar-card p {
    color: #64748b;
    line-height: 1.6;
}

.badge-new {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #74b72a 0%, #5a8e22 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Gradient Background Section */
.gradient-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 100px 0;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 64px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-top: 12px;
}

/* Qualification Grid */
.qualification-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.quali-category {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quali-category.premium {
    background: #fff;
    border: 2px solid #74b72a;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 32px;
}

.category-icon {
    width: 24px;
    height: 24px;
    color: #74b72a;
}

.quali-category.premium .category-icon {
    color: #74b72a;
}

.badge-bonus {
    margin-left: auto;
    padding: 4px 12px;
    background: #74b72a;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 20px;
}

.requirement-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.req-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.req-card.interactive:hover {
    border-color: #74b72a;
    transform: translateX(4px);
}

.req-card.bonus {
    background: rgba(255, 255, 255, 0.8);
    position: relative;
}

.req-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.req-icon svg {
    width: 100%;
    height: 100%;
    color: #74b72a;
}

.req-content {
    flex: 1;
}

.req-content strong {
    display: block;
    color: #0f172a;
    margin-bottom: 4px;
}

.req-content span {
    font-size: 0.875rem;
    color: #64748b;
}

.req-status {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #74b72a 0%, #5a8e22 100%);
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.req-status .check-icon {
    width: 16px;
    height: 16px;
    color: #fff;
}

.bonus-tag {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: #74b72a;
}

/* Qualification Score */
.qualification-score-display {
    max-width: 600px;
    margin: 64px auto 0;
    text-align: center;
}

.score-meter {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}

.score-progress {
    height: 100%;
    background: linear-gradient(90deg, #74b72a 0%, #5a8e22 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

.score-text {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 32px;
}

.score-text strong {
    color: #0f172a;
}

/* Premium CTA Button */
.cta-button.premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #74b72a 0%, #5a8e22 100%);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(116, 183, 42, 0.3);
}

.cta-button.premium-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(116, 183, 42, 0.4);
}

.cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

/* Modern Split Screen Renovation */
.modern-split {
    padding: 0;
    background: #fff;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.split-visual {
    position: relative;
    background: #f8faf8;
}

.before-after-showcase {
    position: relative;
    height: 100%;
}

.showcase-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.showcase-image.active {
    opacity: 1;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-label {
    position: absolute;
    top: 32px;
    left: 32px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.image-toggle {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    padding: 4px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.toggle-btn {
    padding: 8px 20px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: #74b72a;
    color: #fff;
}

.split-content {
    display: flex;
    align-items: center;
    padding: 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.content-wrapper {
    max-width: 500px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #74b72a;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.split-content .section-title {
    color: #0f172a;
    margin-bottom: 48px;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.value-card {
    text-align: center;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #74b72a;
    margin-bottom: 8px;
}

.value-label {
    font-size: 0.875rem;
    color: #64748b;
}

/* Service Timeline */
.service-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #74b72a 0%, #5a8e22 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: #0f172a;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.timeline-content p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Process Timeline Modern */
.process-section {
    padding: 100px 0;
}

.process-timeline-modern {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-progress {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
}

.progress-line {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e2e8f0;
}

.progress-line-active {
    position: absolute;
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, #74b72a 0%, #5a8e22 100%);
    transition: width 0.5s ease;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 80px;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-marker {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: #64748b;
    font-weight: 700;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-step.active .step-number {
    background: linear-gradient(135deg, #74b72a 0%, #5a8e22 100%);
    color: #fff;
    transform: scale(1.2);
}

.step-duration {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
}

.step-content h4 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.875rem;
    color: #64748b;
}

/* Final CTA Section */
.final-cta-section {
    margin-top: 80px;
}

.cta-card.premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px;
    background: #fff;
    border: 2px solid #74b72a;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-content h3 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.cta-content p {
    color: #64748b;
    font-size: 1.125rem;
}

.cta-action {
    text-align: right;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.25rem;
}

.cta-note {
    display: block;
    margin-top: 12px;
    font-size: 0.875rem;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-title {
        font-size: 2rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 24px;
    }
    
    .qualification-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .split-container {
        grid-template-columns: 1fr;
    }
    
    .split-content {
        padding: 40px;
    }
    
    .timeline-steps {
        flex-direction: column;
        gap: 60px;
    }
    
    .timeline-progress {
        display: none;
    }
    
    .cta-card.premium {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .cta-action {
        text-align: center;
    }
}

/* TesVolt Partnership Section */
.tesvolt-partner-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.partnership-badge {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-width: 400px;
    margin: 0 auto 50px;
    border: 2px solid #74b72a;
}

.tesvolt-showcase {
    margin-top: 50px;
}

.usp-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(116, 183, 42, 0.15) !important;
}

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

.counter {
    animation: counter-up 1s ease forwards;
}