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

body {
  background: #fff;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  min-width: 1440px;
  color: #060606;
}

/* ── Navigation ─────────────────────────────────────── */
.nav {
  height: 80px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 140px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  width: 59px;
  height: 42px;
  position: relative;
  flex-shrink: 0;
}

.nav-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-brand {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #060606;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a,
.nav-links button {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #060606;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 0;
}

.nav-links .nav-contact {
  color: #e34a4a;
}

/* ── Footer Bar (shared) ─────────────────────────────── */
.footer-bar {
  background: #535353;
  height: 80px;
  margin-top: 80px;
  overflow: hidden;
}

.footer-bar-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 141px;
}

.footer-linkedin {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-linkedin-icon {
  background: #f2f2f2;
  border-radius: 4px;
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #535353;
  flex-shrink: 0;
}

.footer-linkedin-text {
  font-size: 14px;
  font-weight: 400;
  color: #f2f2f2;
}

.footer-back-top {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #f2f2f2;
}

.footer-copyright {
  font-size: 14px;
  font-weight: 400;
  color: #f2f2f2;
}

/* ── Contact Modal ───────────────────────────────────── */
.contact-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
  align-items: center;
  justify-content: center;
}

.contact-overlay.active {
  display: flex;
}

.contact-modal {
  background: #fff;
  border: 4px solid #535353;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
  width: 512px;
  position: relative;
  padding: 51px 56px 44px;
  flex-shrink: 0;
}

.contact-close {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 20px;
  font-weight: 600;
  color: #808080;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.contact-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f0f0f;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #808080;
  margin-bottom: 18px;
}

.contact-divider {
  height: 1px;
  background: #e6e6e6;
  margin-bottom: 25px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.contact-btn:last-child { margin-bottom: 0; }

.contact-btn-email {
  background: #d92121;
  color: #fff;
  border: none;
}

.contact-btn-call {
  background: #fff;
  color: #1a1a1a;
  border: 1.5px solid #1a1a1a;
}

.contact-btn-linkedin {
  background: #fff;
  color: #1a1a1a;
  border: 1.5px solid #1a1a1a;
}
