@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Work+Sans:wght@400;500;600&display=swap");

:root {
  --ink: #0b1f2a;
  --muted: #50616b;
  --accent: #f28f3b;
  --accent-2: #0b6b6b;
  --accent-3: #1b4b6b;
  --surface: #f7f4ee;
  --surface-2: #eef4f6;
  --white: #ffffff;
  --border: rgba(11, 31, 42, 0.12);
  --shadow: 0 20px 45px rgba(11, 31, 42, 0.12);
  --shadow-soft: 0 10px 25px rgba(11, 31, 42, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body.site-body {
  font-family: "Work Sans", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f7f4ee 0%, #eef3f5 55%, #f7f4ee 100%);
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 143, 59, 0.16), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(11, 107, 107, 0.18), transparent 40%),
    radial-gradient(circle at 80% 75%, rgba(27, 75, 107, 0.16), transparent 45%);
}

.site-main,
footer,
.site-nav {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-nav {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-logo {
  width: 40px;
  height: 40px;
}

.brand-logo--small {
  width: 32px;
  height: 32px;
}

.nav-link {
  color: var(--ink);
  font-weight: 500;
  position: relative;
}

.nav-link.active,
.nav-link:hover {
  color: var(--accent-2);
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
}

.section {
  padding: 4.5rem 0;
}

.section--alt {
  background: var(--surface-2);
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 0.8rem;
}

.hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.hero__panel {
  background: linear-gradient(135deg, rgba(11, 107, 107, 0.12), rgba(242, 143, 59, 0.18));
  border-radius: 28px;
  padding: 3rem;
  box-shadow: var(--shadow);
}

.hero__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.hero__lead {
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(11, 107, 107, 0.1);
  color: var(--accent-2);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero__image-wrap {
  position: relative;
  border-radius: 24px;
  padding: 1rem;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.hero__image {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.stats-grid .stat-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.counter {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent-3);
  font-family: "Space Grotesk", sans-serif;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.service-card .card-img-top {
  height: 150px;
  object-fit: cover;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.service-meta span {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(11, 107, 107, 0.1);
  color: var(--accent-2);
  font-weight: 600;
}

.service-grid-intro {
  margin-bottom: 2rem;
}

.service-grid-intro p {
  margin-bottom: 0;
}

.service-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.services-hero {
  padding: 4.5rem 0 3rem;
}

.services-hero__panel {
  border-radius: 28px;
  padding: 2.8rem;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.services-hero__image {
  width: 100%;
  border-radius: 22px;
  max-height: 320px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(11, 107, 107, 0.12);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.85rem;
}

.services-list {
  display: grid;
  gap: 1.5rem;
}

.service-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.service-thumb {
  width: 100%;
  height: 120px;
  border-radius: 16px;
  object-fit: cover;
}

.service-row h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.insight-card {
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.step-card {
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .service-thumb {
    height: 180px;
  }
}

.service-card .card-body {
  padding: 1.8rem;
}

.service-card .card-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.cta-band {
  margin: 4rem auto 5rem;
  background: linear-gradient(135deg, #0b6b6b, #1b4b6b);
  color: var(--white);
  border-radius: 26px;
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-band .btn {
  background: var(--accent);
  border: none;
  color: #1b1207;
  font-weight: 700;
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
}

.page-hero__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.page-hero__lead {
  color: var(--muted);
  max-width: 60ch;
}

.content-card {
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 2rem;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.values-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.6rem;
}

.values-list li {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.detail-image {
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  max-height: 320px;
  width: 100%;
  object-fit: cover;
}

.job-card {
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  background: var(--white);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.career-hero {
  padding: 4rem 0 3rem;
}

.career-panel {
  border-radius: 26px;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(11, 107, 107, 0.18), rgba(242, 143, 59, 0.12));
  box-shadow: var(--shadow);
}

.career-stats {
  display: grid;
  gap: 1rem;
}

.career-stat {
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.career-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(242, 143, 59, 0.15);
  color: #8a4f1f;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.career-steps {
  display: grid;
  gap: 1.2rem;
}

.career-step {
  border-left: 3px solid var(--accent-2);
  padding-left: 1rem;
}

.benefit-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card {
  border-radius: 18px;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.role-card {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 1.8rem;
  height: 100%;
}

.role-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.role-tags span {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(11, 107, 107, 0.12);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.85rem;
}

.culture-card {
  border-radius: 24px;
  padding: 2rem;
  background: #0b1f2a;
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  height: 100%;
}

.info-tile {
  border-radius: 18px;
  padding: 1.5rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.form-control,
.form-select {
  border-radius: 14px;
  border: 1px solid rgba(11, 31, 42, 0.2);
  padding: 0.7rem 1rem;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(11, 107, 107, 0.2);
  border-color: var(--accent-2);
}

.btn-primary {
  background: var(--accent-2);
  border-color: var(--accent-2);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
}

.btn-primary:hover {
  background: #0a5d5d;
  border-color: #0a5d5d;
}

.btn-outline-primary {
  border-radius: 999px;
  border-color: var(--accent-2);
  color: var(--accent-2);
  font-weight: 600;
}

.btn-outline-primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.btn-secondary {
  border-radius: 999px;
  font-weight: 600;
}

footer {
  background: #0b1f2a;
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0;
}

footer h5 {
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .hero__panel {
    padding: 2.2rem;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .cta-band {
    padding: 2.4rem;
  }
}

@media (max-width: 576px) {
  .hero__actions {
    flex-direction: column;
  }

  .stats-grid .stat-card {
    padding: 1.5rem;
  }
}
