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

body {
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: 'Open Sans', sans-serif;
}

.card {
  width: 620px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border-radius: 2px;
  overflow: hidden;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  padding: 18px 28px;
  background: #fff;
  border-bottom: 1px solid #ececec;
}

.nav .logo img {
  height: 64px;
  display: block;
}

/* ── HERO BANNER ── */
.hero {
  position: relative;
  background: #9a9080;
  min-height: 180px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 36px 36px 36px 36px;
}

.hero-text { flex: 1; z-index: 2; max-width: 55%; }

.hero-text h2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
}

.hero-text p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #555;
  border: none;
  padding: 10px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.btn-contact:hover { background: #333; color: #fff; }

.btn-contact svg { width: 14px; height: 14px; fill: currentColor; }

/* Agent illustration */
.hero-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.hero-img-circle {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
  margin-bottom: 15%;
  background: radial-gradient(ellipse at 50% 35%, #c0bab0 0%, #8a8070 100%);
  position: relative;
  overflow: hidden;
}

.hero-img-circle svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ── FEATURES STRIP ── */
.features {
  display: flex;
  padding: 28px 28px 24px;
  gap: 28px;
  background: #fff;
}

.feature { flex: 1; }

.feature h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #222;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-country {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9080;
}

.contact-company {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #222;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.feature p {
  font-size: 11.5px;
  color: #777;
  line-height: 1.7;
}

.contact-phone {
  font-size: 11.5px;
  color: #444;
  font-weight: 600;
  margin-top: 4px;
}
