/* === RESET & BASE === */
html {
    scroll-behavior: smooth;
}

#top {
    position: absolute;
    top: 0;
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* === HEADER === */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-image {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.header-title {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1.1;
    margin: 0;
}

.company-tagline {
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Mobile responsiveness for header */
@media (max-width: 768px) {
    .header {
        padding: 6px 0;
    }
    
    .header-container {
        padding: 0 15px;
        margin: 0;
        max-width: none;
        justify-content: space-between;
        width: 100%;
    }
    
    .header-logo {
        gap: 10px;
        flex: none;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    .company-tagline {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 5px 0;
    }
    
    .header-container {
        padding: 0 10px;
        margin: 0;
        max-width: none;
        justify-content: space-between;
        width: 100%;
    }
    
    .header-logo {
        gap: 8px;
        flex: none;
    }
    
    .logo-image {
        height: 28px;
    }
    
    .company-name {
        font-size: 15px;
    }
    
    .company-tagline {
        font-size: 8px;
    }
}

/* === MAIN WRAPPER === */
.main-wrapper {
    min-height: 100vh;
    width: 100%;
}

/* === HERO SECTION === */
.hero-section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* === HERO IMAGE === */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
}

.hero-image, .hero-image-wrapper picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 0;
    text-align: left;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    min-width: 200px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.image-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

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

.badge-provider {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.025em;
}

.badge-content {
    padding: 1rem;
    text-align: center;
}

.badge-stars {
    color: #f59e0b;
    font-size: 1.125rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(245, 158, 11, 0.3);
}

.badge-rating {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.badge-reviews {
    font-size: 0.6875rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.2;
}

.badge-footer {
    padding: 0.5rem 1rem 0.75rem;
    border-top: 1px solid #e2e8f0;
    background: rgba(16, 185, 129, 0.05);
}

.badge-verified {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #059669;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

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

/* === HERO CONTENT === */
.hero-content-wrapper {
    flex: 1;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 2rem 1.5rem;
}

.hero-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* === BRAND LABEL === */
.brand-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.brand-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #b91c1c);
}

.brand-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* === HERO TITLE === */
.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.title-sub {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    color: #dc2626;
    line-height: 1.2;
}

/* === HERO DESCRIPTION === */
.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* === TRUST POINTS === */
.trust-points {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.trust-icon {
    width: 20px;
    height: 20px;
    background: #dc2626;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}


/* === DESKTOP ONLY ELEMENTS === */
.desktop-only {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-only {
        display: block;
    }
}

/* === HEADER PHONE === */
.header-phone {
    margin-left: auto;
}

.header-phone-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #dc2626;
    padding: 0.75rem 1.5rem;
    border: 2px solid #dc2626;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(220, 38, 38, 0.05);
}

.header-phone-link:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.header-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.header-phone-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.header-phone-number {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.header-phone-label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === CTA BUTTONS WITH PHONE === */
.services-cta-buttons,
.why-choose-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .services-cta-buttons,
    .why-choose-cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

.services-phone-button,
.why-choose-phone-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #dc2626;
    background: white;
    border: 2px solid #dc2626;
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.services-phone-button:hover,
.why-choose-phone-button:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

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

.phone-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.phone-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.phone-number {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.phone-label {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1;
}

/* === CONTACT FORM SECTION === */
.contact-form-section {
    margin-top: 2rem;
    width: 100%;
}

.contact-form-inline {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-form-inline:hover {
    border-color: #dc2626;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.1);
}

.contact-form-inline .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-field {
    margin-bottom: 0;
}

.contact-form-inline .form-field {
    margin-bottom: 1.5rem;
}

.contact-form-inline .form-row .form-field {
    margin-bottom: 0;
}

.contact-form-inline .form-field input,
.contact-form-inline .form-field select,
.contact-form-inline .form-field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #ffffff;
}

.contact-form-inline .form-field input:focus,
.contact-form-inline .form-field select:focus,
.contact-form-inline .form-field textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.contact-form-inline .form-field textarea {
    resize: vertical;
    margin-bottom: 1.5rem;
}

.form-submit-inline {
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.form-submit-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.form-submit-inline .submit-arrow {
    transition: transform 0.3s ease;
}

.form-submit-inline:hover .submit-arrow {
    transform: translateX(4px);
}

.form-disclaimer-inline {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

/* === FLOATING CALL BUTTON === */
.floating-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounceIn 0.6s ease-out;
}

.floating-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
    text-decoration: none;
}

.floating-call-button:active {
    transform: scale(0.95);
}

.call-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    display: block;
}

.call-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
    pointer-events: none;
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Show floating button on mobile only */
@media (max-width: 767px) {
    .floating-call-button {
        display: block;
    }
}

/* === WHY CHOOSE SECTION === */
.why-choose-section {
    padding: 4rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.why-choose-description {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: #dc2626;
}

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

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

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    stroke-width: 2;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.why-choose-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e5e7eb;
}

.why-choose-cta-text {
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.why-choose-cta-button {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.why-choose-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.why-choose-cta-button .cta-arrow {
    transition: transform 0.3s ease;
}

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

/* === WHY CHOOSE RESPONSIVE === */
@media (max-width: 767px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .why-choose-container {
        padding: 0 1.5rem;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-description {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
    }
    
    .benefit-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .benefit-title {
        font-size: 1.125rem;
    }
    
    .why-choose-cta {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-cta-text {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === HOW IT WORKS SECTION === */
.how-it-works-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-it-works-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.how-it-works-description {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #dc2626;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #dc2626;
    line-height: 1;
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    left: 2rem;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.4);
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
    stroke-width: 2;
}

.step-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.step-arrow {
    width: 40px;
    height: 40px;
    color: #dc2626;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.process-step:hover .step-arrow {
    transform: translateX(8px);
}

.step-arrow svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.process-step:last-child .step-arrow {
    display: none;
}

.how-it-works-cta {
    text-align: center;
}

.cta-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.cta-highlight:hover {
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

.cta-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    stroke-width: 2;
}

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

.cta-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.cta-text p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.cta-button {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.cta-button .cta-arrow {
    transition: transform 0.3s ease;
}

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

/* === HOW IT WORKS RESPONSIVE === */
@media (max-width: 767px) {
    .how-it-works-section {
        padding: 3rem 0;
    }
    
    .how-it-works-container {
        padding: 0 1.5rem;
    }
    
    .how-it-works-title {
        font-size: 2rem;
    }
    
    .how-it-works-description {
        font-size: 1rem;
    }
    
    .how-it-works-header {
        margin-bottom: 3rem;
    }
    
    .process-steps {
        margin-bottom: 3rem;
        gap: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .step-number {
        font-size: 2rem;
        top: 0.75rem;
        left: 1.5rem;
    }
    
    .step-icon {
        width: 64px;
        height: 64px;
    }
    
    .step-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }
    
    .process-step:hover .step-arrow {
        transform: rotate(90deg) translateX(0) translateY(8px);
    }
    
    .cta-highlight {
        padding: 2rem 1.5rem;
        gap: 1rem;
    }
    
    .cta-icon {
        width: 56px;
        height: 56px;
    }
    
    .cta-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .cta-text h3 {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .process-step {
        padding: 2rem;
    }
    
    .step-icon {
        width: 72px;
        height: 72px;
    }
    
    .step-icon svg {
        width: 36px;
        height: 36px;
    }
}

@media (min-width: 1024px) {
    .process-steps {
        gap: 3rem;
    }
    
    .process-step {
        padding: 3rem;
    }
}

/* === SERVICES SECTION === */
.services-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-description {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: #dc2626;
}

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

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

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-image picture,
.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    font-size: 0.875rem;
    color: #6b7280;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.services-cta {
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
}

.services-cta-text {
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.services-cta-button {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.services-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.services-cta-button .cta-arrow {
    transition: transform 0.3s ease;
}

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

/* === SERVICES RESPONSIVE === */
@media (max-width: 767px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .services-container {
        padding: 0 1.5rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-description {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .services-cta {
        padding: 2rem 1.5rem;
    }
    
    .services-cta-text {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 600px;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 900px;
    }
}

/* === REVIEWS SECTION === */
.reviews-section {
    padding: 4rem 0;
    background: #ffffff;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.reviews-description {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.avatar-initials {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.review-location {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.review-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-content {
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    font-style: italic;
}

.review-date {
    font-size: 0.875rem;
    color: #9ca3af;
    text-align: right;
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 2.5rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
}

.reviews-cta {
    text-align: center;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: #ffffff;
}

.reviews-cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.reviews-cta-button {
    background: #ffffff;
    color: #dc2626;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.reviews-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

.reviews-cta-button .cta-arrow {
    transition: transform 0.3s ease;
}

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

/* === REVIEWS RESPONSIVE === */
@media (max-width: 767px) {
    .reviews-section {
        padding: 3rem 0;
    }
    
    .reviews-container {
        padding: 0 1.5rem;
    }
    
    .reviews-title {
        font-size: 2rem;
    }
    
    .reviews-description {
        font-size: 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .reviews-cta {
        padding: 2rem 1.5rem;
    }
    
    .reviews-cta-text {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .reviews-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === FAQ SECTION === */
.faq-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
}

.faq-list {
    margin-bottom: 3rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

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

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

.question-text {
    flex: 1;
}

.question-arrow {
    width: 24px;
    height: 24px;
    color: #6b7280;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .question-arrow {
    transform: rotate(180deg);
    color: #dc2626;
}

.question-arrow svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
}

.faq-cta {
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #dc2626;
}

.faq-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.faq-cta p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.faq-cta-button {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.faq-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.faq-cta-button .cta-arrow {
    transition: transform 0.3s ease;
}

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

/* === FAQ RESPONSIVE === */
@media (max-width: 767px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-container {
        padding: 0 1.5rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-description {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .question-arrow {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
    }
    
    .faq-cta h3 {
        font-size: 1.25rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
}

/* === FOOTER === */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1rem;
}

.footer-section h4.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 0.95rem;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dc2626;
}

.footer-links li:not(:has(a)) {
    color: #d1d5db;
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

.footer-note {
    font-size: 0.8rem !important;
    opacity: 0.8;
}

/* === FOOTER RESPONSIVE === */
@media (max-width: 767px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section h3.footer-title {
        font-size: 1.25rem;
    }
    
    .footer-section h4.footer-subtitle {
        font-size: 1rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .footer-links a,
    .footer-links li:not(:has(a)) {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
}

/* === PAGE HEADER === */
.page-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #b91c1c;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #dc2626;
}

/* === IMPRESSUM SECTION === */
.impressum-section {
    padding: 4rem 0;
    background: #ffffff;
    min-height: 80vh;
}

.impressum-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.impressum-header {
    text-align: center;
    margin-bottom: 3rem;
}

.impressum-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.impressum-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.impressum-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    font-weight: 600;
    color: #374151;
}

.info-item span {
    color: #1a1a1a;
}

.services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.services-list li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    border-left: 3px solid #dc2626;
    background: #fef2f2;
    border-radius: 0 8px 8px 0;
    color: #374151;
    position: relative;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    color: #dc2626;
    font-weight: bold;
}

.legal-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

.legal-item strong {
    display: block;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.legal-item p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.disclaimer h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.75rem;
}

.disclaimer h3:first-child {
    margin-top: 0;
}

.disclaimer p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.consumer-info p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.contact-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    border: 1px solid #e5e7eb;
}

.contact-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.contact-cta p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-cta .cta-button {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.contact-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
    text-decoration: none;
}

.contact-cta .cta-arrow {
    transition: transform 0.3s ease;
}

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

/* === IMPRESSUM RESPONSIVE === */
@media (max-width: 767px) {
    .header-container {
        padding: 0 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .impressum-section {
        padding: 3rem 0;
    }
    
    .impressum-container {
        padding: 0 1.5rem;
    }
    
    .impressum-title {
        font-size: 2.5rem;
    }
    
    .impressum-description {
        font-size: 1rem;
    }
    
    .impressum-content {
        gap: 2rem;
    }
    
    .info-section {
        padding: 1.5rem;
    }
    
    .info-title {
        font-size: 1.25rem;
    }
    
    .info-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }
    
    .services-list li {
        padding: 0.5rem 0 0.5rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .legal-item {
        padding: 1rem;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta h3 {
        font-size: 1.25rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .impressum-title {
        font-size: 2.75rem;
    }
    
    .info-item {
        grid-template-columns: 180px 1fr;
    }
}

/* === SUCCESS PAGE === */
.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem 0;
}

.success-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.success-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
    stroke-width: 2;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.success-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-info {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.success-info h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.success-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-info li {
    padding: 0.75rem 0;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1rem;
}

.success-info li:last-child {
    border-bottom: none;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.success-button {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.success-button.primary {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.success-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
    text-decoration: none;
}

.success-button.secondary {
    background: #ffffff;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.success-button.secondary:hover {
    background: #dc2626;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* === SUCCESS RESPONSIVE === */
@media (max-width: 767px) {
    .success-container {
        padding: 0 1.5rem;
    }
    
    .success-content {
        padding: 2rem 1.5rem;
    }
    
    .success-icon {
        width: 64px;
        height: 64px;
    }
    
    .success-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .success-description {
        font-size: 1rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-button {
        width: 100%;
        justify-content: center;
    }
}

/* === MODAL === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #1a1a1a;
}

/* === CONTACT FORM === */
.contact-form {
    padding: 1rem 2rem 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-field {
    margin-bottom: 0;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.submit-arrow {
    transition: transform 0.3s ease;
}

.form-submit:hover .submit-arrow {
    transform: translateX(4px);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.4;
}

/* === TABLET STYLES === */
@media (min-width: 768px) {
    .hero-content-wrapper {
        padding: 3rem 2rem;
    }
    
    .title-main {
        font-size: 2.75rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .trust-points {
        gap: 2rem;
    }
    
    .trust-point {
        font-size: 1rem;
    }
    
    .contact-form-inline {
        padding: 2.5rem;
    }
    
    .form-submit-inline {
        font-size: 1.125rem;
        padding: 1.25rem;
    }
    
    .image-badge {
        bottom: 2rem;
        right: 2rem;
        min-width: 220px;
    }
    
    .badge-content {
        padding: 1.25rem;
    }
    
    .badge-stars {
        font-size: 1.25rem;
        letter-spacing: 3px;
    }
    
    .badge-rating {
        font-size: 1.75rem;
    }
    
    .badge-reviews {
        font-size: 0.75rem;
    }
}

/* === DESKTOP STYLES === */
@media (min-width: 1024px) {
    .hero-section {
        flex-direction: row;
        min-height: 100vh;
        align-items: stretch;
    }
    
    .hero-image-wrapper {
        width: 50%;
        height: 100vh;
        min-height: 100vh;
        display: block;
        overflow: hidden;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 0;
        margin: 0;
    }
    
    .hero-content-wrapper {
        width: 50%;
        background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
        padding: 4rem 3rem;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        text-align: left;
        max-width: none;
        width: 100%;
    }
    
    .brand-label {
        justify-content: flex-start;
    }
    
    .trust-points {
        justify-content: flex-start;
    }
    
    .contact-form-section {
        margin-top: 2.5rem;
    }
    
    .title-main {
        font-size: 3.5rem;
    }
    
    .title-sub {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
        margin-left: 0;
        margin-right: 0;
        max-width: 450px;
    }
}

/* === LARGE DESKTOP === */
@media (min-width: 1200px) {
    .hero-content-wrapper {
        padding: 5rem 4rem;
    }
    
    .title-main {
        font-size: 4.5rem;
    }
    
    .title-sub {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.375rem;
        max-width: 500px;
    }
    
    .contact-form-inline {
        padding: 3rem;
    }
    
    .form-submit-inline {
        font-size: 1.25rem;
        padding: 1.5rem;
    }
}

/* === FORM STATES === */
.form-loading {
    opacity: 0.7;
    pointer-events: none;
}

.form-loading .form-submit {
    background: #9ca3af;
}

.form-success {
    border-color: #10b981;
    background: #f0fdf4;
}

.form-error input,
.form-error select,
.form-error textarea {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

/* === MOBILE FORM ADJUSTMENTS === */
@media (max-width: 767px) {
    .contact-form-inline .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form-inline {
        padding: 1.5rem;
        margin-bottom: 100px; /* Space for floating button */
    }
    
    .image-badge {
        min-width: 180px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .badge-content {
        padding: 0.875rem;
    }
    
    .badge-stars {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .badge-rating {
        font-size: 1.25rem;
    }
    
    .badge-reviews {
        font-size: 0.625rem;
    }
}