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

html {
    overflow-x: hidden;
}

body {
    background-color: white;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

header {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}

.logo {
    height: 52px;
    width: auto;
}

main {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero {
    display: grid;
    gap: 20px;
}

.hero h1 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero p {
    font-size: 24px;
    font-weight: 300;
    max-width: 540px;
    line-height: 1.5;
}

.hero p strong {
    font-weight: 600;
}

.hero .contact {
    margin-top: 10px;
    font-size: 16px;
}

.hero .contact a {
    color: #ff885c;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hero .contact a:hover {
    text-decoration: none;
    cursor: pointer;
}

.logo-carousel {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 40px 20px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.logo-carousel.loaded {
    opacity: 1;
}

.logo-track {
    display: flex;
    gap: 60px;
    width: max-content;
}

.logo-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.logo-track img:hover {
    opacity: 1;
}

footer {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.7;
}
