* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    background-color: #ffffff;
}

.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    z-index: 0;
    padding-bottom: 40px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    background-color: #fff5f5;
    color: #dc3545;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

.hero-title .text-primary {
    color: #0066cc !important;
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 8px;
    display: block;
    line-height: 1.4;
}

.installateur-highlight {
    color: #1a1a1a;
    font-weight: 900;
    font-size: 50px;
    display: inline-block;
    position: relative;
    letter-spacing: -1px;
    padding-bottom: 8px;
}

.installateur-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0066cc;
    border-radius: 2px;
}


.creative-service-bar {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* 24/7 Badge */
.time-badge-24 {
    position: relative;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(30, 60, 114, 0.4);
    overflow: hidden;
}

.hour-display {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: digitFlicker 4s infinite;
}

.separator {
    font-size: 20px;
    color: #64b5f6;
    font-weight: 300;
    animation: separatorBlink 2s infinite;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid rgba(100, 181, 246, 0.6);
    animation: pulseRing 3s infinite;
}

@keyframes digitFlicker {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    50% { text-shadow: 0 0 20px rgba(100, 181, 246, 0.8), 0 0 30px rgba(100, 181, 246, 0.6); }
}

@keyframes separatorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Arrow Service */
.service-arrow {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.arrow-text {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #667eea;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.arrow-shape {
    width: 0;
    height: 0;
    border-left: 15px solid #667eea;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    animation: arrowPulse 2s infinite;
    filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.6));
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Speed Counter */
.speed-counter {
    position: relative;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    overflow: hidden;
    transform: rotate(-1deg);
}

.counter-icon {
    font-size: 20px;
    animation: iconSpin 3s infinite;
}

.counter-numbers {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.big-number {
    font-size: 28px;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: numberBounce 2s infinite;
}

.unit-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.speed-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: speedStreak 3s infinite;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}

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

@keyframes speedStreak {
    0% { left: -100%; }
    100% { left: 100%; }
}

.notdienst-simple {
    font-size: 20px;
    font-weight: 400;
    color: #495057;
    margin-top: 4px;
    display: block;
    line-height: 1.3;
    position: relative;
    margin-left: 24px;
}

.notdienst-simple::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background: linear-gradient(90deg, #0066cc, transparent);
}

.notdienst-simple::after {
    content: '30 Min';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    background: #28a745;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

.hero-description {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.keyword-highlight {
    color: #0066cc;
    font-weight: 600;
    background: linear-gradient(120deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
    padding: 2px 6px;
    border-radius: 4px;
    border-left: 3px solid #0066cc;
}


.hero-features-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: flex-start;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    white-space: nowrap;
    border-radius: 8px;
}

.btn-danger:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-outline-primary {
    border: 2px solid #0066cc;
    color: #0066cc;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-primary:hover {
    background-color: #0066cc;
    border-color: #0066cc;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    height: 400px;
}

.photo-item {
    overflow: hidden;
    position: relative;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

/* Hero Offer Badge */
.hero-offer-badge {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 16px;
    border: 3px solid #dc3545;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    overflow: hidden;
    min-width: 140px;
    flex-shrink: 0;
    position: relative;
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.hero-offer-badge:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4);
}

.savings-ribbon {
    position: absolute;
    top: 8px;
    right: -12px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 4px 16px;
    font-size: 12px;
    font-weight: 900;
    transform: rotate(12deg);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
    letter-spacing: 0.5px;
}

.offer-content {
    padding: 16px 12px 12px 12px;
    text-align: center;
}

.special-label {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(255, 193, 7, 0.4);
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
}

.strike-price {
    font-size: 14px;
    color: #6c757d;
    text-decoration: line-through;
    font-weight: 600;
    position: relative;
}

.strike-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    right: -2px;
    height: 2px;
    background: #dc3545;
    transform: translateY(-50%) rotate(-8deg);
}

.main-price {
    font-size: 28px;
    font-weight: 900;
    color: #dc3545;
    text-shadow: 0 1px 3px rgba(220, 53, 69, 0.3);
    position: relative;
}

.main-price::after {
    content: '€';
    font-size: 16px;
    font-weight: 700;
    vertical-align: top;
    margin-left: 2px;
}

.offer-text {
    font-size: 11px;
    color: #495057;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.2;
}

.urgency-timer {
    font-size: 10px;
    color: #dc3545;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: urgencyBlink 2s infinite;
}

@keyframes urgencyBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.6; }
}

.google-rating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideUp 0.5s ease-out;
}

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

.google-icon {
    flex-shrink: 0;
}

.rating-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star-rating {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.stars-icons {
    color: #fbbc04;
    font-size: 16px;
    letter-spacing: -2px;
}

.reviews-count {
    font-size: 12px;
    color: #5f6368;
    font-weight: 500;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .installateur-highlight {
        font-size: 38px;
        letter-spacing: -0.8px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-image {
        margin-bottom: 30px;
    }
    
    .hero-photo-grid {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 20px 0;
    }
    
    .hero-row {
        min-height: auto !important;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .installateur-highlight {
        font-size: 32px;
        letter-spacing: -0.5px;
        line-height: 1.1;
        white-space: nowrap;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        font-size: 16px;
    }
    
    .feature-item {
        font-size: 14px;
    }
    
    .emergency-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .services-section {
        margin-top: -40px;
    }
    
    .hero-features-container {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .hero-features {
        width: 100%;
    }
    
    .hero-offer-badge {
        min-width: 120px;
        transform: rotate(-1deg) scale(0.9);
    }
    
    .hero-offer-badge:hover {
        transform: rotate(0deg) scale(0.95);
    }
    
    .savings-ribbon {
        font-size: 10px;
        padding: 3px 12px;
        right: -10px;
    }
    
    .special-label {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    .main-price {
        font-size: 24px;
    }
    
    .main-price::after {
        font-size: 14px;
    }
    
    .strike-price {
        font-size: 12px;
    }
    
    .offer-text {
        font-size: 10px;
    }
    
    .urgency-timer {
        font-size: 9px;
    }
    
    .google-rating-badge {
        transform: scale(0.9);
        left: 10px;
        bottom: 10px;
        padding: 10px 12px;
    }
    
    .hero-photo-grid {
        height: 250px;
        gap: 6px;
    }
}

/* Services Section */
.services-section {
    background: #f8f9fa;
    margin-top: -20px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 18px;
    color: #5a6c7d;
    margin-top: 12px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-badge-urgent {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc3545;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-badge-winter {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #17a2b8;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-badge-danger {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffc107;
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-description {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.service-features li {
    font-size: 13px;
    color: #2c3e50;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.emergency-text {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

/* Live Status Bar */
.live-status-bar {
    margin-top: 40px;
}

.compact-status-container {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-left: 3px solid #0066cc;
}

.status-info-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.live-text {
    color: #28a745;
}

.status-main-title {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.quick-benefits {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.quick-benefit {
    background: #0066cc;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.status-action {
    display: flex;
    justify-content: flex-end;
}

.premium-call-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-decoration: none;
    padding: 20px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(220, 53, 69, 0.3);
    border: none;
}

.premium-call-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(220, 53, 69, 0.4);
}

.call-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.call-action {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.95;
}

.call-number {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .status-container {
        padding: 24px 20px;
    }
    
    .status-info-side {
        text-align: center;
        margin-bottom: 24px;
    }
    
    .availability-badge {
        margin: 0 auto;
    }
    
    .quick-benefits {
        justify-content: center;
        gap: 12px;
    }
    
    .quick-benefit {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .status-action {
        justify-content: center;
    }
    
    .premium-call-btn {
        padding: 18px 24px;
        width: 100%;
        max-width: 300px;
    }
    
    .call-action {
        font-size: 13px;
    }
    
    .call-number {
        font-size: 16px;
    }
    
    .bg-circle-1, .bg-circle-2 {
        display: none;
    }
}

/* Problem Solution Section */
.problem-solution-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.conversion-box {
    max-width: 1200px;
    margin: 0 auto;
}

.urgency-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.urgency-badge {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 10px 30px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.conversion-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.1;
}

.conversion-subtitle {
    font-size: 20px;
    color: #495057;
    font-weight: 500;
    margin-bottom: 12px;
}

.conversion-proof {
    font-size: 16px;
    color: #0066cc;
    font-weight: 600;
    margin: 0;
}

/* Emergency Services */
.emergency-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-service-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.emergency-service-item:hover {
    transform: translateY(-4px);
}

.service-photo {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0 16px 0;
    padding: 0 16px;
}

.service-call-btn {
    background: #dc3545;
    color: white;
    padding: 12px 24px;
    margin: 0 16px 20px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    transition: background-color 0.2s ease;
}

.service-call-btn:hover {
    background: #c82333;
    color: white;
}

.conversion-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #0066cc;
    overflow: hidden;
}

.conversion-icon {
    width: 100%;
    height: 160px;
    background: #f8f9fa;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.conversion-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.conversion-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.conversion-cta {
    padding: 0 24px 24px 24px;
}

.conversion-problem {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.conversion-desc {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.conversion-promise {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promise-time,
.promise-action,
.promise-guarantee {
    font-size: 14px;
    color: #495057;
    font-weight: 600;
}

.emergency-btn {
    background: #0066cc;
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.emergency-btn:hover {
    background: #0052a3;
    color: white;
}

.main-conversion-cta {
    background: #ffffff;
    border: 2px solid #0066cc;
    border-radius: 12px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
    color: #495057;
    line-height: 1.6;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.benefit {
    font-size: 15px;
    font-weight: 500;
    color: #495057;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.main-cta-btn {
    background: #dc3545;
    color: white;
    padding: 24px 40px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 3px 12px rgba(220, 53, 69, 0.3);
    border: none;
}

.main-cta-btn:hover {
    background: #c82333;
    color: white;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text {
    font-size: 16px;
    font-weight: 600;
}

.btn-phone {
    font-size: 22px;
    font-weight: 700;
}

.response-time {
    font-size: 14px;
    margin: 0;
    color: #495057;
    text-align: center;
    font-weight: 600;
}


@media (max-width: 767px) {
    .conversion-title {
        font-size: 36px;
    }
    
    .conversion-subtitle {
        font-size: 18px;
    }
    
    .conversion-proof {
        font-size: 15px;
    }
    
    .emergency-services {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .service-name {
        font-size: 18px;
    }
    
    .conversion-item {
        padding: 24px;
    }
    
    .conversion-problem {
        font-size: 18px;
    }
    
    .main-conversion-cta {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .benefit {
        font-size: 14px;
        text-align: left;
    }
    
    .main-cta-btn {
        padding: 20px 32px;
        width: 100%;
        justify-content: center;
    }
}

/* Results Section */
.results-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.results-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.results-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.results-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-top: 10px;
}

.results-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.result-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 600px;
    width: 100%;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.result-header {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.result-time {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
}

.result-duration {
    font-size: 13px;
    color: #28a745;
    font-weight: 600;
}

.result-images {
    position: relative;
    background: #f0f0f0;
}

.result-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.before-after-labels {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.label-before, .label-after {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.label-after {
    background: rgba(40, 167, 69, 0.9);
}

.placeholder-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background: linear-gradient(90deg, #fff5f5 0%, #f5fff5 100%);
    height: 250px;
}

.before-image, .after-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.before-image span, .after-image span {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
}

.arrow {
    font-size: 30px;
    color: #6c757d;
    font-weight: 300;
}

.result-content {
    padding: 20px;
}

.result-content .result-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.result-description {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.result-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    background: #e7f5ff;
    color: #0066cc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.results-cta {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.results-cta .cta-text {
    font-size: 20px;
    color: #495057;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .results-title {
        font-size: 28px;
    }
    
    .result-card {
        margin: 0 15px;
    }
}