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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Mobile optimizations */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    touch-action: manipulation;
    scroll-behavior: smooth;
}

/* iOS Safari specific fixes */
body {
    -webkit-overflow-scrolling: touch;
}

/* Disable text selection on mobile for better UX */
.logo, .nav-link, .cta-button, .price-card {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection for content */
p, .price, .service-name, .contact-item {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* SVG Icons Styling */
svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.nav-link svg,
.cta-nav-button svg,
.cta-button svg {
    margin-right: 0.5rem;
    width: 22px;
    height: 22px;
}

.logo-icon svg {
    width: 32px;
    height: 32px;
    color: #000;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    color: #666;
    flex-shrink: 0;
}

.price-icon svg {
    width: 48px;
    height: 48px;
    color: #000; /* scissors stroke uses currentColor */
}

.price-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Mobile optimizations */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.price-card:hover {
    transform: translateY(-10px) translateZ(0);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Enhanced mobile touch feedback for price cards */
@media (hover: none) and (pointer: coarse) {
    .price-card:active {
        transform: scale(0.98) translateZ(0);
        transition: transform 0.1s ease;
    }
    
    .price-card:hover {
        transform: none;
    }
}

.price-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #333, #555);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.features svg {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    color: #4CAF50;
}

/* Überschriften fetter machen */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
}

.logo h1 {
    font-weight: 900;
    font-size: 1.8rem;
}

.logo .tagline {
    font-weight: 400;
}

/* Navigation fetter */
.nav-link {
    font-weight: 600;
    font-size: 1rem;
    /* Mobile touch optimization */
    position: relative;
    overflow: hidden;
}

.cta-nav-button {
    font-weight: 700;
    /* Enhanced mobile touch feedback */
    transition: all 0.2s ease;
    transform: translateZ(0);
}

/* Enhanced touch feedback for mobile */
@media (hover: none) and (pointer: coarse) {
    .nav-link:active,
    .cta-nav-button:active,
    .cta-button:active {
        transform: scale(0.95);
        opacity: 0.8;
        transition: all 0.1s ease;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Mobile navbar optimizations */
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    height: auto;
    min-height: 70px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Mobile touch optimization */
    transition: transform 0.2s ease;
    will-change: transform;
}

/* Mobile touch feedback for logo */
@media (hover: none) and (pointer: coarse) {
    .logo-icon:active {
        transform: scale(0.95);
    }
}

.logo-icon .material-symbols-outlined {
    font-size: 1.8rem;
    color: #000;
    z-index: 2;
}

.logo-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
    /* fallback color for validators/browsers without text clipping */
    color: #fff;
    background: linear-gradient(45deg, #fff, #ccc);
    background-clip: padding-box; /* standard prop to satisfy linters */
    -webkit-background-clip: text; /* enables gradient text */
    -webkit-text-fill-color: transparent; /* hide fill so gradient shows */
}

.tagline {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 300;
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link .material-symbols-outlined {
    font-size: 1.2rem;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.cta-nav-button {
    background: linear-gradient(45deg, #fff, #f0f0f0);
    color: #000;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Mobile menu toggle animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(20, 20, 20, 0.98));
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-menu.mobile-active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 80%;
        max-width: 300px;
        text-align: center;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-menu.mobile-active .nav-link {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-menu.mobile-active .nav-link:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .nav-menu.mobile-active .nav-link:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .nav-menu.mobile-active .nav-link:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:active {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }
    
    .nav-menu .nav-link svg {
        margin-bottom: 0.5rem;
        width: 28px;
        height: 28px;
    }
    
    /* Mobile CTA in menu */
    .nav-menu::after {
        content: '';
        position: absolute;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        max-width: 300px;
        height: 56px;
        background: linear-gradient(45deg, #fff, #f0f0f0);
        border-radius: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: #000;
        font-size: 1.1rem;
    }
    
    /* Prevent scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    .navbar.menu-open {
        background: rgba(0, 0, 0, 0.98);
    }
}

/* Touch feedback styles */
.touch-active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.price-card.touch-active {
    background: rgba(255, 255, 255, 0.12);
}

.contact-item.touch-active {
    background: rgba(248, 248, 248, 0.9);
}

.cta-button.touch-active {
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('IMG_8393.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: heroFadeIn 1.5s ease-out;
}

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

.quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 4.2rem; /* slightly larger headline */
    font-weight: 900;
    margin-bottom: 1.25rem; /* tighten */
    line-height: 1.08; /* tighter */
}

/* removed older hero-features override (duplicated) */

.hero-subtitle {
    font-size: 1.6rem; /* bigger */
    font-weight: 700;  /* bolder */
    margin-bottom: 0.75rem; /* tighter spacing */
    opacity: 0.95;
}

.hero-features {
    font-size: 1.35rem;
    font-weight: 600;
    opacity: 0.92;
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
    line-height: 1.35;
}

.highlight {
    color: #fff; /* fallback */
    background: linear-gradient(45deg, #fff, #f0f0f0);
    background-clip: padding-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* removed duplicate older hero-subtitle block */

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.25rem;
    font-size: 1.35rem;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.cta-button.primary {
    background: linear-gradient(45deg, #fff, #f0f0f0);
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button.secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
}

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

/* Prices Section */
.prices {
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('IMG_8394.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.prices h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    background: #111;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: #fff;
}

.price-card.featured {
    background: linear-gradient(135deg, #333, #111);
    border-color: #fff;
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-icon {
    width: 80px;
    height: 80px;
    background: #fff; /* white badge */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.price-icon .material-symbols-outlined {
    font-size: 2.5rem;
    color: #000;
}

.price-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff; /* fallback */
    background: linear-gradient(45deg, #fff, #ccc);
    background-clip: padding-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.features .material-symbols-outlined {
    color: #fff;
    font-size: 1.2rem;
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 20px;
    background: linear-gradient(45deg, #fff, #ccc);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
}

/* Price List Button */
.price-list-button {
    text-align: center;
    margin-top: 3rem;
}

.full-price-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.full-price-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, #f0f0f0, #fff);
}

.full-price-btn .material-symbols-outlined {
    font-size: 1.3rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #fff;
    color: #000;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.contact-item .material-symbols-outlined {
    font-size: 2rem;
    color: #000;
    margin-top: 0.5rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000; /* Ensure black text on desktop too */
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

/* Desktop contact styling */
@media (min-width: 769px) {
    .contact-item p {
        color: #666;
    }
    
    .contact-item p a {
        color: #000;
        text-decoration: none;
    }
    
    .contact-item p a:hover {
        color: #333;
        text-decoration: underline;
    }
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

/* Ultimate Mobile Design - Progressive Enhancement */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .price-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Enhanced Navigation */
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        padding: 0.5rem;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-toggle span {
        width: 28px;
        height: 3px;
        border-radius: 2px;
    }
    
    /* Optimized Logo */
    .logo {
        gap: 0.75rem;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-text h1 {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    /* Hero Optimization */
    .hero {
        background-attachment: scroll; /* Better mobile performance */
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 0 1.5rem;
        max-width: 90%;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-features {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .quality-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .location {
        font-size: 1.15rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    /* Enhanced CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 1.1rem 2rem;
        font-size: 1.1rem;
        border-radius: 30px;
        min-height: 56px; /* Touch-friendly */
    }
    
    /* Sections Spacing */
    .prices,
    .contact {
        padding: 4rem 0;
    }
    
    .prices h2,
    .contact h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    /* Price Cards Mobile Layout */
    .price-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .price-card {
        padding: 2.5rem 2rem;
        margin: 0;
    }
    
    .price-card.featured {
        transform: none;
        border: 2px solid #fff;
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    }
    
    .price-card:hover {
        transform: translateY(-5px);
    }
    
    .price-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .price-icon svg,
    .price-icon img {
        width: 42px;
        height: 42px;
    }
    
    .price-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .price {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .features li {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    /* Contact Section Mobile */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .contact-item svg {
        width: 20px;
        height: 20px;
    }
    
    /* Footer */
    footer {
        padding: 1.5rem 0;
    }
    
    .footer-links {
        margin-top: 1rem !important;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    /* Ultra-mobile Navigation */
    .nav-container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .tagline {
        display: none; /* Save space on very small screens */
    }
    
    /* Hero Ultra-Mobile */
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.05;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quality-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .location {
        font-size: 1rem;
        text-align: center;
        line-height: 1.3;
    }
    
    /* CTA Ultra-Mobile */
    .cta-button {
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Sections Ultra-Mobile */
    .container {
        padding: 0 1rem;
    }
    
    .prices,
    .contact {
        padding: 3rem 0;
    }
    
    .prices h2,
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    /* Price Cards Ultra-Mobile */
    .price-card {
        padding: 2rem 1.5rem;
    }
    
    .price-icon {
        width: 60px;
        height: 60px;
    }
    
    .price-icon svg,
    .price-icon img {
        width: 36px;
        height: 36px;
    }
    
    .price-card h3 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .features li {
        font-size: 0.9rem;
    }
    
    /* Contact Ultra-Mobile */
    .contact-item {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-item svg {
        align-self: center;
        margin: 0;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .contact-item p {
        font-size: 0.95rem;
    }
    
    /* Enhanced Touch Targets */
    .full-price-btn {
        padding: 1rem 1.5rem;
        min-height: 56px;
        width: 100%;
        max-width: 100%;
        font-size: 1rem;
    }
}

/* Landscape Phone Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
        padding-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .cta-button {
        max-width: 200px;
        flex: 1;
    }
}

/* Advanced Mobile Interactions & Performance */

/* Touch-friendly hover states */
@media (hover: none) and (pointer: coarse) {
    .price-card:hover {
        transform: none;
    }
    
    .contact-item:hover {
        transform: none;
    }
    
    .cta-button:hover {
        transform: none;
    }
    
    .nav-link:hover {
        transform: none;
    }
}

/* Enhanced mobile touch feedback with better visual feedback */
@media (max-width: 768px) {
    .price-card:active {
        transform: scale(0.99);
        transition: transform 0.15s ease;
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    }
    
    .price-card.featured:active {
        transform: scale(1.01);
    }
    
    .cta-button:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }
    
    .contact-item:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
        background: #f0f0f0;
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.9);
        transition: transform 0.1s ease;
    }

    .full-price-btn:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
        box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    }

    /* Enhanced scroll indicator for price section */
    .prices::before {
        content: "↓ Scroll für mehr Preise ↓";
        position: sticky;
        top: 140px;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        text-align: center;
        padding: 0.5rem;
        font-size: 0.9rem;
        border-radius: 20px;
        margin: 0 auto 1rem auto;
        max-width: 250px;
        display: block;
        backdrop-filter: blur(10px);
        z-index: 50;
    }
}

/* Mobile-specific animations */
@media (max-width: 768px) {
    .hero-content {
        animation: mobileHeroFadeIn 1.2s ease-out;
    }
    
    @keyframes mobileHeroFadeIn {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .price-card {
        animation: mobileFadeInUp 0.8s ease forwards;
    }
    
    .price-card:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    @keyframes mobileFadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Optimized scrolling for mobile */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Better text rendering on mobile */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
}

/* Mobile Accessibility Enhancements */
@media (max-width: 768px) {
    /* Larger tap targets for better accessibility */
    .nav-link,
    .cta-button,
    .full-price-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better focus states for mobile */
    .cta-button:focus,
    .full-price-btn:focus {
        outline: 3px solid rgba(255, 255, 255, 0.6);
        outline-offset: 2px;
    }
    
    /* Improved readability */
    .hero-features,
    .contact-item p,
    .features li {
        line-height: 1.5;
    }
}

/* Dark mode support for mobile */
@media (max-width: 768px) and (prefers-color-scheme: dark) {
    .price-card {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.15);
    }
    
    .contact-item {
        background: #1a1a1a;
        color: #fff;
    }
    
    .contact-item p {
        color: #ccc;
    }
}

/* Smooth scrolling and enhanced mobile scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced scroll behavior for price cards */
@media (max-width: 768px) {
    .price-cards {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .price-card {
        scroll-margin-top: 100px;
    }

    /* Smooth scroll into view animation */
    .price-card {
        animation: slideInUp 0.8s ease-out;
        animation-fill-mode: both;
    }

    .price-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .price-card:nth-child(2) {
        animation-delay: 0.3s;
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(50px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1.01);
        }
    }

    .price-card.featured {
        animation-name: slideInUpFeatured;
    }

    @keyframes slideInUpFeatured {
        from {
            opacity: 0;
            transform: translateY(50px) scale(0.98);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1.03);
        }
    }
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-card,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Emphasis: make the nav "Preise" and CTA "Preise ansehen" text larger and bolder */
.nav-link[href="#prices"] {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.nav-link[href="#prices"] svg {
    width: 24px;
    height: 24px;
}

.cta-button.primary {
    font-size: 1.3rem; /* bigger button text */
    font-weight: 800;  /* stronger emphasis */
    padding: 1.25rem 2.75rem; /* balance spacing */
}

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

/* Better styling for the euro SVG next to the text */
.nav-link[href="#prices"] svg {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    padding: 2px;
    stroke-width: 2.25; /* crisper stroke */
    transform: translateY(0.5px); /* optical centering */
}

.nav-link[href="#prices"]:hover svg {
    background: rgba(255, 255, 255, 0.18);
}

.cta-button.primary svg {
    stroke-width: 2.25; /* match nav icon stroke weight */
    transform: translateY(0.5px);
}

/* PNG Icons in Preiskarten - fullscreen ohne weißen Hintergrund */
.price-icon img {
    width: 48px; /* inner glyph size */
    height: 48px;
    border-radius: 0; /* keep glyph edges */
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
    transform: scale(1.08); /* visually equalize PNG vs. SVG stroke */
}

.price-icon img:hover {
    transform: scale(1.12);
}

/* Match the PNG badge styling for inline SVG scissors */
.price-icon .icon-circle,
.price-icon svg {
    width: 48px;
    height: 48px;
    color: #000; /* black icon inside white badge */
}

/* Category icon images on Preise page */
.category-icon img {
    width: 40px;
    height: 40px;
    display: block;
}

/* Preiskarten Layout für 2 Karten */
.price-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* removed duplicate bottom hero-features block to avoid conflicts */

/* --- Index mobile refinements: GROSSER POP-UP STYLE for price cards --- */
/* ENHANCED Mobile Price Cards - Larger Pop-up Style with scroll effect */
@media (max-width: 768px) and (min-width: 560px) {
    .prices {
        padding: 4rem 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .prices h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
        text-align: center;
    }

    .price-cards {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 500px;
        margin: 0 auto;
        scroll-snap-type: y mandatory;
        overflow-y: auto;
        height: auto;
    }

    .price-card {
        padding: 3rem 2.5rem;
        border-radius: 25px;
        margin-bottom: 2rem;
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
        scroll-snap-align: center;
        min-height: 450px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        border: 3px solid rgba(255, 255, 255, 0.3);
    }

    .price-card.featured {
        transform: scale(1.05);
        border: 3px solid #fff;
        box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
    }

    .price-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 2rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }

    .price-icon svg,
    .price-icon img {
        width: 60px;
        height: 60px;
    }

    .price-card h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        font-weight: 800;
        letter-spacing: 0.5px;
    }

    .price {
        font-size: 3.5rem;
        margin-bottom: 2rem;
        font-weight: 900;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .features {
        text-align: left;
        max-width: 280px;
        margin: 0 auto 2rem auto;
    }

    .features li {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding: 0.5rem 0;
        font-weight: 500;
    }

    .features svg {
        width: 18px;
        height: 18px;
        margin-right: 0.75rem;
    }

    .full-price-btn {
        padding: 1.5rem 2.5rem;
        font-size: 1.3rem;
        margin-top: 3rem;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 30px;
        font-weight: 700;
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
    }
}

/* Fine-tune smallest phones for POP-UP experience */
@media (max-width: 480px) {
    .prices {
        padding: 3rem 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
    }

    .prices h2 {
        font-size: 2.3rem;
        margin-bottom: 2.5rem;
        text-align: center;
        position: sticky;
        top: 80px;
        background: rgba(0, 0, 0, 0.9);
        padding: 1rem 0;
        z-index: 100;
    }

    .price-cards {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 380px;
        margin: 0 auto;
        scroll-snap-type: y mandatory;
        height: calc(100vh - 200px);
        overflow-y: scroll;
        padding: 1rem 0;
    }

    .price-card {
        padding: 3rem 2rem;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
        scroll-snap-align: start;
        min-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transform: scale(1.01);
        border: 2px solid rgba(255, 255, 255, 0.25);
        margin-bottom: 1rem;
    }

    .price-card.featured {
        transform: scale(1.03);
        border: 3px solid #fff;
        box-shadow: 0 25px 50px rgba(255, 255, 255, 0.2);
    }

    .price-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1.75rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .price-icon svg,
    .price-icon img {
        width: 55px;
        height: 55px;
    }

    .price-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
        line-height: 1.2;
        font-weight: 800;
        letter-spacing: 0.3px;
    }

    .price {
        font-size: 3.2rem;
        margin-bottom: 1.75rem;
        line-height: 1;
        font-weight: 900;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .features {
        margin-bottom: 1.5rem;
        text-align: left;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;
    }

    .features li {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
        font-weight: 500;
    }

    .features svg {
        width: 16px;
        height: 16px;
        margin-right: 0.6rem;
    }

    .full-price-btn {
        padding: 1.3rem 2rem;
        font-size: 1.2rem;
        margin-top: 2.5rem;
        width: 100%;
        border-radius: 25px;
        font-weight: 700;
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
        position: sticky;
        bottom: 20px;
        z-index: 101;
    }
}

/* Contact section mobile tweaks: PERFECT CENTERING for all elements */
@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }

    .contact h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
        color: #000;
        text-align: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-item {
        gap: 0;
        padding: 2rem 1.5rem;
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #f8f8f8;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .contact-item svg {
        width: 36px;
        height: 36px;
        color: #000;
        margin-bottom: 1rem;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-item div {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-item h4 {
        color: #000 !important;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        text-align: center;
        width: 100%;
    }

    .contact-item p {
        color: #000 !important;
        font-size: 1.1rem;
        line-height: 1.5;
        text-align: center;
        margin: 0.25rem 0;
        width: 100%;
        font-weight: 500;
    }

    .contact-item p a {
        color: #000 !important;
        text-decoration: none;
        font-weight: 600;
        display: block;
        text-align: center;
    }

    .contact-item p a:hover {
        color: #333 !important;
        text-decoration: underline;
    }
}

/* Ultra-mobile contact optimization - PERFECT CENTERING */
@media (max-width: 480px) {
    .contact {
        padding: 3rem 0;
    }

    .contact h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-info {
        max-width: 350px;
        gap: 1.75rem;
    }

    .contact-item {
        padding: 2rem 1.25rem;
        border-radius: 12px;
    }

    .contact-item svg {
        width: 32px;
        height: 32px;
        margin-bottom: 1rem;
    }

    .contact-item h4 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .contact-item p {
        font-size: 1rem;
        line-height: 1.4;
        margin: 0.2rem 0;
    }
}

/* ==============================================
   ADVANCED MOBILE OPTIMIZATIONS 
   iPhone & Samsung Specific Enhancements
   ============================================== */

/* iPhone X/11/12/13/14/15 Series - Safe Area Support */
@supports (padding: max(0px)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .navbar {
        padding-top: env(safe-area-inset-top);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .mobile-menu-overlay {
        top: env(safe-area-inset-top);
    }
}

/* iPhone SE (375px) specific optimizations */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .price-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .cta-nav-button,
    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* iPhone Pro Max (428px) and larger phones optimizations */
@media (min-width: 393px) and (max-width: 428px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .price-grid {
        gap: 1.5rem;
    }

    .price-card {
        padding: 2.25rem;
    }
}

/* Samsung Galaxy S/Note Series specific optimizations */
@media (max-width: 412px) and (min-height: 732px) {
    .navbar {
        height: 75px;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .section {
        padding: 4rem 0;
    }
}

/* Landscape mode optimizations for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .navbar {
        height: 60px;
    }

    .section {
        padding: 2rem 0;
    }

    .price-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .price-card {
        padding: 1.5rem;
    }
}

/* Touch target optimization for better accessibility */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .cta-button,
    .cta-nav-button,
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Increase touch targets for links */
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* High DPI displays (Retina) optimizations */
@media (-webkit-min-device-pixel-ratio: 2),
       (min-resolution: 192dpi) {
    .logo-icon svg,
    .price-icon svg,
    svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark mode support for mobile devices */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #000;
    }

    .price-card {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
    }

    .navbar {
        background: rgba(0, 0, 0, 0.95);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Performance optimizations for older devices */
@media (max-width: 480px) {
    .price-card {
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    /* Disable expensive effects on older mobile devices */
    .hero::before {
        display: none;
    }

    /* Simplified gradients for better performance */
    .logo-text h1,
    .hero h1 {
        background: linear-gradient(45deg, #fff, #ccc);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

    .contact-item svg {
        width: 24px;
        height: 24px;
    .contact-item h4 {
        font-size: 1.25rem;
        margin-bottom: 0.35rem;
    }

    .contact-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-item svg {
        width: 26px; /* slightly larger for tiny screens */
        height: 26px;
    }

    .contact-item h4 {
        font-size: 1.2rem;
    }
}

/* ==============================================
   FINAL MOBILE DEVICE SPECIFIC OPTIMIZATIONS
   ============================================== */

/* iPhone Mini (iPhone 12/13 mini) - 375x812 */
@media only screen 
  and (device-width: 375px) 
  and (device-height: 812px) 
  and (-webkit-device-pixel-ratio: 3) {
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .price-grid {
        gap: 1.25rem;
    }
}

/* iPhone Pro/Pro Max (iPhone 12/13/14/15 Pro) - 390x844, 428x926 */
@media only screen 
  and (min-device-width: 390px) 
  and (max-device-width: 428px) 
  and (-webkit-device-pixel-ratio: 3) {
    
    .navbar {
        padding: 1.25rem 0;
    }
    
    .hero {
        padding: 160px 0 100px;
    }
}

/* Samsung Galaxy S Series optimization */
@media only screen 
  and (min-device-width: 360px) 
  and (max-device-width: 412px) 
  and (min-device-height: 640px) 
  and (max-device-height: 915px) {
    
    .section {
        padding: 4.5rem 0;
    }
    
    .price-card {
        border-radius: 16px;
        padding: 2rem 1.75rem;
    }
    
    .contact-grid {
        gap: 2rem;
    }
}

/* Force hardware acceleration on all interactive elements */
.nav-link,
.cta-button,
.cta-nav-button,
.price-card,
.logo-icon {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Prevent zoom on form focus (iOS Safari) */
input, select, textarea {
    font-size: 16px !important;
}

/* Better scrolling performance */
body {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Optimize font loading for mobile */
@media (max-width: 768px) {
    body {
        font-display: swap;
    }
}
