/* ===========================
   YATOVI WEBSITE - STYLES.CSS
   =========================== */

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

/* CSS Variables - Light Theme */
:root {
    --primary: #D10005;
    --secondary: #FFD700;
    --accent: #8B0000;
    --bg-light: #FFFFFF;
    --bg-lighter: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #757575;
    --border-color: #E0E0E0;
}

/* CSS Variables - Dark Theme */
[data-theme="dark"] {
    --primary: #D10005;
    --secondary: #FFD700;
    --accent: #A00000;
    --bg-light: #1A1A1A;
    --bg-lighter: #0F0F0F;
    --text-dark: #F5F5F5;
    --text-medium: #B8B8B8;
    --text-light: #8A8A8A;
    --border-color: #333333;
}

/* Body */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-lighter);
    color: var(--text-dark);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===========================
   THEME TOGGLE
   =========================== */
.theme-toggle {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: var(--bg-light);
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .theme-toggle::before {
    transform: translateX(30px);
}

.theme-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.theme-icon.sun {
    left: 6px;
    color: #FFD700;
}

.theme-icon.moon {
    right: 6px;
    color: #B8B8B8;
}

[data-theme="dark"] .theme-icon.sun {
    opacity: 0.3;
}

[data-theme="light"] .theme-icon.moon {
    opacity: 0.3;
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .nav {
    background: rgba(26, 26, 26, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-links a.active::after {
    width: 100%;
}

/* ===========================
   FLOATING CONTACT BUTTON
   =========================== */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(220, 0, 0, 0.4);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(220, 0, 0, 0.5);
}

.floating-contact i {
    font-size: 1.3rem;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFAEB 100%);
    transition: background 0.3s ease;
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #1A0505 0%, #1A1505 100%);
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
    letter-spacing: 2px;
    animation: slideUp 0.8s ease-out;
}

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

.hero .tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 2rem;
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

/* ===========================
   AUTOWIRE PAGE - APP LOGO
   =========================== */
.logo-container {
    text-align: center;
    margin-bottom: 1rem;
}

.app-logo {
    width: 180px;
    height: 180px;
    border-radius: 30px;
    display: inline-block;
}

.app-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Autowire Hero Title Override */
.hero.autowire-hero h1 {
    font-weight: 900;
    color: var(--text-dark);
}

/* ===========================
   PROCESS FLOW (AUTOWIRE)
   =========================== */
.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.process-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.process-image {
    width: 100%;
    height: 180px;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-size: 4rem;
    color: var(--primary);
    transition: background-color 0.3s ease;
}

.process-arrow {
    font-size: 2.5rem;
    color: var(--accent);
    display: flex;
    align-items: center;
}

.process-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* ===========================
   SECTIONS
   =========================== */
.section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-bottom: 4rem;
    text-align: center;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    background: var(--bg-light);
    padding: 6rem 2rem;
    transition: background-color 0.3s ease;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFAEB 100%);
    border-radius: 20px;
    margin: 3rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

[data-theme="dark"] .team-image {
    background: linear-gradient(135deg, #2A0505 0%, #2A1A05 100%);
}

/* ===========================
   TEAM SECTION
   =========================== */
.team-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFAEB 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 5rem;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: background 0.3s ease;
}

[data-theme="dark"] .team-photo {
    background: linear-gradient(135deg, #2A0505 0%, #2A1A05 100%);
}

.team-member h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===========================
   VALUES SECTION (FLIP CARDS)
   =========================== */
.values-section {
    padding: 6rem 2rem;
    background: var(--bg-lighter);
    transition: background-color 0.3s ease;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1000px;
}

.value-card-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.value-card-container.flipped {
    transform: rotateY(180deg);
}

.value-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    text-align: center;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.value-card-front {
    z-index: 2;
}

.value-card-back {
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-card-container:hover .value-card {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(220, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ===========================
   BENEFITS SECTION (AUTOWIRE)
   =========================== */
.benefits-section {
    background: var(--bg-light);
    padding: 6rem 2rem;
    transition: background-color 0.3s ease;
}

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

.benefit-item {
    padding: 2rem;
}

.benefit-item h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-item h3 i {
    font-size: 2.5rem;
}

.benefit-item p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFAEB 100%);
    transition: background 0.3s ease;
}

[data-theme="dark"] .cta-section {
    background: linear-gradient(135deg, #1A0505 0%, #1A1505 100%);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(220, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 0, 0, 0.4);
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
    transition: background-color 0.3s ease;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.contact-intro h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-form {
    background: var(--bg-lighter);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--bg-light);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===========================
   PRIVACY NOTICE & CHECKBOX
   =========================== */
.privacy-notice {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.privacy-notice h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.privacy-notice p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.checkbox-label:hover .checkbox-text {
    color: var(--primary);
}

/* ===========================
   SUBMIT BUTTON
   =========================== */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 0, 0, 0.2);
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 0, 0, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

footer p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* ===========================
   IMPRINT PAGE
   =========================== */
.imprint-section {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    background: var(--bg-lighter);
}

.imprint-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.imprint-container h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
}

.imprint-content {
    color: var(--text-dark);
}

.imprint-block {
    margin-bottom: 2.5rem;
}

.imprint-block:last-child {
    margin-bottom: 0;
}

.imprint-block h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.imprint-block h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.imprint-block h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.imprint-block p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

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

.imprint-block a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s;
}

.imprint-block a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.imprint-notice {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFAEB 100%);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

[data-theme="dark"] .imprint-notice {
    background: linear-gradient(135deg, #2A0505 0%, #2A1A05 100%);
}

.imprint-notice p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
}

/* ===========================
   RESPONSIVE - TABLET & MOBILE
   =========================== */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
        flex-direction: row;
        font-size: 0.9rem;
    }

    .theme-toggle {
        width: 50px;
        height: 25px;
    }

    .theme-toggle::before {
        width: 19px;
        height: 19px;
    }

    [data-theme="dark"] .theme-toggle::before {
        transform: translateX(25px);
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .app-logo {
        width: 120px;
        height: 120px;
    }

    .process-flow {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 2rem 0;
    }

    .process-item {
        min-width: 200px;
        max-width: 300px;
        width: 100%;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
        font-size: 2rem;
    }

    .process-image {
        height: 120px;
        font-size: 2.5rem;
    }

    .process-label {
        font-size: 0.95rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .about-section {
        padding: 3rem 1.5rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .team-image {
        height: 250px;
        font-size: 3rem;
        margin: 2rem auto;
    }

    .team-section {
        padding: 3rem 1.5rem;
    }

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

    .team-photo {
        font-size: 4rem;
    }

    .team-member h4 {
        font-size: 1.2rem;
    }

    .team-member p {
        font-size: 0.95rem;
    }

    .values-section {
        padding: 3rem 1.5rem;
    }

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

    .value-card {
        padding: 2rem;
    }

    .value-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .value-card h3 {
        font-size: 1.3rem;
    }

    .value-card p {
        font-size: 0.95rem;
    }

    .benefits-section {
        padding: 3rem 1.5rem;
    }

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

    .benefit-item {
        padding: 1.5rem;
    }

    .benefit-item h3 {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .benefit-item h3 i {
        font-size: 2rem;
    }

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

    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.1rem !important;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }

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

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

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 1rem;
    }

    .privacy-notice {
        padding: 1.25rem;
    }

    .privacy-notice h4 {
        font-size: 1rem;
    }

    .privacy-notice p {
        font-size: 0.85rem;
    }

    .checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }

    .checkbox-text {
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 1rem;
        font-size: 1rem;
    }

    .floating-contact {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .floating-contact i {
        font-size: 1.1rem;
    }

    footer {
        padding: 2rem 1.5rem;
    }

    footer p {
        font-size: 0.9rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .imprint-section {
        padding: 6rem 1.5rem 3rem;
    }

    .imprint-container {
        padding: 2.5rem 1.5rem;
    }

    .imprint-container h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .imprint-block {
        margin-bottom: 2rem;
    }

    .imprint-block h2 {
        font-size: 1.2rem;
    }

    .imprint-block h3 {
        font-size: 1.1rem;
        margin-top: 1.25rem;
    }

    .imprint-block h4 {
        font-size: 1rem;
        margin-top: 0.75rem;
    }

    .imprint-block p {
        font-size: 0.95rem;
    }
}

/* ===========================
   RESPONSIVE - SMALL MOBILE
   =========================== */
@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }

    .nav-links {
        font-size: 0.85rem;
        gap: 0.75rem;
    }

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

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

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

    .app-logo {
        width: 100px;
        height: 100px;
    }

    .process-item {
        min-width: 120px;
    }

    .process-image {
        height: 100px;
        font-size: 2rem;
    }

    .process-label {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .benefit-item h3 {
        font-size: 1.3rem;
    }

    .benefit-item p {
        font-size: 0.95rem;
    }

    .privacy-notice {
        padding: 1rem;
    }

    .privacy-notice h4 {
        font-size: 0.95rem;
    }

    .privacy-notice p {
        font-size: 0.8rem;
    }

    .checkbox-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }

    .checkbox-text {
        font-size: 0.85rem;
    }

    .floating-contact {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .imprint-container {
        padding: 2rem 1.25rem;
    }

    .imprint-container h1 {
        font-size: 1.75rem;
    }

    .imprint-block h2 {
        font-size: 1.1rem;
    }

    .imprint-block h3 {
        font-size: 1rem;
    }

    .imprint-block h4 {
        font-size: 0.95rem;
    }

    .imprint-block p {
        font-size: 0.9rem;
    }
}
