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

@font-face {
    font-family: 'Metropolis-Regular';
    src: url('/Assets/fonts/Metropolis-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis-Black';
    src: url('/Assets/fonts/Metropolis-Black.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Metropolis-Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background-color: white;
    line-height: 1.4;
    font-size: 3.5pt
}

.product-hero {
    width: 100%;
    overflow: hidden;
}

.product-line {
    width: 100%;
    overflow: hidden;
    border: clamp(2px, 0.5vw, 9px) solid white;
    box-sizing: border-box;
}

.line-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.app-promotion {
    width: 100%;
    overflow: hidden;
    border: clamp(2px, 0.5vw, 9px) solid white;
    box-sizing: border-box;
    margin-top: calc(-1 * clamp(2px, 0.5vw, 9px));
}

.app-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ai-tool {
    width: 100%;
    overflow: hidden;
    border: clamp(2px, 0.5vw, 9px) solid white;
    box-sizing: border-box;
    margin-top: calc(-1 * clamp(2px, 0.5vw, 9px));
}

.ai-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.score-generator {
    width: 100%;
    overflow: hidden;
    border: clamp(2px, 0.5vw, 9px) solid white;
    box-sizing: border-box;
    margin-top: calc(-1 * clamp(2px, 0.5vw, 9px));
}

.score-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-link {
    display: block;
    width: 100%;
    transition: opacity 0.3s ease;
}

.image-link:hover {
    opacity: 0.9;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile First Approach */
@media (max-width: 480px) {
    .banner {
        height: auto;
        min-height: 50px;
        padding: 8px 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

}

@media (min-width: 481px) and (max-width: 768px) {
    .banner {
        height: auto;
        min-height: 60px;
        padding: 10px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .banner {
        padding-left: clamp(30px, 4vw, 40px);
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .banner {
        padding-left: clamp(40px, 4vw, 52px);
    }
}

@media (min-width: 1441px) {
    .banner {
        padding-left: 1.37cm;
    }
}

/* Prevent horizontal scroll and ensure fluid behavior */
html, body {
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

/* Container queries for future-proofing */
@supports (container-type: inline-size) {
    .banner {
        container-type: inline-size;
    }
}

/* Enhanced image responsiveness */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Improved accessibility for touch devices */
@media (hover: none) and (pointer: coarse) {
    .nav-item:hover .dropdown-content,
    .dropdown:hover .dropdown-content {
        opacity: 0;
        visibility: hidden;
    }
    
    .footer-link:hover,
    .image-link:hover{
        opacity: 1;
    }
}