:root {
    --primary-color: #52aee5;
    --text-dark: #1c1e21;
    --text-light: #7a828a;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #eaedf0;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 96%;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    padding: 24px 0;
    background: var(--white);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon svg {
    display: block;
    width: 28px;
    height: 32px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text strong {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
}

.logo-text span {
    font-size: 10px;
    color: var(--text-light);
    margin-top: 2px;
    text-transform: lowercase;
}

.nav {
    display: flex;
    gap: 36px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--text-dark);
}

.nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--text-dark);
}

.hero {
    margin-top: 20px;
}

.hero-content {
    display: flex;
    background-color: var(--primary-color);
    border-radius: 24px;
    overflow: hidden;
    min-height: 540px;
    position: relative;
}

.hero-text {
    flex: 1.1;
    padding: 80px 60px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 48px;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 400px;
}

.btn {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--white);
    color: var(--text-dark);
    max-width: max-content;
}

.btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about {
    margin-top: 100px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.about-desc h2 {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-desc p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 40px 120px;
    padding-top: 10px;
    justify-content: end;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.stat-item p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.4;
}

.partners {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-logo {
    font-weight: 700;
    font-size: 18px;
    color: #b0b6bc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-logo svg {
    display: block;
    width: 24px;
    height: 24px;
}

.catalog {
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    gap: 60px;
}

.catalog-header {
    flex: 0 0 320px;
}

.catalog h2 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.subtitle {
    color: var(--text-light);
    margin-bottom: 48px;
    font-size: 15px;
    line-height: 1.6;
}

.catalog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.catalog-cards {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
}

.catalog-cards::-webkit-scrollbar {
    height: 8px;
}

.catalog-cards::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
}

.card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
}

.card-info {
    padding: 16px 0 0 0;
}

.card-info h4 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text-dark);
}

.card-info span {
    color: var(--text-light);
    font-size: 14px;
}

.card-hover {
    transition: var(--transition);
    cursor: pointer;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.how-we-work {
    margin-top: 100px;
    margin-bottom: 100px;
}

.hww-grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.hww-left {
    flex: 0 0 28%;
    display: flex;
    flex-direction: column;
}

.hww-left h2 {
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hww-left .subtitle {
    font-size: 13px;
    line-height: 1.5;
}

.hww-image-wrapper {
    position: relative;
    margin-top: 32px;
}

.hww-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 24px;
}

.hww-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #79a1c1;
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-size: 11px;
    line-height: 1.3;
    box-shadow: 0 10px 30px rgba(121, 161, 193, 0.4);
}

.hww-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hww-step {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.hww-step:first-child {
    padding-top: 0;
}

.hww-step:last-child {
    border-bottom: none;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--text-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.step-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact {
    margin-top: 100px;
    margin-bottom: 100px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-grid {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(82, 174, 229, 0.15);
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    background-color: #eee;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.btn-wa:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(82, 174, 229, 0.2);
}

.contact-form-wrapper {
    flex: 1;
    background-color: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(82, 174, 229, 0.15);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--white);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(82, 174, 229, 0.1);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #3f9bd2;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(82, 174, 229, 0.25);
}

.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 40px 0;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
}

.footer-links h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible,
.slide-in-left.visible,
.slide-in-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .logo-text img {
        height: 28px;
    }

    .menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        background-color: var(--white);
        padding: 16px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        border-radius: 12px;
        margin-top: 12px;
    }

    .nav.active {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        padding: 40px 16px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        margin: 0 auto 32px auto;
    }

    .about-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .catalog {
        flex-direction: column;
        gap: 32px;
    }

    .catalog-cards {
        grid-template-columns: 1fr;
    }

    .hww-grid {
        flex-direction: column;
        gap: 40px;
    }

    .contact-grid {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .contact-form-wrapper, .info-card {
        padding: 24px 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .info-card, .contact-form-wrapper {
        min-width: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
