/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

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

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

/* ============================================
   HEADER
   ============================================ */

header {
    background: #000000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.logo-container {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
}

.main-logo {
    max-width: 220px;
    max-height: 60px;
    height: auto;
    width: auto;
    object-fit: contain;
}

.header-content h1 {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 0.25rem;
    color: #ffffff;
    text-transform: uppercase;
}

.header-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    letter-spacing: 1.5px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-video {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.1rem 2.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid;
    display: inline-block;
    cursor: pointer;
    border-radius: 12px;
}

.btn-primary {
    background: linear-gradient(90deg, #ff6b00 0%, #ff3d00 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #ff7b1a 0%, #ff4d1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ff6b00;
}

.btn-secondary:hover {
    background: rgba(255, 107, 0, 0.15);
    transform: translateY(-2px);
    border-color: #ff7b1a;
}

/* ============================================
   AUTOHÄUSER SECTION
   ============================================ */

.autohaus-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    scroll-margin-top: 80px;
}

.autohaus-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1800px;
    margin: 0 auto;
}

.autohaus-box {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 800px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-radius: 16px;
}

.autohaus-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.autohaus-box:hover {
    background: #111111;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.autohaus-box:hover::before {
    opacity: 1;
}

.box-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    overflow: hidden;
}

/* Logo Bereich - PERFEKT ZENTRIERT */
.logo-placeholder {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    position: relative;
}

.logo-placeholder img {
    max-width: 90%;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.2);
    transition: transform 0.4s ease;
    display: block;
    margin: 0 auto;
}

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

.logo-fallback {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Text Bereich - MIT OVERFLOW SCHUTZ */
.box-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 0;
    overflow: hidden;
}

.box-text > div:first-child {
    flex-shrink: 0;
}

.box-text > div:nth-child(2) {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
}

.box-text > div:nth-child(2)::-webkit-scrollbar {
    width: 4px;
}

.box-text > div:nth-child(2)::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.box-text > div:nth-child(2)::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.box-text > div:last-child {
    flex-shrink: 0;
    margin-top: auto;
}

.box-text h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 0.25rem;
}

.rating::before {
    content: '★★★★★';
    color: #ffd700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    opacity: 0.85;
}

.reviews {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 400;
}

.description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 1.25rem 0;
    font-weight: 300;
    letter-spacing: 0.2px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.description:last-of-type {
    margin-bottom: 0;
}

.info-section {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: auto;
    flex-shrink: 0;
}

.address,
.contact-info {
    font-size: 0.875rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.address strong,
.contact-info strong {
    color: rgba(255, 255, 255, 0.95);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.process-container h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.process-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    align-items: start;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 32px;
    height: 32px;
    background: #000000;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    z-index: 2;
}

.step-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.step-icon svg {
    width: 60px;
    height: 60px;
    stroke-width: 2;
}

.step-icon-1 {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #ffffff;
}

.step-icon-2 {
    background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
    color: #ffffff;
}

.step-icon-3 {
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    color: #ffffff;
}

.step-icon-4 {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: #ffffff;
}

.process-step:hover .step-icon {
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 250px;
    margin: 0 auto;
}

.process-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.process-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(90deg, #ff6b00 0%, #ff3d00 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.process-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
    background: linear-gradient(90deg, #ff7b1a 0%, #ff4d1a 100%);
}

/* ============================================
   WHY US SECTION
   ============================================ */

.why-us-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.why-us-container h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.why-us-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 4rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

.feature-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

.feature-icon-1 {
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    color: #ffffff;
}

.feature-icon-2 {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: #ffffff;
}

.feature-icon-3 {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: #ffffff;
}

.feature-icon-4 {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: #ffffff;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    scroll-margin-top: 80px;
}

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

.contact-container h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.map-heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.map-address {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.contact-map {
    width: 100%;
    height: 350px;
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-message {
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid;
    border-radius: 12px;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.5);
    color: #4caf50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border-color: rgba(244, 67, 54, 0.5);
    color: #f44336;
}

.form-message.error ul {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.form-message.error li {
    margin-bottom: 0.3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 1rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 12px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b00;
    background: #0a0a0a;
    box-shadow: 0 0 0 1px rgba(255, 107, 0, 0.3);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
    width: auto;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.checkbox-group a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: #ffffff;
}

.submit-btn {
    background: linear-gradient(90deg, #ff6b00 0%, #ff3d00 100%);
    color: #ffffff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    align-self: center;
    min-width: 250px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(90deg, #ff7b1a 0%, #ff4d1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: #000000;
    color: #ffffff;
    padding: 2.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.footer-content a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-content a:hover {
    color: #ff6b00;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1400px) {
    .autohaus-container {
        gap: 1.5rem;
    }
    
    .box-content {
        padding: 2rem;
    }
}

@media (max-width: 1200px) {
    .autohaus-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .autohaus-box {
        height: 750px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.75rem 0;
    }

    .header-content {
        padding: 0 1.5rem;
    }

    .logo-container {
        margin-bottom: 0.5rem;
        min-height: 40px;
    }

    .main-logo {
        max-width: 180px;
        max-height: 50px;
    }

    .header-content h1 {
        font-size: 1.1rem;
        letter-spacing: 2px;
        margin-bottom: 0.2rem;
    }

    .header-subtitle {
        font-size: 0.75rem;
    }

    .hero-section {
        height: 80vh;
        min-height: 600px;
        max-height: 800px;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .why-us-section {
        padding: 4rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

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

    .feature-card h3 {
        font-size: 1.15rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .step-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .step-icon {
        width: 100px;
        height: 100px;
    }

    .step-icon svg {
        width: 50px;
        height: 50px;
    }

    .process-step h3 {
        font-size: 1.15rem;
    }

    .process-step p {
        font-size: 0.9rem;
    }

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

    .autohaus-box {
        height: auto;
        min-height: 600px;
    }

    .box-content {
        padding: 2rem;
    }

    .logo-placeholder {
        height: 140px;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .logo-placeholder img {
        max-height: 140px;
    }

    .box-text {
        gap: 1.25rem;
    }

    .box-text h3 {
        font-size: 1.2rem;
    }

    .description {
        font-size: 0.875rem;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.5rem 0;
    }

    .logo-container {
        min-height: 35px;
    }

    .main-logo {
        max-width: 150px;
        max-height: 40px;
    }

    .header-content h1 {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .header-subtitle {
        font-size: 0.7rem;
    }

    .hero-section {
        min-height: 500px;
    }

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

    .feature-card {
        padding: 1.75rem 1.25rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

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

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .step-icon-wrapper {
        width: 90px;
        height: 90px;
    }

    .step-icon {
        width: 90px;
        height: 90px;
    }

    .step-icon svg {
        width: 45px;
        height: 45px;
    }

    .process-step h3 {
        font-size: 1.1rem;
    }

    .process-step p {
        font-size: 0.85rem;
        max-width: 100%;
    }

    .process-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .box-content {
        padding: 1.5rem;
    }

    .logo-placeholder {
        height: 120px;
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .logo-placeholder img {
        max-height: 120px;
    }

    .box-text h3 {
        font-size: 1.1rem;
    }

    .contact-container h2 {
        font-size: 1.75rem;
    }

    .submit-btn {
        width: 100%;
        min-width: auto;
    }

    .footer-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator {
        display: none;
    }
}
