/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    padding-top: 85px;
}

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

/* Promo Banner */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a2332 0%, #0d1b2a 100%);
    color: white;
    z-index: 1001;
    padding: 0.45rem 1rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.promo-left,
.promo-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.promo-center p {
    margin: 0;
    font-size: 0.9rem;
}

.promo-contact {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.2s;
}

.promo-contact:hover {
    opacity: 0.8;
}

.promo-contact svg {
    flex-shrink: 0;
}

.promo-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
}

.promo-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.promo-btn svg {
    flex-shrink: 0;
}

.promo-btn-outline {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.promo-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.promo-btn-outline svg {
    flex-shrink: 0;
}

.promo-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.promo-link {
    color: white;
    text-decoration: underline;
    margin-left: 0.5rem;
    font-weight: 600;
}

.promo-link:hover {
    opacity: 0.8;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 50px;
    width: 100%;
    background: white;
    z-index: 1000;
    padding: 0.7rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.6rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 2rem;
    align-items: center;
}

.nav-logo h2 {
    color: #1fc9ba;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-logo h2::before {
    content: '';
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

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

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #555;
    transition: all 0.3s ease;
    background: transparent;
    border: 1.5px solid #e0e0e0;
}

.nav-icon:hover {
    background: #1fc9ba;
    color: white;
    border-color: #1fc9ba;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 201, 186, 0.3);
}

.nav-icon svg {
    width: 18px;
    height: 18px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1fc9ba, #18b5a3);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #1fc9ba;
    background: rgba(31, 201, 186, 0.05);
}

.nav-link:hover::before {
    width: 60%;
}

.nav-link.active {
    color: #1fc9ba;
    background: rgba(31, 201, 186, 0.1);
}

.nav-link.active::before {
    width: 60%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.navbar.scrolled .bar {
    background-color: #333;
}

/* Hero Section */
.hero {
    padding: 100px 0 70px 0;
    background: #000;
    color: white;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transform: scale(1.3);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 201, 186, 0.4) 0%, rgba(24, 181, 163, 0.3) 50%, rgba(31, 201, 186, 0.4) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.btn-primary {
    background: white;
    color: #1fc9ba;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

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

.hero-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: auto;
    width: 100%;
}

.hero-mockup-img {
    width: 100%;
    max-width: 850px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
    image-rendering: -webkit-optimize-quality;
    -ms-interpolation-mode: bicubic;
}

/* Hero Form */
.hero-form {
    position: relative;
}

.consultation-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.consultation-card h3 {
    color: #1a1a2e;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.hero-contact-form input[type="text"],
.hero-contact-form input[type="email"],
.hero-contact-form input[type="tel"] {
    width: 100%;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.hero-contact-form input:focus {
    outline: none;
    border-color: #1fc9ba;
    background: white;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.terms-link {
    color: #1fc9ba;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Platforms Section */
.hero-platforms {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.store-badge-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.store-badge-img {
    width: 185px;
    height: auto;
    display: block;
}

/* Features Intro Section */
.features-intro {
    padding: 40px 0 40px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    z-index: 10;
    background: white;
}

.features-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.features-intro-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 0;
    background: #ffffff;
}

.features-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid #e8e8e8;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.feature-box {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.feature-box:nth-child(4n) {
    border-right: none;
}

.feature-box:hover {
    background: #f8f9fa;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1fc9ba 0%, #18b5a3 100%);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover .feature-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(31, 201, 186, 0.25);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: #ffffff;
    stroke-width: 1.5;
}

.feature-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0d1b2a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.feature-box p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    /* Enforce exactly 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.05rem; /* 0.9rem * 1.5 line-height * 3 lines */
    max-height: 4.05rem;
}

.features-image-container {
    padding: 2rem 0;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.features-main-image {
    max-width: 1000px;
    width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 1200px) {
    .features-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-box:nth-child(4n) {
        border-right: 1px solid #e8e8e8;
    }
    
    .feature-box:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .features-strip {
        grid-template-columns: 1fr;
    }
    
    .feature-box {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
        padding: 2rem 1.5rem;
    }
    
    .feature-box:last-child {
        border-bottom: none;
    }
    
    .features-main-image {
        max-width: 350px;
    }
}

/* Verkäufer Section */
.verkaufer {
    padding: 80px 0;
    background: white;
}

.verkaufer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.verkaufer-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.verkaufer-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.verkaufer-features li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.verkaufer-features li svg {
    width: 22px;
    height: 22px;
    color: #1fc9ba;
    flex-shrink: 0;
}

/* How it Works Section */
.how-it-works {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(31, 201, 186, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(31, 201, 186, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(31, 201, 186, 0.2) 0%,
        rgba(31, 201, 186, 0.8) 20%,
        rgba(31, 201, 186, 0.8) 80%,
        rgba(31, 201, 186, 0.2) 100%
    );
    z-index: 0;
}

.step {
    text-align: center;
    padding: 3rem 1.75rem 2.5rem;
    background: white;
    border-radius: 24px;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.step::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(31, 201, 186, 0) 0%,
        rgba(31, 201, 186, 0.15) 50%,
        rgba(31, 201, 186, 0) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.step:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 4px 20px rgba(31, 201, 186, 0.12),
        0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(31, 201, 186, 0.1);
}

.step:hover::before {
    opacity: 1;
}

.step-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1fc9ba 0%, #18b5a3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    box-shadow: 
        0 8px 24px rgba(31, 201, 186, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 6px solid white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 201, 186, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid rgba(31, 201, 186, 0.3);
    opacity: 0;
    transition: all 0.5s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 
        0 12px 36px rgba(31, 201, 186, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.step:hover .step-number::before {
    opacity: 1;
    inset: -20px;
}

.step:hover .step-number::after {
    opacity: 1;
    inset: -8px;
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0d1b2a;
    letter-spacing: -0.01em;
}

.step p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Hologram Video Section */
.hologram-section {
    padding: 0;
    margin: 4rem 0 0 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.hologram-content {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hologram-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 201, 186, 0.3) 0%, rgba(24, 181, 163, 0.2) 50%, rgba(31, 201, 186, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.hologram-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
    transform: scale(1.3);
}

.hologram-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
    color: white;
}

.hologram-logo {
    width: 240px;
    height: auto;
    margin-bottom: 2rem;
}

.hologram-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hologram-subtitle {
    font-size: 1.2rem;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Use Cases Section */
.use-cases {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.use-case-large {
    background: linear-gradient(135deg, #1fc9ba 0%, #18b5a3 100%);
    border-radius: 24px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.use-case-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.use-case-large h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.use-case-large p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 90%;
}

.use-case-visual {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 250px;
    height: 250px;
}

.visual-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.visual-pulse {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 50px;
    left: 50px;
    animation: pulse 4s ease-in-out infinite;
}

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

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

.use-case-small {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
}

.use-case-small:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(31, 201, 186, 0.15);
    border-color: rgba(31, 201, 186, 0.2);
}

.use-case-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(31, 201, 186, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.use-case-small h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 0.75rem;
}

.use-case-small p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Map Preview Section */
.map-preview {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.map-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.preview-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(31, 201, 186, 0.1), rgba(31, 201, 186, 0.05));
    color: #1fc9ba;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(31, 201, 186, 0.2);
}

.map-preview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.map-preview-text > p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.preview-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.preview-features svg {
    width: 24px;
    height: 24px;
    color: #1fc9ba;
    flex-shrink: 0;
}

.map-preview-visual {
    position: relative;
}

.map-mockup {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2332 100%);
    border-radius: 24px;
    padding: 2rem;
    min-height: 450px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: visible;
}

.map-mockup::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(31, 201, 186, 0.03) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(31, 201, 186, 0.03) 50%, transparent 52%);
    background-size: 30px 30px;
}

.map-pin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #1fc9ba;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 8px 20px rgba(31, 201, 186, 0.4);
    animation: bounce 2s infinite;
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

.pin-1 {
    top: 12%;
    left: 25%;
    animation-delay: 0s;
}

.pin-2 {
    top: 25%;
    left: 60%;
    animation: none;
}

.pin-3 {
    bottom: 20%;
    right: 15%;
    animation-delay: 1s;
}

@keyframes bounce {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(-10px); }
}

.map-home {
    position: absolute;
    left: 15%;
    top: 75%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    color: #ff6b6b;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 107, 0.3));
    z-index: 3;
}

.map-home svg {
    width: 100%;
    height: 100%;
}

.map-route {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.route-line {
    stroke-dasharray: 4 4;
    animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -100;
    }
}

.target-pin {
    animation: targetPulse 2s ease-in-out infinite !important;
}

@keyframes targetPulse {
    0%, 100% { 
        transform: rotate(-45deg) translateY(0) scale(1);
        filter: drop-shadow(0 8px 20px rgba(31, 201, 186, 0.4));
    }
    50% { 
        transform: rotate(-45deg) translateY(-10px) scale(1.1);
        filter: drop-shadow(0 12px 30px rgba(31, 201, 186, 0.6));
    }
}

.map-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 3px solid #1fc9ba;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(31, 201, 186, 0.15), 0 4px 12px rgba(31, 201, 186, 0.4);
    z-index: 5;
    transform: translate(-50%, -50%);
    animation: travelPath 12s ease-in-out infinite;
}

@keyframes travelPath {
    0% {
        left: 15%;
        top: 75%;
    }
    10% {
        left: 30%;
        top: 75%;
    }
    20% {
        left: 30%;
        top: 45%;
    }
    30% {
        left: 60%;
        top: 45%;
    }
    40%, 60% {
        left: 60%;
        top: 25%;
    }
    70% {
        left: 60%;
        top: 45%;
    }
    80% {
        left: 30%;
        top: 45%;
    }
    90% {
        left: 30%;
        top: 75%;
    }
    100% {
        left: 15%;
        top: 75%;
    }
}

/* Vorteile Section (Benefits) */
.vorteile {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: -1rem auto 4rem;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(31, 201, 186, 0.15);
    border-color: rgba(31, 201, 186, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(31, 201, 186, 0.1) 0%, rgba(31, 201, 186, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #1fc9ba;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #1fc9ba 0%, #18b5a3 100%);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

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

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0d1b2a;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2332 100%);
    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(31, 201, 186, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    color: #ffc107;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    color: white;
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1fc9ba 0%, #18b5a3 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.contact-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 120px;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0d1b2a;
}

.contact-info p {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-item {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border-left: 3px solid #1fc9ba;
}

.contact-item strong {
    color: #1fc9ba;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form {
    background: white;
    padding: 3.5rem;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #0d1b2a;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.1rem 1.5rem;
    border: 2px solid #e1e8ed;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1fc9ba;
    background: white;
    box-shadow: 0 0 0 5px rgba(31, 201, 186, 0.08);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-large svg {
    transition: transform 0.3s ease;
}

.btn-large:hover svg {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0d1b2a 0%, #000814 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.footer-column h4 {
    color: #1fc9ba;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(to right, #1fc9ba, transparent);
}

.footer-brand .footer-logo-img {
    height: 55px;
    width: auto;
    margin-bottom: 1rem;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    filter: brightness(1.1);
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(31, 201, 186, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border: 1px solid rgba(31, 201, 186, 0.2);
}

.social-link:hover {
    background: rgba(31, 201, 186, 0.2);
    color: #1fc9ba;
    transform: translateY(-3px);
    border-color: rgba(31, 201, 186, 0.4);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #1fc9ba;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: #1fc9ba;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    margin-bottom: 2rem;
}

.footer-bottom {
    padding: 1.5rem 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #1fc9ba;
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: #1fc9ba;
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 300;
}

.footer-links a:hover {
    color: #1fc9ba;
    transform: translateX(8px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-store-badges {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
    filter: brightness(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .promo-banner {
        display: none;
    }
    
    .navbar {
        top: 0;
    }
    
    .nav-container {
        padding: 0 16px;
        grid-template-columns: 1fr auto;
        gap: 0.5rem;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero {
        padding: 95px 0 50px 0;
        margin-top: -60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .features-intro-title {
        font-size: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-platforms {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-mockup-img {
        max-width: 100%;
    }
    
    .consultation-card {
        padding: 2rem 1.5rem;
    }
    
    .verkaufer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-circle-layout {
        height: auto;
        padding: 2rem 0;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .features-center-image {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        order: -1;
        margin-bottom: 2rem;
    }
    
    .features-main-image {
        max-width: 95%;
    }
    
    .features-strip {
        padding: 0 1rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-column h4 {
        margin-bottom: 1rem;
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-column h4 {
        margin-bottom: 0.75rem;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-description {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-store-badges {
        max-width: 220px;
        margin: 0 auto;
        display: block;
    }

    .footer-apps {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-top: 1.5rem;
    }
    
    .footer-legal {
        justify-content: center;
        font-size: 0.8rem;
    }
    
    .footer-legal .separator {
        display: none;
    }
    
    .footer-legal a {
        font-size: 0.8rem;
    }
    
    /* Hologram Section Responsive */
    .hologram-content {
        height: 500px;
    }
    
    .hologram-logo {
        width: 180px;
    }
    
    .hologram-title {
        font-size: 2.5rem;
    }
    
    .hologram-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Floating Verkäufer Button */
.floating-verkaufer-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #1fc9ba 0%, #18b5a3 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 40px rgba(31, 201, 186, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-verkaufer-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(31, 201, 186, 0.6);
}

.floating-verkaufer-btn svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

.floating-verkaufer-btn span {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .floating-verkaufer-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .floating-verkaufer-btn svg {
        width: 20px;
        height: 20px;
    }
    
    /* Use Cases Responsive */
    .use-cases {
        padding: 20px 0 40px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .use-case-large {
        min-height: 300px;
        padding: 2.5rem 2rem;
    }
    
    .use-case-large h3 {
        font-size: 1.6rem;
    }
    
    .use-case-large p {
        font-size: 1rem;
    }
    
    .use-case-small h3 {
        font-size: 1.2rem;
    }
    
    /* Map Preview Responsive */
    .map-preview {
        padding: 40px 0;
    }

    .map-preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .map-preview-text h2 {
        font-size: 2rem;
    }
    
    .map-mockup {
        min-height: 350px;
    }
    
    /* Contact Form Responsive */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        position: relative;
        top: auto;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .floating-verkaufer-btn span {
        display: none;
    }
    
    .floating-verkaufer-btn {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}