:root {
  --ink: #0b1220;
  --deep: #05070b;
  --panel: #eef6ff;
  --text: #111827;
  --muted: #64748b;
  --line: #dbe7f3;
  --cloud: #f7fbff;
  --white: #ffffff;
  --teal: #0ea5e9;
  --green: #2563eb;
  --yellow: #38bdf8;
  --coral: #1d4ed8;
  --blue: #2563eb;
  --violet: #0f172a;
  --shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    sans-serif;
  color: var(--text);
  background: var(--cloud);
  line-height: 1.6;
}

.cursor-canvas {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 10px 14px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue);
  background: #eef6ff;
  box-shadow: inset 0 -2px 0 var(--blue);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: 84px max(24px, calc((100vw - 1180px) / 2)) 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 54px;
  overflow: hidden;
  background: #eef6ff;
  color: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(247, 251, 255, 0.94), rgba(238, 246, 255, 0.78)),
    url("logo.png") center / cover no-repeat;
  filter: saturate(0.55) contrast(1.02);
  transform: scale(1.02);
}

.hero-content h1 {
  background: none;
  color: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, var(--cloud), rgba(247, 251, 255, 0));
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 830px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 13px 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.2);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.26);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--blue);
  background: #eef6ff;
}

.hero-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.hero-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.hero-panel > img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
}

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

.metric-grid div {
  min-height: 112px;
  padding: 16px;
  border-radius: 8px;
  background: #f7fbff;
}

.metric-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-band {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 32px));
  margin: -28px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-band span {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.trust-band span:hover {
  transform: translateY(-4px);
  color: var(--white);
  background: var(--blue);
}

.section,
.split-section,
.cta-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow),
.split-copy p:not(.eyebrow),
.cta-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 286px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 25, 39, 0.06);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 24px 52px rgba(7, 25, 39, 0.13);
}

.icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.service-card:nth-child(2) .icon,
.service-card:nth-child(5) .icon {
  background: var(--green);
  color: var(--white);
}

.service-card:nth-child(3) .icon,
.service-card:nth-child(6) .icon {
  background: var(--yellow);
  color: var(--white);
}

.service-card p,
.industry-list p,
.timeline p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 72px;
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split-section h2,
.split-section h3 {
  color: var(--ink);
}

.split-copy p:not(.eyebrow) {
  color: var(--muted);
}

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

.industry-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbff;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.industry-list article:hover {
  transform: translateX(10px);
  border-color: rgba(37, 99, 235, 0.28);
  background: #eef6ff;
}

.industry-list p {
  color: var(--muted);
}

.process {
  padding-bottom: 78px;
}

.project-section {
  color: var(--text);
}

.project-section .section-heading h2 {
  color: var(--ink);
}

.project-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.project-section {
  width: 100%;
  max-width: none;
  padding: 104px max(16px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, #ffffff, #eef6ff);
}

.project-section .section-heading,
.project-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.project-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card,
.review-card,
.report-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transform-style: preserve-3d;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.project-card::before,
.review-card::before,
.report-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.project-card:hover::before,
.review-card:hover::before,
.report-card:hover::before {
  opacity: 1;
}

.project-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.project-card:hover,
.review-card:hover,
.report-card:hover {
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14);
}

.project-card h3,
.project-card p,
.project-card a,
.project-type,
.review-card p,
.review-card strong,
.stars,
.report-card strong,
.report-card span {
  position: relative;
  z-index: 1;
}

.project-card h3 {
  color: var(--ink);
  margin: 22px 0 12px;
  font-size: 1.45rem;
}

.project-card p {
  color: var(--muted);
}

.project-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 900;
}

.project-type {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.report-section {
  width: min(1180px, calc(100% - 32px));
  margin: 98px auto 0;
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.report-copy {
  padding: 42px;
  border-radius: 8px;
  color: var(--ink);
  background: #eef6ff;
  border: 1px solid var(--line);
}

.report-copy h2 {
  color: var(--ink);
}

.report-copy p:not(.eyebrow) {
  color: var(--muted);
}

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

.report-card {
  min-height: 164px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 25, 39, 0.06);
}

.report-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.18rem;
}

.report-card span {
  color: var(--muted);
}

.compact {
  max-width: 680px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  min-height: 230px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  border-top: 5px solid var(--blue);
  box-shadow: 0 14px 34px rgba(7, 25, 39, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.timeline article:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(7, 25, 39, 0.12);
}

.timeline article:nth-child(2) {
  border-top-color: var(--yellow);
}

.timeline article:nth-child(3) {
  border-top-color: var(--green);
}

.timeline span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.62fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 92px;
  padding: 64px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.08)),
    var(--white);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--text);
  background: var(--white);
  font: inherit;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.reviews {
  padding-top: 42px;
}

.review-card {
  min-height: 238px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 25, 39, 0.06);
}

.stars {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.review-card p {
  color: var(--text);
}

.review-card strong {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.footer p {
  margin: 0;
}

@media (max-width: 960px) {
  .hero,
  .split-section,
  .report-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-panel {
    max-width: 560px;
  }

  .trust-band,
  .service-grid,
  .project-grid,
  .review-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .report-copy,
  .cta-section {
    padding: 42px;
  }
}

@media (max-width: 720px) {
  .nav {
    height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .hero {
    min-height: auto;
    padding: 54px 16px 42px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.3rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .hero-actions,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-band,
  .service-grid,
  .project-grid,
  .review-grid,
  .report-grid,
  .timeline,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 74px 0;
  }

  .service-card,
  .timeline article {
    min-height: auto;
  }

  .split-section,
  .report-section,
  .cta-section {
    width: min(100% - 32px, 1180px);
  }

  .split-section,
  .report-copy,
  .cta-section {
    padding: 28px;
  }

  .footer {
    align-items: flex-start;
  }
}
