:root {
  --paper: #ffffff;
  --paper-soft: #f7f7f7;
  --paper-soft-2: #f2f2f2;
  --ink: #111111;
  --text: #141414;
  --muted: #63676f;
  --line: rgba(17, 17, 17, 0.1);
  --line-strong: rgba(17, 17, 17, 0.16);
  --primary: #184377;
  --accent: #f28621;
  --shadow: 0 24px 65px rgba(15, 18, 25, 0.08);
  --radius: 30px;
  --radius-sm: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(24, 67, 119, 0.09), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(242, 134, 33, 0.09), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 55%, #f5f5f5 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(24, 67, 119, 0.02), rgba(17, 17, 17, 0.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(160px, 18vw, 198px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.86rem 1.15rem;
  border-radius: 999px;
  background: var(--ink);
  color: white !important;
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.12);
}

.nav-cta:hover {
  color: white !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
}

.hero h1,
.section-heading h2,
.process-wrap h2,
.recruitment-copy h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  max-width: 10.8ch;
}

.hero-text,
.section-heading p,
.contact-copy > p,
.recruitment-copy p,
.process-steps p,
.service-card p,
.info-card p,
.metric-card span,
.hero-card p,
.logo-wall div,
.form-note {
  color: var(--muted);
}

.hero-text {
  max-width: 62ch;
  font-size: 1.05rem;
  margin: 1.35rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 18px 35px rgba(17, 17, 17, 0.16);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(24, 67, 119, 0.18), 0 8px 22px rgba(242, 134, 33, 0.12);
}

.btn-secondary {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
}

.btn-block {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-points li,
.recruitment-points span,
.hero-card-tags span,
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.hero-panel {
  position: relative;
}

.hero-card,
.metric-card,
.info-card,
.service-card,
.contact-form-card,
.recruitment-card,
.logo-wall div,
.process-steps article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
  border-radius: var(--radius);
}

.hero-card-main {
  position: relative;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(242, 134, 33, 0.18), transparent 30%),
    linear-gradient(145deg, #111111, #1c1c1c 75%);
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-card-main::after {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto auto;
  width: 84px;
  height: 84px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(24, 67, 119, 0.3), rgba(242, 134, 33, 0.16));
}

.card-label {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.3vw, 2.9rem);
  line-height: 1.08;
  max-width: 12ch;
}

.hero-card-main p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 42ch;
}

.hero-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.hero-card-tags span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.metric-card {
  padding: 1.45rem;
  border-radius: var(--radius-sm);
  min-height: 182px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(24, 67, 119, 0.12), rgba(24, 67, 119, 0.04));
  color: var(--primary);
}

.metric-card-alt .metric-badge {
  background: linear-gradient(135deg, rgba(242, 134, 33, 0.12), rgba(242, 134, 33, 0.04));
  color: var(--accent);
}

.metric-badge svg {
  width: 25px;
  height: 25px;
}

.metric-card strong {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  color: var(--primary);
}

.metric-card-alt strong {
  color: var(--accent);
}

.metric-wide {
  grid-column: span 2;
  min-height: auto;
  background: linear-gradient(145deg, #151515, #232323 75%);
  border-color: rgba(255, 255, 255, 0.06);
}

.metric-wide strong,
.metric-wide span {
  color: white;
}

.metric-wide-top {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.metric-dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--primary);
}

.metric-dot-accent {
  background: var(--accent);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.process-wrap h2,
.recruitment-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.agency-grid,
.services-grid {
  display: grid;
  gap: 1rem;
}

.agency-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.service-card,
.contact-form-card {
  padding: 1.6rem;
  border-radius: var(--radius-sm);
}

.info-card h3,
.service-card h3,
.process-steps h3 {
  margin: 0.85rem 0 0.4rem;
  letter-spacing: -0.03em;
}

.info-index,
.process-steps span,
.contact-blocks span {
  color: var(--primary);
  font-weight: 800;
}

.process-wrap {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  align-items: start;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-steps article {
  padding: 1.4rem;
  border-radius: var(--radius-sm);
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.service-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(24, 67, 119, 0.12), rgba(242, 134, 33, 0.12));
  border: 1px solid rgba(24, 67, 119, 0.12);
  color: var(--primary);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-tag {
  padding-inline: 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.service-card ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.service-card li::marker {
  color: var(--accent);
}

.service-card li + li {
  margin-top: 0.45rem;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.logo-wall div {
  min-height: 138px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  letter-spacing: 0.14em;
  font-size: 0.84rem;
  text-transform: uppercase;
}

.recruitment-card {
  border-radius: 32px;
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: center;
}

.recruitment-copy {
  padding: 1rem 1rem 1rem 1.1rem;
}

.recruitment-copy p {
  max-width: 48ch;
}

.recruitment-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1.8rem;
}

.recruitment-visual {
  min-height: 100%;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f6f6f6);
  padding: 1rem;
}

.recruitment-visual img {
  width: 100%;
  height: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.4rem;
  align-items: start;
}

.contact-blocks {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-blocks article {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-blocks article:last-child {
  border-bottom: none;
}

.contact-blocks a {
  font-weight: 700;
  color: var(--ink);
}

.contact-form-card {
  padding: 1.5rem;
  border-radius: 28px;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.contact-form label span {
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: 16px;
  padding: 1rem 1.05rem;
  outline: none;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(24, 67, 119, 0.7);
  box-shadow: 0 0 0 4px rgba(24, 67, 119, 0.09);
  transform: translateY(-1px);
}

.site-footer {
  padding: 1.7rem 0 2.1rem;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: grid;
  gap: 0.6rem;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
}

.footer-logo {
  width: 150px;
  height: auto;
}

.footer-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--primary);
}

.page-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(88px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

.page-glow-1 {
  top: 6%;
  left: -10%;
  background: rgba(24, 67, 119, 0.17);
}

.page-glow-2 {
  right: -8%;
  bottom: 8%;
  background: rgba(242, 134, 33, 0.12);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 60;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .process-wrap,
  .contact-grid,
  .recruitment-card {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agency-grid,
  .process-steps,
  .logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.2rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.96);
    transform-origin: top;
    transform: scaleY(0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .services-grid,
  .agency-grid,
  .process-steps,
  .logo-wall,
  .field-grid,
  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .metric-wide {
    grid-column: auto;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}





.logos-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 2rem;
  cursor: grab;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  user-select: none;
  will-change: transform;
}

.logos-track.is-dragging {
  cursor: grabbing;
}

.logos-track img {
  height: 56px;
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
  pointer-events: none;
  filter: grayscale(0);
  opacity: 0.95;
}