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


html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fafafa;
    color: #1a1a1a;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 100;
    justify-content: center;
}

.container {
    height: 100vh;
    padding-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding-left: 5%;
    padding-right: 5%;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

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

nav a.active {
  color: #000;
}


.left-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding-right: 2rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
}

.headline {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1;
    color: #1a1a1a;
    margin: 0;
}

.subtitle {
    font-size: clamp(1.1rem, 1vw, 1.4rem);
    font-weight: 300;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 500px;
}

.right-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem 0;
}

.image-container {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    height: 80%;
    margin-bottom: 5%;
}

.image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

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

@media (max-width: 968px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 2rem;
        padding: 90px 5% 2rem;
}

    .left-section {
        padding-right: 0;
        justify-content: flex-end;
}

    .right-section {
        padding: 0;
        align-items: flex-start;
    }

    .image-container {
        max-width: 350px;
        max-height: 400px;
    }

    .nav-links {
        gap: 1.5rem;
    }
      }

@media (max-width: 640px) {
    nav {
        height: 60px;
        padding: 0 4%;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .container {
        padding: 70px 4% 1.5rem;
        gap: 1.5rem;
    }

    .headline {
        font-size: clamp(3rem, 12vw, 4.5rem);
    }

    .subtitle {
        font-size: 1rem;
    }

    .image-container {
        max-width: 280px;
        max-height: 350px;
    }
}



      