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

/* Text wrapping and overflow rules */
h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

p, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Header Styles */
.site-header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.15);
    padding: 8px;
}

.logo-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.5px;
    margin: 0;
}

.brand-tagline {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    margin-top: 2px;
}

.header-call {
    display: flex;
    align-items: center;
}

.header-call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.header-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.header-phone-icon {
    width: 20px;
    height: 20px;
    animation: ring-header 2s ease-in-out infinite;
}

@keyframes ring-header {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

.header-call-text {
    display: flex;
    flex-direction: column;
}

.call-now {
    font-size: 10px;
    font-weight: 600;
    opacity: 0.95;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.call-number {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

/* Mobile Header */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo-section {
        gap: 8px;
    }

    .logo {
        width: 40px;
        height: 40px;
        padding: 6px;
    }

    .brand-name {
        font-size: 20px;
    }

    .brand-tagline {
        font-size: 10px;
    }

    .header-call-btn {
        padding: 8px 12px;
        gap: 8px;
    }

    .header-phone-icon {
        width: 18px;
        height: 18px;
    }

    .call-now {
        display: none;
    }

    .call-number {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 36px;
        height: 36px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-tagline {
        display: none;
    }

    .header-call-btn {
        padding: 6px 10px;
        border-radius: 40px;
    }

    .header-phone-icon {
        width: 16px;
        height: 16px;
    }

    .call-number {
        font-size: 12px;
    }
}

:root {
    --primary-color: #dc2626;
    --primary-hover: #b91c1c;
    --secondary-color: #1e40af;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #059669;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: #ffffff;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

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

.hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

.trust-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.badge-primary {
    background: var(--success-color);
    color: white;
    animation: pulse 2s infinite;
}

.badge-germany {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.flag-colors {
    display: flex;
    width: 24px;
    height: 16px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

.flag-black {
    flex: 1;
    background: #000000;
}

.flag-red {
    flex: 1;
    background: #DD0000;
}

.flag-yellow {
    flex: 1;
    background: #FFCE00;
}

.certification-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: var(--success-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.cert-icon {
    width: 20px;
    height: 20px;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-title .text-primary {
    color: var(--primary-color);
}

.hero-title .highlight {
    color: var(--success-color);
    display: block;
    font-size: 24px;
    font-weight: 600;
    margin-top: 8px;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--success-color);
    border-radius: 2px;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.trust-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trust-rating-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.12);
    border-color: #d1d5db;
}

.google-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

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

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

.rating-stars .star {
    width: 16px;
    height: 16px;
    color: #fbbf24;
}

.rating-score {
    margin-left: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.separator {
    color: #d1d5db;
}

.verified-text {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--success-color);
    font-weight: 600;
}

.check-icon {
    width: 14px;
    height: 14px;
    stroke: var(--success-color);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    padding-left: 8px;
}

/* Hero Features List Styles */
.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.feature-list-item:hover {
    padding-left: 6px;
}

.feature-icon-check {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
    background: #f0fdf4;
    border-radius: 50%;
    padding: 3px;
    box-sizing: border-box;
}

.feature-list-item span {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}

.feature-icon-badge {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon-badge::before {
    opacity: 1;
}

.feature-item:hover .feature-icon-badge {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.feature-icon-badge .feature-icon {
    width: 22px;
    height: 22px;
    color: white;
    stroke-width: 2.5;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}

.feature-subtitle {
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.3;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--success-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid #e5e7eb !important;
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-primary);
}

.btn-icon, .phone-icon {
    width: 20px;
    height: 20px;
}

.trust-indicators {
    display: flex;
    gap: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 28px;
    color: var(--text-primary);
    line-height: 1;
}

.trust-item span {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Hero Image Section */
.hero-image {
    animation: fadeInRight 0.8s ease-out;
    position: relative;
    display: flex;
    flex-direction: column;
}

.image-wrapper {
    position: relative;
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0;
}

.image-placeholder::before {
    display: none;
}

.image-placeholder::after {
    display: none;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: none;
}

@keyframes gradientRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.image-gradient-overlay {
    display: none;
}

.image-corners {
    display: none;
}

.corner {
    display: none;
}

.corner.top-left,
.corner.top-right {
    clip-path: polygon(0 0, 100% 0, 100% 40%, 40% 40%, 40% 100%, 0 100%);
}

.corner.bottom-left,
.corner.bottom-right {
    display: none;
}

.corner.top-left {
    top: 0;
    left: 0;
    transform: rotate(0deg);
}

.corner.top-right {
    top: 0;
    right: 0;
    transform: rotate(90deg);
    animation-delay: 1s;
}

.corner.bottom-right {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
    animation-delay: 2s;
}

.corner.bottom-left {
    bottom: 0;
    left: 0;
    transform: rotate(-90deg);
    animation-delay: 3s;
}

@keyframes cornerGlow {
    0%, 100% {
        opacity: 0.3;
        filter: blur(0px);
    }
    50% {
        opacity: 0.6;
        filter: blur(2px);
    }
}

/* Desktop Features Card */
.desktop-features-card {
    display: none;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 30px;
    margin-top: 30px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    overflow: hidden;
}

.desktop-features-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 50%, #10b981 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@media (min-width: 1024px) {
    .desktop-features-card {
        display: block;
    }
    
    .mobile-call-bar {
        display: none;
    }
    
    .btn.desktop-only {
        display: none;
    }
}

@media (min-width: 1200px) {
    .desktop-features-card {
        padding: 35px;
    }
    
    .feature-list {
        gap: 20px;
    }
    
    .feature-item-card {
        padding: 25px 20px;
    }
    
    .desktop-cta-button {
        padding: 20px 30px;
        font-size: 20px;
    }
    
    .desktop-phone-number {
        font-size: 24px;
    }
}

@media (max-width: 1200px) and (min-width: 1024px) {
    .feature-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(16, 185, 129, 0.1);
    position: relative;
}

.check-circle {
    width: 28px;
    height: 28px;
    animation: pulse 2s ease-in-out infinite;
}

.feature-title {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.5px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 15px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.feature-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.feature-item-card .feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.feature-item-card .euro-icon {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-text strong {
    font-size: 18px;
    color: #111827;
    font-weight: 800;
    line-height: 1;
}

.feature-text span {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.cta-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
    width: 100%;
}

.desktop-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.desktop-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.desktop-cta-button:hover::before {
    left: 100%;
}

.desktop-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.find-master-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.find-master-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.find-master-button:hover::before {
    left: 100%;
}

.find-master-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.find-master-button svg {
    width: 20px;
    height: 20px;
    stroke: white;
    flex-shrink: 0;
}

.cta-phone {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.desktop-phone-number {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.availability-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}


/* Mobile Floating Call Bar - Compact Design */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 1000;
    animation: slideInUp 0.5s ease-out;
}

@media (max-width: 1023px) {
    .mobile-call-bar {
        display: block;
    }
}

.mobile-call-link {
    display: block;
    text-decoration: none;
}

.mobile-call-content {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: #000000;
    border-radius: 14px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5), 
                0 0 0 2px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-call-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent);
    animation: shimmer 3s infinite;
}

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

.mobile-call-link:active .mobile-call-content {
    transform: scale(0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.call-icon-section {
    position: relative;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.mobile-phone-icon {
    width: 22px;
    height: 22px;
    color: white;
    animation: ring-phone 2s ease-in-out infinite;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

@keyframes ring-phone {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-25deg); }
    20% { transform: rotate(25deg); }
    30% { transform: rotate(-25deg); }
    40% { transform: rotate(25deg); }
    50% { transform: rotate(0deg); }
}

.pulse-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border: 2px solid #000;
    border-radius: 50%;
    animation: urgent-pulse 1s ease-in-out infinite;
    z-index: 2;
}

@keyframes urgent-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
}

.call-text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: white;
    min-width: 0;
    padding: 0 8px;
}

.mobile-call-label {
    font-size: 10px;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mobile-call-number {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.call-cta {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 10px;
    color: white;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),
                0 2px 4px rgba(220, 38, 38, 0.3);
    animation: cta-glow 2s ease-in-out infinite;
}

@keyframes cta-glow {
    0%, 100% {
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),
                    0 2px 4px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),
                    0 4px 12px rgba(220, 38, 38, 0.5);
    }
}

.cta-arrow {
    width: 14px;
    height: 14px;
    animation: arrow-move 1.5s ease-in-out infinite;
}

@keyframes arrow-move {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}


@keyframes live-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

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


@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
}


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

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-10deg);
    }
    20% {
        transform: rotate(10deg);
    }
    30% {
        transform: rotate(-10deg);
    }
    40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.05);
        opacity: 0;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .mobile-call-bar {
        bottom: 8px;
        left: 8px;
        right: 8px;
    }

    .mobile-call-content {
        padding: 6px 10px;
        gap: 8px;
    }

    .call-icon-section {
        width: 32px;
        height: 32px;
    }

    .mobile-phone-icon {
        width: 18px;
        height: 18px;
    }

    .pulse-dot {
        width: 8px;
        height: 8px;
    }

    .mobile-call-label {
        font-size: 9px;
    }

    .mobile-call-number {
        font-size: 14px;
    }

    .call-cta {
        padding: 5px 10px;
        font-size: 10px;
        gap: 3px;
    }

    .cta-arrow {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 360px) {
    .mobile-call-content {
        padding: 5px 8px;
    }

    .call-cta span {
        display: none;
    }

    .call-cta {
        padding: 6px;
    }

    .mobile-call-number {
        font-size: 13px;
    }
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-buttons-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .desktop-cta-button,
    .find-master-button {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }
    
    .find-master-button span {
        font-size: 14px;
    }
    
    .hero {
        padding: 40px 0 60px;
        background: #ffffff;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .trust-rating-badge {
        padding: 10px 14px;
        gap: 10px;
        margin-bottom: 20px;
    }

    .google-icon {
        width: 28px;
        height: 28px;
    }

    .rating-stars .star {
        width: 14px;
        height: 14px;
    }

    .rating-score {
        font-size: 14px;
    }

    .rating-info {
        font-size: 11px;
    }

    .check-icon {
        width: 12px;
        height: 12px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }

    .trust-indicators {
        justify-content: space-between;
        gap: 20px;
    }

    .trust-item strong {
        font-size: 20px;
    }

    .trust-item span {
        font-size: 12px;
    }

    .hero-image {
        order: -1;
        margin: -40px -20px 0;
        background: transparent;
        padding: 0 20px;
    }

    .image-wrapper {
        position: relative;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }

    .image-placeholder {
        height: 280px;
        background: transparent;
        border-radius: 0;
        position: relative;
        overflow: visible;
    }

    .image-placeholder::after {
        display: none;
    }

    .image-placeholder::before {
        display: none;
    }

    .image-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center bottom;
        position: relative;
        z-index: 1;
        margin: 0 auto;
        display: block;
    }

    .image-gradient-overlay {
        display: none;
    }

    .corner {
        width: 50px;
        height: 50px;
    }

    .corner.top-left,
    .corner.top-right {
        display: none;
    }

    .floating-badge {
        padding: 8px 12px;
        font-size: 12px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .floating-badge.top {
        top: 30px;
        left: 20px;
        animation: float 3s ease-in-out infinite;
    }

    .floating-badge.bottom {
        bottom: 60px;
        right: 20px;
        animation: float 3s ease-in-out infinite;
        animation-delay: 1.5s;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 0 50px;
    }
    
    .hero-title {
        font-size: 28px;
    }

    .hero-title .highlight {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .trust-rating-badge {
        padding: 8px 12px;
        gap: 8px;
        margin-bottom: 16px;
    }

    .google-icon {
        width: 24px;
        height: 24px;
    }

    .rating-stars .star {
        width: 12px;
        height: 12px;
    }

    .rating-score {
        font-size: 12px;
    }

    .rating-info {
        font-size: 10px;
        flex-wrap: wrap;
    }

    .check-icon {
        width: 10px;
        height: 10px;
    }

    .hero-features {
        gap: 16px;
        margin-bottom: 24px;
    }

    .feature-item {
        gap: 12px;
        padding: 8px 0;
    }

    .feature-icon-badge {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(16, 185, 129, 0.25);
    }

    .feature-icon-badge .feature-icon {
        width: 20px;
        height: 20px;
        stroke-width: 2.2;
    }

    .feature-item:hover .feature-icon-badge {
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
    }

    /* Hero Features List Mobile */
    .hero-features-list {
        gap: 10px;
        margin-bottom: 24px;
    }

    .feature-list-item {
        gap: 10px;
        padding: 6px 0;
    }

    .feature-icon-check {
        width: 18px;
        height: 18px;
        padding: 2px;
    }

    .feature-list-item span {
        font-size: 15px;
    }

    .feature-title {
        font-size: 15px;
    }

    .feature-subtitle {
        font-size: 13px;
    }

    .trust-indicators {
        flex-wrap: wrap;
        gap: 16px;
    }

    .trust-item {
        flex: 1 1 calc(33.333% - 16px);
        min-width: 80px;
        text-align: center;
    }

    .hero {
        background: #ffffff;
    }

    .hero-image {
        margin: -30px -20px 0;
        background: transparent;
    }

    .image-wrapper {
        padding: 0;
    }

    .image-placeholder {
        height: 240px;
        border-radius: 0;
    }

    .image-placeholder img {
        width: 100%;
        object-position: center bottom;
    }

    .corner {
        width: 40px;
        height: 40px;
    }

    .floating-badge {
        padding: 6px 10px;
        font-size: 11px;
        gap: 6px;
    }

    .badge-icon {
        width: 18px;
        height: 18px;
    }

    .floating-badge.top {
        top: 20px;
        left: 15px;
    }

    .floating-badge.bottom {
        bottom: 50px;
        right: 15px;
    }

    .trust-badges {
        gap: 8px;
        margin-bottom: 16px;
    }

    .badge {
        padding: 6px 12px;
        font-size: 12px;
    }

    .certification-badge {
        padding: 6px 12px;
        font-size: 12px;
        margin-bottom: 16px;
    }

    .cert-icon {
        width: 16px;
        height: 16px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero {
        padding: 20px 0 40px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-title .highlight {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .image-placeholder {
        height: 200px;
        border-radius: 0;
    }

    .image-placeholder img {
        width: 100%;
    }

    .image-wrapper {
        padding: 0;
    }

    .corner {
        display: none;
    }

    .floating-badge {
        display: none;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .trust-item strong {
        font-size: 18px;
    }
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
}

/* Special Offer Banner */
.special-offer-banner {
    background: #ffffff;
    border: 3px solid #10b981;
    border-radius: 16px;
    padding: 0;
    margin: 20px 0 30px 0;
    position: relative;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
    overflow: hidden;
}

.offer-urgency-strip {
    background: linear-gradient(90deg, #fef3c7 0%, #fed7aa 100%);
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f59e0b;
    font-size: 13px;
    color: #92400e;
}

.urgency-text strong {
    color: #dc2626;
    font-weight: 800;
}

.live-counter {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

#viewerCount {
    color: #dc2626;
    font-weight: 800;
    animation: liveUpdate 3s ease-in-out infinite;
}

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



.offer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.offer-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.offer-banner-section .badge-text {
    background: #dc2626;
    color: white;
    padding: 6px 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

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

.badge-timer {
    background: #1f2937;
    color: #fbbf24;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge-timer::before {
    content: '⏰';
    font-size: 12px;
}

.offer-main {
    text-align: center;
}

.offer-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.offer-title {
    font-size: 22px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 8px 0;
    text-transform: none;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.social-proof {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 10px;
    margin: 15px 0;
}

.recent-booking {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #374151;
}

.booking-icon {
    font-size: 14px;
}

.booking-text strong {
    color: #059669;
    font-weight: 700;
}

.trust-indicators-mini {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}

.price-big {
    font-size: 72px;
    font-weight: 900;
    color: white;
    display: inline-block;
    padding: 15px 25px;
    margin: 10px 0;
    position: relative;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    animation: pulse-price 2s ease-in-out infinite;
}

@keyframes pulse-price {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
    }
}

.price-big::after {
    content: '*';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 16px;
    color: white;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.old-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 600;
}

.save-percentage {
    background: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    display: inline-block;
}

@keyframes priceGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}

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

.old-price {
    font-size: 24px;
    color: #6b7280;
    text-decoration: line-through;
    opacity: 0.7;
}

.save-badge {
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.offer-description {
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
    font-weight: 500;
}

.offer-description strong {
    color: #1f2937;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.offer-description br {
    display: block;
    margin: 4px 0;
}

.value-highlight {
    display: block;
    margin-top: 10px;
    padding: 8px;
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
    border-radius: 4px;
    font-weight: 700;
    color: #92400e;
}

.offer-timer {
    display: flex;
    gap: 16px;
}

.timer-item {
    background: white;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    min-width: 70px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.timer-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #dc2626;
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
    font-weight: 600;
}

.single-price-card {
    max-width: 600px;
    margin: 30px auto;
}

.single-price-card .problem-card {
    margin-top: 0;
}

.show-prices-button {
    width: 100%;
    max-width: 500px;
    margin: 20px auto 30px auto;
    padding: 18px 30px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(107, 114, 128, 0.2);
    position: relative;
    overflow: hidden;
}


.show-prices-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.show-prices-button:hover::before {
    left: 100%;
}

.show-prices-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(107, 114, 128, 0.3);
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
}

.show-prices-button.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.button-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.show-prices-button.active .button-arrow {
    transform: rotate(180deg);
}

.problems-grid {
    transition: all 0.6s ease;
}

.problems-grid.show {
    animation: slideDown 0.6s ease;
}

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

@media (max-width: 768px) {
    .special-offer-banner {
        padding: 15px;
        margin: 15px 0 25px 0;
        border-radius: 16px;
    }
    
    .offer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .offer-timer {
        justify-content: center;
    }
    
    .offer-title {
        font-size: 18px;
    }
    
    .price-big {
        font-size: 56px;
    }
    
    .show-prices-button {
        font-size: 16px;
        padding: 16px 24px;
    }
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
}

.text-danger {
    color: #ef4444;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    font-weight: 500;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-color: #10b981;
}

.problem-card.urgent {
    border-color: #fca5a5;
    background: linear-gradient(to bottom, #ffffff 0%, #fef2f2 100%);
}

.problem-card.urgent:hover {
    border-color: #ef4444;
}

.problem-card.other {
    background: linear-gradient(to bottom, #ffffff 0%, #f0fdf4 100%);
}

.problem-card.special-price {
    background: linear-gradient(to bottom, #ffffff 0%, #fef3c7 100%);
    border-color: #fbbf24;
    position: relative;
    overflow: visible;
    margin-top: 15px;
}

.problem-card.special-price::before {
    content: 'TOP ANGEBOT';
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.urgency-badge.best-price {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    animation: pulse-green 2s infinite;
}

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

.problem-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pest-icon {
    font-size: 36px;
    line-height: 1;
}

.pest-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    flex: 1;
}

.urgency-badge {
    background: #fbbf24;
    color: #78350f;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.urgency-badge.critical {
    background: #ef4444;
    color: white;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.problem-symptoms {
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.problem-symptoms h4 {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 12px;
}

.problem-symptoms ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-symptoms li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #374151;
}

.problem-symptoms li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #ef4444;
    font-weight: bold;
}

.solution-promise {
    border-top: 2px solid #f3f4f6;
    padding-top: 20px;
    margin-bottom: 20px;
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.solution-header .check-icon {
    width: 20px;
    height: 20px;
}

.solution-header span {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.time-badge, .method-badge {
    background: #ecfdf5;
    color: #047857;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.time-badge svg, .method-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.method-badge.eco {
    background: #ecfdf5;
    color: #059669;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
}

.price-tag .from {
    font-size: 14px;
    color: #6b7280;
}

.price-tag .price {
    font-size: 32px;
    font-weight: 800;
    color: #10b981;
}

.price-tag .vat {
    font-size: 12px;
    color: #6b7280;
}

.problem-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.problem-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.problem-cta.urgent {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    animation: shake 2s infinite;
}

.problem-cta.urgent:hover {
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.problem-cta.free {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.problem-cta.free:hover {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.problem-cta svg {
    width: 20px;
    height: 20px;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-2px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(2px);
    }
}

.emergency-banner {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.emergency-icon-pulse {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-icon-pulse .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    animation: pulse-expand 2s infinite;
}

@keyframes pulse-expand {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.emergency-icon-pulse svg {
    width: 30px;
    height: 30px;
    color: white;
    position: relative;
    z-index: 1;
}

.emergency-text {
    flex: 1;
}

.emergency-text h3 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.emergency-text p {
    color: #9ca3af;
    font-size: 16px;
}

.emergency-button {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 16px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.emergency-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.4);
}

.emergency-button span:first-child {
    font-size: 24px;
    letter-spacing: 1px;
}

.button-subtext {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 4px;
}

/* Emergency Team Section */
.emergency-team-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-photo-container {
    position: relative;
    width: 80px;
    height: 80px;
}

.team-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #10b981;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.german-flag-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 2px solid white;
}

/* Price Disclaimer */
.price-disclaimer {
    margin: 20px 0 40px 0;
    background: transparent;
    border: none;
    overflow: hidden;
}

.disclaimer-toggle {
    width: auto;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 400;
    color: #9ca3af;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.disclaimer-toggle:hover {
    opacity: 0.8;
    background: #fafafa;
}

.disclaimer-toggle .info-icon {
    width: 14px;
    height: 14px;
    color: #d1d5db;
    opacity: 0.7;
}

.disclaimer-toggle .chevron-icon {
    width: 12px;
    height: 12px;
    margin-left: 4px;
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.disclaimer-toggle.active .chevron-icon {
    transform: rotate(180deg);
}

.disclaimer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #f9fafb;
    border-radius: 8px;
    margin-top: 10px;
}

.disclaimer-content.show {
    max-height: 600px;
    border: 1px solid #e5e7eb;
}

.disclaimer-text {
    padding: 15px;
    font-size: 11px;
    color: #6b7280;
    line-height: 1.5;
}

.disclaimer-text h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #6b7280;
}

.disclaimer-text ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.disclaimer-text li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 4px;
    font-size: 10px;
    color: #9ca3af;
}

.disclaimer-text li:before {
    content: "•";
    position: absolute;
    left: 6px;
    color: #d1d5db;
    font-weight: normal;
    font-size: 8px;
}

.disclaimer-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: white;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    border: 1px solid #fde68a;
}

.disclaimer-note svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.disclaimer-note span {
    font-size: 12px;
    font-weight: 600;
    color: #047857;
}

@media (max-width: 768px) {
    .problems-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-card {
        padding: 20px;
    }
    
    .emergency-banner {
        display: none; /* Hide emergency banner on mobile */
    }
    
    /* Emergency banner is now hidden on mobile, no additional styles needed */
    
    .disclaimer-content.show {
        max-height: 800px;
    }
}

/* Extra small mobile screens */
/* Process Section */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
    position: relative;
    padding: 0 10px;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 0 10px;
}

.step-number {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid #10b981;
    border-radius: 50%;
    margin: 0 auto 15px;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.step-number span {
    font-size: 20px;
    font-weight: 800;
    color: #10b981;
}

.step-line {
    display: none;
}

.step-content {
    background: white;
    border-radius: 16px;
    padding: 20px 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
}

.step-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 12px;
}

.step-icon svg {
    width: 22px;
    height: 22px;
    color: #10b981;
}

.step-icon.success {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.step-icon.success svg {
    color: #f59e0b;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 12px;
}

.step-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f3f4f6;
    border-radius: 20px;
    margin-top: auto;
}

.step-time svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

.step-time span {
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
}

.process-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.benefit-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.1);
}

.benefit-card svg {
    width: 40px;
    height: 40px;
    color: #10b981;
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14px;
    color: #6b7280;
}

.process-cta {
    text-align: center;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
}

.cta-text {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
}

.process-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.process-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.process-cta-button svg {
    width: 22px;
    height: 22px;
}

.process-cta-button span {
    font-size: 16px;
}

.process-cta-button .phone {
    font-size: 20px;
    font-weight: 800;
    padding-left: 12px;
    border-left: 2px solid rgba(255,255,255,0.3);
    margin-left: 8px;
}

@media (max-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 5px;
    }
    
    .step-content {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 50px 0;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 40px 0;
        padding: 0;
    }
    
    .process-step {
        padding: 0;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
        position: absolute;
        top: -22px;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        z-index: 10;
    }
    
    .step-number span {
        font-size: 18px;
    }
    
    .step-content {
        padding-top: 35px;
        min-height: auto;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
    }
    
    .step-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .step-content h3 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .step-time {
        padding: 6px 10px;
    }
    
    .step-time span {
        font-size: 11px;
    }
    
    .process-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 30px 0;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .benefit-card svg {
        width: 35px;
        height: 35px;
    }
    
    .benefit-card h4 {
        font-size: 16px;
    }
    
    .benefit-card p {
        font-size: 13px;
    }
    
    .process-cta {
        padding: 25px 15px;
        margin-top: 35px;
    }
    
    .cta-text {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .process-cta-button {
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    
    .process-cta-button svg {
        width: 20px;
        height: 20px;
    }
    
    .process-cta-button span {
        font-size: 14px;
    }
    
    .process-cta-button .phone {
        border-left: none;
        border-top: 2px solid rgba(255,255,255,0.3);
        padding-left: 0;
        padding-top: 8px;
        margin-left: 0;
        margin-top: 8px;
        font-size: 18px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.faq-item.active {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(16, 185, 129, 0.05);
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 20px;
}

.faq-cta p {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.faq-call-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.faq-call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.faq-call-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Mobile Styles for FAQ CTA */
@media (max-width: 768px) {
    .faq-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .faq-cta p {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .faq-call-button {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 14px 24px;
        font-size: 15px;
        width: auto;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .faq-call-button span {
        text-align: center;
        line-height: 1.3;
    }
    
    .faq-call-button svg {
        width: 24px;
        height: 24px;
    }
}

/* Contact Form Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 40px;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.contact-method svg {
    width: 24px;
    height: 24px;
    color: #10b981;
}

.contact-method h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.contact-method p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.form-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.form-submit-btn svg {
    width: 20px;
    height: 20px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #6b7280;
}

/* New form styles for jq_form */
.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

textarea.form-control {
    resize: vertical;
    font-family: inherit;
}

/* Bootstrap-like margin utilities */
.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mb-0 {
    margin-bottom: 0;
}

/* Forms button styles */
.forms__button {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.forms__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Bootstrap-like button utilities */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.text-uppercase {
    text-transform: uppercase;
}

.fw-bold {
    font-weight: 700;
}

.px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Success message */
#jq_success {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    color: #155724;
    font-weight: 500;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-question span {
        font-size: 15px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Final Conversion Section - Compact */
.final-conversion-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.compact-conversion-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid #10b981;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.compact-header {
    margin-bottom: 25px;
}

.danger-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #dc2626;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid #fecaca;
}

.danger-badge svg {
    width: 16px;
    height: 16px;
}

.compact-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
}

.compact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
}

.compact-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #10b981;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.live-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #fef3c7;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 14px;
    color: #78350f;
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.final-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.final-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.final-cta-button svg {
    width: 24px;
    height: 24px;
}

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

.phone-number {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.button-subtitle {
    font-size: 12px;
    opacity: 0.9;
}

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

@media (max-width: 768px) {
    .final-conversion-section {
        padding: 40px 0;
    }
    
    .compact-conversion-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .compact-header h2 {
        font-size: 20px;
    }
    
    .compact-stats {
        padding: 15px;
        gap: 10px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .phone-number {
        font-size: 18px;
    }
    
    .final-cta-button {
        padding: 16px;
    }
}

@media (max-width: 400px) {
    .emergency-text h3 {
        font-size: 14px;
    }
    
    .emergency-button {
        padding: 8px 12px;
    }
    
    .emergency-button span:first-child {
        font-size: 13px;
    }
    
    .button-subtext {
        display: none; /* Hide "Jetzt anrufen" on very small screens */
    }
}

/* Find Master Section (Uber-like) */
.find-master-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.location-search-container {
    max-width: 800px;
    margin: 40px auto;
}

.location-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 60px;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.location-input-wrapper:focus-within {
    border-color: #10b981;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
}

.location-icon {
    padding: 0 20px;
    color: #10b981;
}

.location-icon svg {
    width: 24px;
    height: 24px;
}

.location-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #1f2937;
    padding: 15px 0;
}

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

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-btn:hover {
    transform: scale(1.05);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

.location-suggestions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.suggestion-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-btn:hover {
    border-color: #10b981;
    color: #10b981;
    background: #f0fdf4;
}

.suggestion-btn svg {
    width: 16px;
    height: 16px;
}

.suggestion-btn.current-location {
    border-color: #10b981;
    background: #f0fdf4;
    color: #10b981;
}

/* Map Container */
.masters-map-container {
    max-width: 1200px;
    margin: 40px auto;
}

.map-placeholder {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 20px;
    height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Google Maps Professional Style */
.google-style-map {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('../../assets/img/map1.png') center/cover no-repeat, #f2f2f2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.map-grid {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}


.user-location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20;
}

.location-pin {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    position: relative;
    animation: locationBounce 3s ease-in-out infinite;
}

.location-pin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(66, 133, 244, 0.15);
    border-radius: 50%;
    animation: pinPulse 3s ease-in-out infinite;
}

.location-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #4285f4;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.location-pin svg {
    display: none;
}

.location-label {
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #202124;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    white-space: nowrap;
    border: 1px solid #dadce0;
    position: relative;
}

.location-label::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ffffff;
}

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

@keyframes pinPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Master Pins on Map */
.masters-on-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.masters-on-map::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 1px;
    background: radial-gradient(circle at center, 
        rgba(66, 133, 244, 0.2) 0%, 
        transparent 70%);
    box-shadow: 
        0 0 100px 50px rgba(66, 133, 244, 0.1),
        0 0 200px 100px rgba(66, 133, 244, 0.05);
    z-index: 1;
}

.master-pin {
    position: absolute;
    z-index: 15;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.master-pin:hover {
    transform: scale(1.1);
    z-index: 20;
}

.master-pin:hover .master-pin-info {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -100%) translateY(-10px);
}

.master-pin-marker {
    position: relative;
    width: 40px;
    height: 40px;
    animation: masterPinDrop 0.5s ease-out;
}

.pin-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.pin-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.pin-status.available {
    background: #10b981;
    animation: statusPulse 2s ease-in-out infinite;
}

.pin-status.busy {
    background: #fbbf24;
    animation: busyPulse 3s ease-in-out infinite;
}

.master-pin-info {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    min-width: 180px;
}

.master-pin-info::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
}

.master-pin-info strong {
    display: block;
    font-size: 14px;
    color: #1f2937;
    margin-bottom: 4px;
}

.pin-distance {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

.pin-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #f59e0b;
    font-weight: 600;
}

@keyframes masterPinDrop {
    0% {
        transform: translateY(-30px) scale(0);
        opacity: 0;
    }
    50% {
        transform: translateY(0) scale(1.1);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes statusPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

@keyframes busyPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(251, 191, 36, 0);
        transform: scale(1.1);
    }
}

/* Pin labels always visible */
.pin-label {
    position: absolute;
    left: 50%;
    top: calc(100% + 5px);
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    z-index: 5;
}

.pin-distance-label,
.pin-time-label {
    background: rgba(255, 255, 255, 0.95);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.pin-distance-label {
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.pin-time-label {
    color: #1f2937;
    border: 1px solid rgba(31, 41, 55, 0.2);
}

.searching-text {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.spinner {
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Master Cards */
.nearest-master-preview {
    margin-top: 40px;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ef4444;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.preview-title {
    font-size: 18px;
    color: #6b7280;
}

.master-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.master-card.featured {
    border: 2px solid #10b981;
}

.master-card:hover {
    transform: translateY(-5px);
}

/* Neutral Master Card Styles */
.master-card.neutral {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    text-align: center;
    max-width: 380px;
    margin: 0 auto;
    padding: 15px;
}

.master-card.neutral .master-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.neutral-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.neutral-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.neutral-content h3 {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 5px;
    font-weight: 600;
}

.neutral-content p {
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 0;
    line-height: 1.4;
}

.neutral-features {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.neutral-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: left;
    padding: 2px 0;
}

.feature-icon {
    width: 16px;
    height: 16px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 10px;
    height: 10px;
    color: #10b981;
}

.neutral-feature span {
    color: #4b5563;
    font-size: 11px;
    line-height: 1.3;
}

/* Call Master Card Styles */
.call-master-card {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    padding: 24px;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
    transition: all 0.3s ease;
}

.call-master-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.35);
}

.call-master-content {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.call-master-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.call-master-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.call-master-text h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.call-master-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.call-master-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    color: #059669;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.call-master-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #f9fafb;
}

.call-master-btn .phone-number {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.call-master-btn .call-text {
    font-size: 14px;
    color: #6b7280;
}

.master-card.neutral .master-cta {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.master-card.neutral .master-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.master-card.neutral .master-cta svg {
    width: 16px;
    height: 16px;
}

.master-status {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.master-status.available {
    background: #f0fdf4;
    color: #10b981;
}

.master-status.busy {
    background: #fef3c7;
    color: #f59e0b;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s ease-in-out infinite;
}

.status-dot.busy {
    background: #f59e0b;
    animation: busyBlink 1.5s ease-in-out infinite;
}

@keyframes busyBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.master-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.master-avatar {
    position: relative;
}

.master-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
}

.master-photo {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rating-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: white;
    padding: 4px 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rating-badge svg {
    width: 14px;
    height: 14px;
}

.rating-badge span {
    font-size: 12px;
    font-weight: 700;
    color: #1f2937;
}

.master-details {
    flex: 1;
}

.master-name {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 5px;
}

.master-specialty {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
}

.master-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
}

.stat svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

.master-action {
    margin-top: 20px;
}

.book-master-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.book-master-btn:hover {
    transform: scale(1.02);
}

.book-master-btn svg {
    width: 20px;
    height: 20px;
}

/* Masters List */
.masters-list {
    margin-top: 40px;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.list-header h3 {
    font-size: 24px;
    color: #1f2937;
}

.sort-options {
    display: flex;
    gap: 10px;
}

.sort-btn {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-btn.active {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.masters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.master-cta {
    width: 100%;
    margin-top: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.master-cta:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.master-cta svg {
    width: 20px;
    height: 20px;
}

/* Trust Notice */
.trust-notice {
    background: #f0fdf4;
    border: 1px solid #10b981;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.trust-notice svg {
    width: 24px;
    height: 24px;
    color: #10b981;
    flex-shrink: 0;
}

.trust-notice p {
    margin: 0;
    color: #374151;
    font-size: 14px;
}

.delay-notice {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-top: 15px;
    overflow: hidden;
}

.delay-notice-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    color: #6c757d;
}

.delay-notice-toggle:hover {
    background: #f1f3f4;
}

.delay-notice-toggle .info-icon {
    width: 16px;
    height: 16px;
    color: #6c757d;
    flex-shrink: 0;
}

.delay-notice-toggle span {
    flex: 1;
    text-align: left;
    font-weight: 500;
}

.delay-notice-toggle .chevron-icon {
    width: 16px;
    height: 16px;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.delay-notice-toggle.active .chevron-icon {
    transform: rotate(180deg);
}

.delay-notice-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #ffffff;
}

.delay-notice-content.show {
    max-height: 200px;
    padding: 15px 16px;
    border-top: 1px solid #e9ecef;
}

.delay-notice-content p {
    margin: 0;
    color: #6c757d;
    font-size: 12px;
    line-height: 1.5;
}

.delay-notice-content strong {
    color: #495057;
}

/* Responsive */
@media (max-width: 768px) {
    .location-input-wrapper {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
    }
    
    .location-input {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    
    .search-btn {
        width: 100%;
        margin-top: 10px;
    }
    
    .location-suggestions {
        flex-direction: column;
    }
    
    .suggestion-btn {
        width: 100%;
        justify-content: center;
    }
    
    .master-info {
        flex-direction: column;
        text-align: center;
    }
    
    .master-avatar {
        margin: 0 auto;
    }
    
    .master-stats {
        justify-content: center;
    }
    
    .list-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .sort-options {
        width: 100%;
        justify-content: center;
    }
    
    .trust-notice {
        padding: 15px;
        margin-top: 30px;
    }
    
    .delay-notice {
        margin-top: 12px;
    }
    
    .delay-notice-toggle {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .delay-notice-content.show {
        padding: 12px;
    }
    
    .delay-notice-content p {
        font-size: 11px;
    }
    
    .masters-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .master-card {
        padding: 20px;
    }
}

/* Why Choose Us Section Styles */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2310b981' stroke-width='0.2' opacity='0.1'%3E%3Cpath d='M50 30L65 40L65 60L50 70L35 60L35 40Z'/%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.05;
    animation: floatPattern 30s linear infinite;
}

@keyframes floatPattern {
    0% { transform: translateX(0); }
    100% { transform: translateX(50px); }
}

/* Trust Counter */
.trust-counter {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.trust-counter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.counter-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.counter-icon svg {
    width: 35px;
    height: 35px;
}

.counter-text {
    color: white;
    text-align: center;
}

.counter-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    animation: countUp 0.5s ease-out;
}

.counter-suffix {
    display: block;
    font-size: 16px;
    margin-top: 5px;
    opacity: 0.9;
}

.counter-live {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: liveGlow 2s ease-in-out infinite;
}

@keyframes liveGlow {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(255,255,255,0.8); }
    50% { opacity: 0.5; box-shadow: 0 0 5px rgba(255,255,255,0.4); }
}

@keyframes countUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Reviews Section */
.reviews-section {
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
}

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

.google-logo {
    width: 100px;
    height: 40px;
    margin: 0 auto 20px;
}

.reviews-header h3 {
    font-size: 28px;
    color: #1f2937;
    margin-bottom: 20px;
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.rating-number {
    font-size: 36px;
    font-weight: 700;
    color: #10b981;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 24px;
    height: 24px;
}

.review-count {
    color: #6b7280;
    font-size: 14px;
}

/* Reviews Slider */
.reviews-slider-container {
    position: relative;
    margin: 40px 0;
    padding: 0 60px;
}

.reviews-slider {
    overflow: hidden;
    border-radius: 20px;
    min-height: 250px;
    position: relative;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    align-items: stretch;
}

.review-slide {
    min-width: 100%;
    padding: 0 15px;
    display: flex;
    box-sizing: border-box;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-btn:hover {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    width: 30px;
    border-radius: 5px;
    background: #10b981;
}

.show-more-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px auto 0;
    padding: 12px 30px;
    background: white;
    border: 2px solid #10b981;
    border-radius: 30px;
    color: #10b981;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-reviews:hover {
    background: #10b981;
    color: white;
}

.show-more-reviews svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.show-more-reviews.expanded svg {
    transform: rotate(180deg);
}

/* All Reviews Container */
.all-reviews-container {
    margin-top: 40px;
    animation: slideDown 0.5s ease;
}

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

.all-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.review-card .review-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.verified-icon {
    width: 24px !important;
    height: 24px !important;
    position: absolute;
    top: 0;
    right: 0;
    flex-shrink: 0;
}

.review-card .reviewer-avatar {
    width: 50px;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-stars {
    display: flex;
    gap: 1px;
}

.review-stars svg {
    width: 16px;
    height: 16px;
}

.review-date {
    color: #6b7280;
    font-size: 12px;
}

.google-verified {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    right: 0;
}

.review-text {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
    flex-grow: 1;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-size: 13px;
    font-weight: 600;
}

.review-verified svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    flex-shrink: 0;
}

/* Trust Badges Grid */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.trust-badge-item:hover {
    transform: translateY(-5px);
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 22px;
    height: 22px;
}

.badge-content h4 {
    font-size: 15px;
    color: #1f2937;
    margin-bottom: 3px;
    font-weight: 600;
}

.badge-content p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

/* Section CTA */
.section-cta {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 30px;
    padding: 50px;
    margin-top: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    color: #d1d5db;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.urgency-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #10b981;
    font-size: 14px;
}

.urgency-text svg {
    width: 20px;
    height: 20px;
}

/* Desktop specific fixes */
@media (min-width: 769px) {
    .review-card .reviewer-avatar {
        width: 50px !important;
        height: 50px !important;
        max-width: 50px !important;
        max-height: 50px !important;
    }
    
    .reviews-slider {
        max-width: 100%;
        overflow: hidden;
    }
    
    .review-card {
        max-width: 100%;
    }
    
    .review-card svg {
        max-width: 24px !important;
        max-height: 24px !important;
    }
    
    .review-card .verified-icon {
        width: 24px !important;
        height: 24px !important;
        max-width: 24px !important;
        max-height: 24px !important;
    }
    
    .review-stars svg {
        width: 16px !important;
        height: 16px !important;
    }
}

/* Responsive Design for Why Choose Us Section */
@media (max-width: 768px) {
    .trust-counter {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }
    
    .reviews-slider-container {
        padding: 0 40px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .review-slide {
        padding: 0 10px;
    }
    
    .show-more-reviews {
        width: 100%;
    }
    
    .all-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Team Section */
.team-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.team-main-content {
    margin-top: 60px;
}

.team-hero-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.08);
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border: 1px solid #f1f5f9;
}

.team-image-wrapper {
    position: relative;
    height: 500px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: white;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 40px 30px 30px;
}

.quality-badges {
    display: flex;
    gap: 12px;
}

.quality-badge {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(15px);
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.quality-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.4);
}

.badge-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: 700;
}

.badge-text {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 0.5px;
}

.team-card-content {
    padding: 60px 50px;
}

.team-intro h3 {
    font-size: 32px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
}

.team-intro p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.achievement-item {
    text-align: center;
    padding: 25px 15px;
    background: #f8fafc;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.achievement-number {
    font-size: 28px;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 8px;
}

.achievement-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

.team-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .team-section {
        padding: 80px 0;
    }
    
    .team-hero-card {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }
    
    .team-image-wrapper {
        height: 350px;
    }
    
    .team-card-content {
        padding: 40px 30px;
    }
    
    .team-intro h3 {
        font-size: 26px;
    }
    
    .team-intro p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .quality-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .quality-badge {
        padding: 10px 14px;
    }
    
    .badge-icon {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
    
    .badge-text {
        font-size: 12px;
    }
}

/* Additional mobile optimizations for feature icons */
@media (max-width: 480px) {
    .feature-item {
        gap: 14px;
        padding: 10px 0;
    }
    
    .feature-icon-badge {
        width: 40px !important;
        height: 40px !important;
        border-radius: 9px !important;
    }
    
    .feature-icon-badge .feature-icon {
        width: 18px !important;
        height: 18px !important;
        stroke-width: 2.5;
    }
    
    .feature-title {
        font-size: 14px !important;
        font-weight: 600;
    }
    
    .feature-subtitle {
        font-size: 12px !important;
    }
    
    .hero-features {
        gap: 14px;
        margin-bottom: 20px;
    }
    
    .feature-item:hover {
        padding-left: 4px;
    }

    /* Hero Features List - Small Mobile */
    .hero-features-list {
        gap: 8px;
        margin-bottom: 20px;
    }

    .feature-list-item {
        gap: 8px;
        padding: 5px 0;
    }

    .feature-icon-check {
        width: 16px;
        height: 16px;
        padding: 2px;
    }

    .feature-list-item span {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .feature-item {
        gap: 12px;
    }
    
    .feature-icon-badge {
        width: 36px !important;
        height: 36px !important;
        border-radius: 8px !important;
    }
    
    .feature-icon-badge .feature-icon {
        width: 16px !important;
        height: 16px !important;
        stroke-width: 2.8;
    }
    
    .feature-title {
        font-size: 13px !important;
    }
    
    .feature-subtitle {
        font-size: 11px !important;
    }

    /* Hero Features List - Extra Small Mobile */
    .hero-features-list {
        gap: 6px;
        margin-bottom: 18px;
    }

    .feature-list-item {
        gap: 8px;
        padding: 4px 0;
    }

    .feature-icon-check {
        width: 14px;
        height: 14px;
        padding: 1px;
    }

    .feature-list-item span {
        font-size: 13px;
    }

    /* Call Master Card Mobile */
    .call-master-card {
        padding: 20px;
        margin-top: 16px;
        border-radius: 14px;
    }

    .call-master-content {
        gap: 12px;
        margin-bottom: 16px;
    }

    .call-master-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .call-master-icon svg {
        width: 20px;
        height: 20px;
    }

    .call-master-text h3 {
        font-size: 16px;
    }

    .call-master-text p {
        font-size: 13px;
    }

    .call-master-btn {
        padding: 14px 20px;
        border-radius: 10px;
    }

    .call-master-btn .phone-number {
        font-size: 18px;
    }

    .call-master-btn .call-text {
        font-size: 13px;
    }
}

/* Trust & Team Section Styles */
.trust-team-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: none;
    position: relative;
}

.trust-team-section {
    padding: 80px 0;
    background: #ffffff;
}

.trust-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.team-image-container {
    position: relative;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
}

.team-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
    object-fit: contain;
    object-position: center bottom;
    filter: none;
    border: none;
    position: relative;
    z-index: 1;
}

.team-image:hover {
    transform: scale(1.02);
    box-shadow: none;
}

/* Old trust badges - hidden */
.trust-badges {
    display: none;
}

/* New overlay badges */
.trust-badges-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.85) 10%, 
        rgba(248,250,252,0.95) 20%, 
        #f8fafc 30%);
    backdrop-filter: blur(15px);
    padding: 25px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    flex-wrap: wrap;
    border-top: 3px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.trust-badge-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.3s ease;
}

.trust-badge-inline:hover {
    transform: translateY(-2px);
}

.badge-check-icon {
    width: 24px;
    height: 24px;
    color: #10b981;
    flex-shrink: 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

.trust-badge .badge-icon {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-content {
    padding-left: 20px;
}

.trust-badge-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.trust-title {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin: 16px 0;
    line-height: 1.2;
}

.trust-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

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

.trust-feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(55, 65, 81, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.trust-feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.trust-feature-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

.trust-cta {
    text-align: center;
}

.trust-cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.trust-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.cta-text {
    font-size: 18px;
    margin-bottom: 4px;
}

.cta-subtext {
    font-size: 24px;
    font-weight: 800;
}

.trust-guarantee {
    font-size: 14px;
    color: #059669;
    font-weight: 600;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trust-team-section {
        padding: 60px 0;
    }

    .trust-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .team-image-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .team-image {
        width: 100%;
        max-width: 500px;
        height: auto;
        border-radius: 0;
        margin: 0 auto;
    }

    .trust-badges-overlay {
        padding: 15px;
        gap: 20px;
        flex-direction: row;
        justify-content: space-around;
    }

    .trust-badge-inline {
        font-size: 14px;
        gap: 8px;
    }

    .trust-badge-inline span {
        display: none;
    }

    .badge-check-icon {
        width: 28px;
        height: 28px;
    }

    .trust-content {
        padding-left: 0;
    }

    .trust-title {
        font-size: 28px;
    }

    .trust-subtitle {
        font-size: 16px;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .stat-number {
        font-size: 24px;
    }

    .trust-features {
        gap: 20px;
    }

    .trust-feature {
        text-align: left;
    }

    .trust-cta-button {
        padding: 16px 32px;
    }

    .cta-text {
        font-size: 16px;
    }

    .cta-subtext {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .trust-team-section {
        padding: 40px 0;
    }

    .trust-team-content {
        gap: 30px;
    }

    .team-image-container {
        width: 100%;
        padding: 0;
    }

    .team-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 0;
        margin: 0 auto;
    }

    .trust-badges-overlay {
        padding: 12px 10px;
        gap: 15px;
        background: linear-gradient(to bottom, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.95) 30%, rgba(255,255,255,1) 50%);
    }

    .trust-badge-inline {
        flex-direction: column;
        gap: 5px;
    }

    .trust-badge-inline span {
        display: block;
        font-size: 11px;
        text-align: center;
    }

    .badge-check-icon {
        width: 24px;
        height: 24px;
    }

    .trust-badge {
        padding: 6px 10px;
        font-size: 11px;
    }

    .trust-title {
        font-size: 24px;
    }

    .trust-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .trust-features {
        gap: 16px;
    }

    .trust-feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .trust-feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .trust-feature-content h4 {
        font-size: 16px;
    }

    .trust-feature-content p {
        font-size: 13px;
    }

    .trust-stats {
        padding: 16px;
        margin-bottom: 30px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 12px;
    }

    .trust-cta-button {
        padding: 14px 24px;
    }

    .cta-text {
        font-size: 15px;
    }

    .cta-subtext {
        font-size: 18px;
    }

    .trust-guarantee {
        font-size: 12px;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}