.hero {
  min-height: 100vh;
  padding: 135px 8% 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), var(--bg-main) 48%, var(--bg-deep));
}

.hero-content {
  width: 100%;
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.hero-text h1 {
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--text-main);
}

.hero-text h2 {
  font-size: clamp(26px, 3.5vw, 34px);
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 24px;
}

.hero-certification {
  display: inline-block;
  color: var(--accent);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-focus {
  color: var(--text-soft);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-description {
  max-width: 640px;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 24px;
}

.hero-badges { margin-bottom: 34px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-card {
  width: min(380px, 100%);
  justify-self: end;
  background: linear-gradient(145deg, var(--bg-deep), var(--bg-card));
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-accent);
}

.profile-image-wrapper {
  width: 245px;
  height: 245px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.28);
  overflow: hidden;
}

.profile-image { width: 100%; height: 100%; object-fit: cover; }
.hero-card h3 { font-size: 26px; margin-bottom: 10px; }
.hero-card p { color: var(--text-muted); line-height: 1.6; margin-bottom: 8px; }
.career-label { color: var(--accent) !important; font-weight: 800; margin-top: 14px; }
