:root {
    --primary: #212121;
    --accent: #314584;
    --gray: #787878;
    --font-title: 'Playfair Display', serif;
    --font-main: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--primary); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.nav { display: flex; justify-content: space-between; align-items: center; padding: 40px 0; }
.nav__list { display: flex; list-style: none; gap: 40px; align-items: center; }
.nav__list a { text-decoration: none; color: var(--primary); font-weight: 500; }
.btn-contact { background: var(--accent); color: #fff !important; padding: 12px 25px; }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(40px); transition: 1s all ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* HERO */
.hero { padding: 60px 0; }
.hero__title { font-family: var(--font-title); font-size: 72px; margin-bottom: 40px; }
.hero__image-wrapper { position: relative; }
.hero__img { width: 100%; height: 600px; object-fit: cover; }
.hero__stats { position: absolute; bottom: -50px; right: 0; background: var(--accent); color: #fff; display: flex; padding: 40px; gap: 50px; }
.hero__stats h3 { font-size: 36px; }

/* SECTIONS */
.section-label { display: block; font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; font-weight: 600; }
.section-title { font-family: var(--font-title); font-size: 40px; margin-bottom: 30px; }

.about { display: flex; gap: 100px; padding: 150px 0; align-items: center; }
.about img { width: 100%; }

.services__list { border-top: 1px solid #ddd; margin-top: 50px; }
.service-item { display: flex; justify-content: space-between; padding: 40px 0; border-bottom: 1px solid #ddd; }

.teams__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.team-card img { width: 100%; height: 400px; object-fit: cover; margin-bottom: 20px; }

/* FOOTER */
.footer { background: #fff; padding: 100px 0; border-top: 1px solid #eee; }
.footer__flex { display: flex; justify-content: space-between; }
.input-group { border-bottom: 1px solid var(--primary); display: flex; padding: 10px 0; width: 300px; }
.input-group input { border: none; outline: none; width: 100%; }
.input-group button { border: none; background: none; cursor: pointer; font-size: 20px; }

/* MOBILE */
@media (max-width: 768px) {
    .nav__list { display: none; }
    .hero__title { font-size: 40px; }
    .hero__stats { position: static; width: 100%; flex-direction: column; }
    .about { flex-direction: column; }
    .teams__grid { grid-template-columns: 1fr; }
    .footer__flex { flex-direction: column; gap: 50px; }
}