:root {
  --ink-900: #0f1a2b;
  --ink-700: #2b3b4f;
  --ink-500: #556579;
  --ink-300: #9aa8b6;
  --surface-100: #ffffff;
  --surface-200: #f4f6fb;
  --surface-300: #e7edf5;
  --brand-700: #a87400;
  --brand-600: #ffcb11;
  --brand-100: #fff3bf;
  --accent-500: #ffcb11;
  --accent-100: #fff6d2;
  --shadow-soft: 0 22px 50px rgba(15, 26, 43, 0.12);
  --shadow-card: 0 10px 28px rgba(15, 26, 43, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Geist", "Mulish", sans-serif;
  color: var(--ink-700);
  background: radial-gradient(circle at 10% 10%, #eef4ff 0%, #fdfdfd 45%, #f6f1e5 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink-900);
}

p {
  color: var(--ink-500);
}

.navbar {
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 28, 46, 0.08);
}

.custom-hover {
  position: relative;
  color: inherit;
  text-decoration: none;
}

.custom-hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.custom-hover:hover::after {
  width: 100%;
}

.section-padding {
  padding: 90px 0;
}

.section-title {
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
}

.section-subtitle {
  color: var(--ink-500);
  max-width: 660px;
}

.kicker {
  font-weight: 600;
  color: var(--brand-700);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.hero-new {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
}

.hero-new::before {
  content: "";
  position: absolute;
  inset: -10% 40% 20% -20%;
  background: radial-gradient(circle at 40% 40%, rgba(31, 111, 255, 0.2), transparent 65%);
  z-index: 0;
}

.hero-new::after {
  content: "";
  position: absolute;
  inset: 55% -10% -20% 40%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 176, 56, 0.2), transparent 70%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-card {
  background: var(--surface-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-actions .btn {
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
}

.hero-actions .btn-primary {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: var(--ink-900);
  box-shadow: var(--shadow-card);
}

.hero-search {
  background: var(--surface-100);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-search .form-control,
.hero-search .form-select {
  border: 0;
  box-shadow: none;
  padding-left: 8px;
}

.hero-search .form-control {
  flex: 1 1 45%;
  min-width: 180px;
}

.hero-search .form-select {
  flex: 0 0 170px;
}

.hero-search .btn {
  flex: 0 0 auto;
}

.hero-search .form-select {
  background-color: transparent;
}

.hero-search .btn {
  border-radius: 999px;
  padding: 10px 22px;
}

.hero-media {
  position: relative;
  min-height: 440px;
}

.hero-media img {
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.hero-media-main {
  width: 100%;
  height: 440px;
}

.hero-media-float {
  position: absolute;
  right: -4%;
  bottom: -10%;
  width: 220px;
  height: 240px;
  border-radius: 26px;
  border: 6px solid rgba(255, 255, 255, 0.9);
}

.hero-media-card {
  position: absolute;
  left: -6%;
  top: 10%;
  width: 220px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 14px;
  box-shadow: var(--shadow-card);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.stat-card {
  background: var(--surface-100);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-card);
}

.brand-strip {
  background: var(--surface-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 18px 24px;
}

.brand-pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface-200);
  font-weight: 600;
  color: var(--ink-700);
}

.feature-card {
  background: var(--surface-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  border: 1px solid rgba(15, 28, 46, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card {
  background: var(--surface-100);
  border-radius: var(--radius-lg);
  padding: 26px;
  height: 100%;
  box-shadow: var(--shadow-card);
}

.step-index {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--brand-100);
  color: var(--ink-900);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.job-card {
  background: var(--surface-100);
  border-radius: var(--radius-lg);
  padding: 20px;
  height: 100%;
  border: 1px solid rgba(15, 28, 46, 0.06);
  box-shadow: var(--shadow-card);
}

.job-card img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--surface-200);
  color: var(--ink-700);
  font-weight: 600;
  font-size: 0.85rem;
}

.testimonial-card {
  background: var(--surface-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  box-shadow: var(--shadow-card);
}

.testimonial-card img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.cta-band {
  background: linear-gradient(120deg, #f2b400, #ffcb11);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-soft);
}

.cta-band .btn {
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
}

.insight-card {
  background: var(--surface-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
}

.insight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

footer {
  border-top: 1px solid rgba(15, 28, 46, 0.06);
}

@media (max-width: 991px) {
  .hero-new {
    padding: 120px 0 80px;
  }

  .hero-media {
    min-height: 320px;
    margin-top: 30px;
  }

  .hero-media-main {
    height: 320px;
  }

  .hero-media-float {
    width: 160px;
    height: 180px;
    right: 0;
  }

  .hero-media-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}

@media (max-width: 576px) {
  .hero-search {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius-lg);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-band {
    padding: 28px 22px;
  }
}
