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

:root {
  --bg: #f6f8fb;
  --bg-alt: #eef2f7;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --line: #d8e0ea;
  --brand: #ff6b35;
  --brand-dark: #d84f1f;
  --teal: #00a7a0;
  --teal-soft: #c7f2ef;
}

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

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
  line-height: 1.65;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

p,
li {
  color: var(--muted);
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(246, 248, 251, 0.92);
  border-bottom: 1px solid #e5ebf2;
}

.nav-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand strong,
.brand span,
.brand-text {
  display: none;
}

.logo {
  width: 220px;
  height: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
}

.nav-links a {
  text-decoration: none;
  color: #1e293b;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: #dbe4ef;
  background: #ffffff;
  color: var(--brand-dark);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #e4ebf4;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(6, 23, 43, 0.86) 0%, rgba(6, 23, 43, 0.62) 38%, rgba(6, 23, 43, 0.45) 100%),
    radial-gradient(circle at 88% 18%, rgba(255, 107, 53, 0.2), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: end;
  padding: 66px 0;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #f2f7ff;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5.8vw, 5.2rem);
  max-width: 800px;
}

.hero-copy p {
  margin-top: 16px;
  color: #e6edf8;
  font-size: 1.05rem;
  max-width: 700px;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #dbe4ef;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 22px 42px rgba(8, 24, 46, 0.25);
}

.hero-panel h3 {
  margin-bottom: 8px;
}

.metric-list {
  margin-top: 10px;
  list-style: none;
  display: grid;
  gap: 9px;
}

.metric-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.95rem;
  border-bottom: 1px dashed #cbd7e5;
  padding-bottom: 7px;
}

.btn {
  display: inline-block;
  margin-top: 18px;
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  padding: 11px 20px;
  background: linear-gradient(120deg, var(--brand), var(--brand-dark));
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 22px rgba(216, 79, 31, 0.28);
  font-weight: 800;
  transition: transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 62px 0;
}

.section-soft {
  background: var(--bg-alt);
  border-top: 1px solid #dce5ef;
  border-bottom: 1px solid #dce5ef;
}

.section-head {
  margin-bottom: 20px;
}

.lead {
  max-width: 860px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card,
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  position: relative;
}

.card::after,
.panel::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--teal), var(--brand));
}

.card h3,
.panel h3 {
  margin-bottom: 8px;
}

.visual-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.visual-card,
.service-card,
.culture-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.visual-card img,
.service-card img,
.culture-card img,
.hero-banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.visual-card img {
  height: 230px;
}

.visual-card .caption,
.service-card .content,
.culture-card .content {
  padding: 14px;
}

.logo-ribbon {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-chip {
  background: var(--teal-soft);
  color: #0f766e;
  border: 1px solid #9ce7e3;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 700;
  font-size: 0.83rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.bullets {
  margin-left: 20px;
  display: grid;
  gap: 8px;
}

.case-strip {
  display: grid;
  gap: 12px;
}

.case-item {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand);
  border-radius: 12px;
  padding: 14px;
}

.case-item h3 {
  margin-bottom: 6px;
}

.page-title {
  padding: 50px 0 20px;
}

.page-title h1 {
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
}

.hero-banner {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.hero-banner img {
  height: 330px;
}

.service-grid,
.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card img {
  height: 180px;
}

.culture-card img {
  height: 150px;
}

.job-list {
  display: grid;
  gap: 14px;
}

.job-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.job-main {
  flex: 1;
}

.job-meta {
  color: #8a4f29;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 7px;
}

.job-btn {
  margin-top: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd9e5;
  border-radius: 9px;
  padding: 10px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 167, 160, 0.16);
}

.note-strip {
  margin-top: 16px;
  border: 1px solid #ffd6c7;
  background: #fff1eb;
  color: #a63f1d;
  border-radius: 10px;
  padding: 12px;
}

.map-embed {
  width: 100%;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-top: 12px;
}

.footer {
  margin-top: 20px;
  background: linear-gradient(120deg, #0b1524, #10243a);
  color: #dbe8f8;
}

.footer .container {
  padding: 16px 0;
  text-align: center;
}

.site-footer {
  margin-top: 32px;
  background: linear-gradient(120deg, #0b1524, #10243a);
  color: #dbe8f8;
  padding: 36px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.footer-brand {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-bottom: 10px;
}

.footer-text {
  color: #dbe8f8;
  max-width: 320px;
}

.footer-links,
.footer-contact {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.footer-links a {
  color: #dbe8f8;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 22px;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(219, 232, 248, 0.2);
  text-align: center;
  color: #dbe8f8;
}

@media (max-width: 920px) {
  .nav-shell {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-content,
  .grid-3,
  .visual-band,
  .story-grid,
  .service-grid,
  .culture-grid,
  .split,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .job-card {
    flex-direction: column;
  }
}
