:root {
  --hr-bg: #f5fafc;
  --hr-bg-alt: #ecf7f8;
  --hr-surface: #ffffff;
  --hr-surface-soft: #f7fbff;
  --hr-surface-alt: #f0f6ff;
  --hr-border-subtle: rgba(148, 163, 184, 0.3);
  --hr-border-strong: rgba(148, 163, 184, 0.7);
  --hr-primary: #16a34a;
  --hr-primary-soft: rgba(22, 163, 74, 0.12);
  --hr-primary-strong: #15803d;
  --hr-accent: #0ea5e9;
  --hr-text-main: #0f172a;
  --hr-text-soft: #334155;
  --hr-text-muted: #64748b;
  --hr-danger: #e11d48;
  --hr-radius-lg: 1.5rem;
  --hr-radius-md: 1rem;
  --hr-radius-pill: 999px;
  --hr-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #e0f2fe 0, #f5fafc 50%, #e2f3f5 100%);
  color: var(--hr-text-main);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.hr-container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.hr-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(14px);
  background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.92),
      rgba(248, 250, 252, 0.96)
    )
    border-box;
}

.hr-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}

.hr-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hr-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.85rem;
  background: radial-gradient(circle at 20% 0%, #16a34a, #0ea5e9);
  color: #f9fafb;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 14px 40px rgba(56, 189, 248, 0.45);
}

.hr-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hr-logo-title {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hr-logo-subtitle {
  font-size: 0.7rem;
  color: var(--hr-text-muted);
}

.hr-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.hr-nav a {
  color: var(--hr-text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
}

.hr-nav a:hover {
  color: var(--hr-text-main);
  border-color: rgba(148, 163, 184, 0.55);
}

.hr-nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--hr-text-main);
}

.hr-nav-cta:hover {
  border-color: var(--hr-primary);
  background: rgba(226, 232, 240, 0.8);
}

.hr-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.3rem;
  margin-left: 0.5rem;
  cursor: pointer;
}

.hr-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--hr-text-main);
}

.hr-hero {
  padding: 4.5rem 0 3.75rem;
}

.hr-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.hr-hero-copy h1 {
  font-size: clamp(2.4rem, 3vw, 3rem);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hr-hero-copy p {
  margin: 0 0 1.5rem;
  color: var(--hr-text-soft);
  max-width: 34rem;
}

.hr-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.75rem;
  border-radius: var(--hr-radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--hr-text-main);
  font-size: 0.75rem;
  margin-bottom: 0.85rem;
  background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.12), transparent)
    #eff6ff;
}

.hr-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #16a34a, #0ea5e9);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.hr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.hr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--hr-radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.hr-btn-primary {
  background: linear-gradient(135deg, #16a34a, #0ea5e9);
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(34, 197, 94, 0.35);
}

.hr-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.48);
}

.hr-btn-ghost {
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--hr-text-main);
  background: #ffffff;
}

.hr-btn-ghost:hover {
  border-color: var(--hr-primary);
  background: #e0f2fe;
}

.hr-btn-full {
  width: 100%;
}

.hr-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.4rem;
}

.hr-hero-stats div {
  display: flex;
  flex-direction: column;
}

.hr-stat-number {
  font-size: 1.2rem;
  font-weight: 600;
}

.hr-stat-label {
  font-size: 0.8rem;
  color: var(--hr-text-muted);
}

.hr-hero-card {
  position: relative;
}

.hr-hero-card::before {
  content: "";
  position: absolute;
  inset: -1.5rem;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(34, 197, 94, 0.16),
      transparent 65%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(56, 189, 248, 0.2),
      transparent 55%
    );
  opacity: 0.5;
  filter: blur(5px);
  z-index: -1;
}

.hr-hero-flow {
  border-radius: var(--hr-radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at 0 0, #eff6ff, #ffffff) padding-box,
    radial-gradient(circle at 100% 0, rgba(34, 197, 94, 0.4), transparent 70%)
      border-box;
  padding: 1.6rem 1.7rem;
  box-shadow: var(--hr-shadow-soft);
}

.hr-hero-flow h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.hr-hero-flow ol {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  display: grid;
  gap: 0.75rem;
}

.hr-hero-flow li {
  padding: 0.6rem 0.75rem;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.hr-step-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
}

.hr-step-desc {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.78rem;
  color: var(--hr-text-muted);
}

.hr-hero-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--hr-text-muted);
  border-radius: 0.9rem;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  padding: 0.7rem 0.75rem;
  background: #ecfeff;
}

.hr-section {
  padding: 3.25rem 0;
}

.hr-section-alt {
  background: radial-gradient(
      circle at top,
      #e0f2fe,
      #f5fafc
    ),
    #f5fafc;
}

.hr-section-title {
  margin: 0 0 2.2rem;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.hr-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.hr-section p {
  color: var(--hr-text-soft);
}

.hr-highlights {
  display: grid;
  gap: 0.9rem;
}

.hr-highlight-card {
  border-radius: var(--hr-radius-md);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.9rem 1rem;
  background: radial-gradient(circle at 0 0, #dcfce7, #ffffff);
}

.hr-highlight-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}

.hr-highlight-card p {
  margin: 0;
  font-size: 0.85rem;
}

.hr-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hr-service-card {
  border-radius: var(--hr-radius-md);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.1rem 1.05rem;
  background: radial-gradient(
      circle at 0 0,
      rgba(56, 189, 248, 0.18),
      transparent 55%
    ),
    #ffffff;
}

.hr-service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.hr-service-card p {
  margin: 0 0 0.7rem;
  font-size: 0.86rem;
}

.hr-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: var(--hr-text-muted);
}

.hr-service-card li {
  position: relative;
  padding-left: 0.9rem;
}

.hr-service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--hr-primary-strong);
}

.hr-timeline {
  display: grid;
  gap: 1.2rem;
  max-width: 46rem;
  margin-inline: auto;
}

.hr-timeline-item {
  position: relative;
  padding: 0.85rem 0.9rem 0.9rem 2.6rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #ffffff;
}

.hr-timeline-item::before {
  content: "";
  position: absolute;
  left: 1.3rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(148, 163, 184, 0.6),
    rgba(148, 163, 184, 0)
  );
}

.hr-timeline-step {
  position: absolute;
  left: 0.55rem;
  top: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.75rem;
  background: radial-gradient(circle at 30% 0%, #16a34a, #0ea5e9);
  color: #f9fafb;
  font-size: 0.85rem;
  font-weight: 600;
}

.hr-timeline-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.hr-timeline-item p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--hr-text-soft);
}

.hr-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  color: var(--hr-text-soft);
}

.hr-list li {
  margin-bottom: 0.25rem;
}

.hr-partner-cta {
  border-radius: var(--hr-radius-md);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.2rem 1.1rem;
  background: radial-gradient(
      circle at 0 0,
      #bbf7d0,
      transparent 55%
    ),
    #ffffff;
  box-shadow: 0 18px 50px rgba(22, 163, 74, 0.25);
}

.hr-partner-cta h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.hr-partner-cta p {
  margin: 0 0 0.75rem;
  font-size: 0.86rem;
}

.hr-badges {
  list-style: none;
  padding: 0;
  margin: 0 0 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hr-badges li {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.75rem;
  background: #f8fafc;
}

.hr-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.hr-contact-details p {
  margin: 0 0 0.6rem;
}

.hr-form {
  border-radius: var(--hr-radius-md);
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1.2rem 1.1rem 1.1rem;
  background: radial-gradient(
      circle at 0 0,
      rgba(34, 197, 94, 0.18),
      transparent 55%
    ),
    #ffffff;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}

.hr-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.hr-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.7rem;
}

.hr-field label {
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
  color: var(--hr-text-soft);
}

.hr-field input,
.hr-field select,
.hr-field textarea {
  padding: 0.5rem 0.55rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #ffffff;
  color: var(--hr-text-main);
  font-size: 0.85rem;
  outline: none;
}

.hr-field input::placeholder,
.hr-field textarea::placeholder {
  color: var(--hr-text-muted);
}

.hr-field input:focus,
.hr-field select:focus,
.hr-field textarea:focus {
  border-color: var(--hr-primary);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.35);
}

.hr-form-note {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--hr-text-muted);
}

.hr-legal-note {
  font-size: 0.78rem;
  color: var(--hr-text-muted);
  margin-top: 0.6rem;
}

.hr-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.1rem 0 1.4rem;
  background: radial-gradient(
      circle at top,
      #e2f3f5,
      #f8fafc
    ),
    #f8fafc;
}

.hr-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--hr-text-muted);
}

.hr-footer-tagline {
  max-width: 28rem;
}

@media (max-width: 960px) {
  .hr-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hr-hero-card {
    order: -1;
  }

  .hr-section-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hr-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hr-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .hr-header-inner {
    padding-block: 0.75rem;
  }

  .hr-nav {
    position: absolute;
    right: 0.8rem;
    top: 3.2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.7rem 0.9rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.55);
    background: radial-gradient(
        circle at 0 0,
        rgba(34, 197, 94, 0.3),
        transparent 60%
      ),
      rgba(15, 23, 42, 0.98);
    transform-origin: top right;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .hr-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .hr-nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .hr-hero {
    padding-top: 3.3rem;
  }

  .hr-hero-copy h1 {
    font-size: 1.9rem;
  }

  .hr-services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hr-form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .hr-footer-inner {
    align-items: flex-start;
  }
}
