:root {
  --ink: #101820;
  --ink-2: #172330;
  --panel: #1d2a36;
  --muted: #647586;
  --line: #dbe3ea;
  --soft: #f4f7f9;
  --white: #ffffff;
  --blue: #1d80c3;
  --blue-2: #0f5f99;
  --green: #30a66c;
  --aqua: #95d5f5;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.16);
  --radius: 8px;
  --max: 1180px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(219, 227, 234, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  width: 205px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #293746;
  font-size: 0.89rem;
  font-weight: 800;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue-2);
}

.nav-cta,
.btn,
.submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 4px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  min-height: 42px;
  padding: 0 17px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
}

.nav-cta:hover,
.btn-primary:hover,
.submit:hover {
  background: var(--blue-2);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero {
  min-height: 560px;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.06);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 14, 22, 0.92), rgba(7, 14, 22, 0.7) 48%, rgba(7, 14, 22, 0.24)),
    linear-gradient(0deg, rgba(7, 14, 22, 0.72), rgba(7, 14, 22, 0.08) 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 142px) 0 36px;
}

.page-hero .hero-content {
  padding: clamp(64px, 8vw, 104px) 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 0.77rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .section-kicker {
  color: var(--aqua);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 930px;
  color: var(--white);
  font-size: clamp(2.55rem, 6.4vw, 5.7rem);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.45rem, 5.2vw, 4.65rem);
}

.hero p {
  max-width: 750px;
  margin: 22px 0 0;
  color: #d8e6f0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.btn {
  padding: 0 22px;
  border: 1px solid transparent;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 35px rgba(29, 128, 195, 0.28);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(42px, 7vw, 80px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 14, 22, 0.68);
  backdrop-filter: blur(12px);
}

.trust-item {
  min-height: 88px;
  padding: 20px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--white);
}

.trust-item span {
  display: block;
  margin-top: 5px;
  color: #afbecc;
  font-size: 0.88rem;
}

.section {
  padding: clamp(44px, 5.5vw, 72px) 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.56fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 26px;
}

.section-head h2,
.split h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-head p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-dark .section-head p,
.section-dark .lead,
.section-dark p {
  color: #b9c7d3;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
  gap: 52px;
  align-items: center;
}

.copy p {
  margin: 0 0 18px;
  color: #4f5f6e;
  font-size: 1.05rem;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 128, 195, 0.34);
  box-shadow: var(--shadow);
}

.card img,
.visual-card img,
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-media {
  aspect-ratio: 16 / 10;
  background: #d7e0e8;
}

.card-body {
  padding: 24px;
}

.card-body h3,
.process-card h3,
.dark-card h3 {
  font-size: 1.12rem;
}

.card-body p,
.process-card p,
.dark-card p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue-2);
  font-weight: 900;
}

.text-link::after {
  content: " ->";
}

.photo-placeholder {
  min-height: 230px;
  display: grid;
  align-items: end;
  padding: 20px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(29, 128, 195, 0.32), rgba(48, 166, 108, 0.12)),
    repeating-linear-gradient(135deg, #1b2834 0 12px, #223240 12px 24px);
}

.photo-placeholder span {
  max-width: 220px;
  font-weight: 900;
}

.visual-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 14, 22, 0.92), rgba(7, 14, 22, 0.12) 70%);
}

.visual-card .caption {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: 24px;
}

.visual-card h3 {
  color: var(--white);
}

.visual-card p {
  margin: 9px 0 0;
  color: #c2d0dc;
}

.dark-card,
.process-card {
  padding: 26px;
  border-radius: var(--radius);
}

.dark-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.process-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.number {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.timeline-step {
  position: relative;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.timeline-step:last-child {
  border-right: 0;
}

.timeline-step::before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(48, 166, 108, 0.13);
}

.stats-band {
  background: linear-gradient(135deg, #0b1118, #162433);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.stat {
  padding: 34px;
  background: rgba(255, 255, 255, 0.04);
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: #bbcad6;
}

.industry-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--panel);
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(149, 213, 245, 0.13);
  color: var(--aqua);
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.pricing-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.07);
}

.pricing-card.featured {
  border-color: rgba(29, 128, 195, 0.45);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #e3f2fb;
  color: var(--blue-2);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-card ul,
.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li,
.check-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 25px;
  color: #455462;
}

.pricing-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--ink);
  background: #edf3f7;
}

tr:last-child td {
  border-bottom: 0;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #314253;
  font-weight: 850;
}

.project-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.project-card > .photo-placeholder {
  min-height: 430px;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 14, 22, 0.94), rgba(7, 14, 22, 0.12) 68%);
}

.project-info {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: 24px;
}

.project-info h3 {
  color: var(--white);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.meta span {
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #cde7f6;
  font-size: 0.72rem;
  font-weight: 850;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.68fr);
  gap: 34px;
  align-items: start;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: #344453;
  font-size: 0.82rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ccd7df;
  border-radius: 4px;
  background: #fbfcfd;
  color: var(--ink);
  padding: 13px 14px;
  outline: 0;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(29, 128, 195, 0.13);
}

.submit {
  grid-column: 1 / -1;
  border: 0;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
}

.contact-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.contact-card h2 {
  color: var(--white);
}

.contact-card a,
.contact-card address {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #edf7fc;
  font-style: normal;
}

.contact-card .contact-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--aqua);
}

.contact-card .contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-dark .check-list li,
.section-dark .pricing-card li {
  color: #d5e1ea;
}

.final-cta {
  text-align: center;
  background: linear-gradient(135deg, #0b1118, #162433);
}

.section-soft + .section,
.section + .section-soft,
.section + .section {
  padding-top: clamp(40px, 5vw, 60px);
}

.intro-risk-section {
  padding-top: clamp(46px, 5.5vw, 66px);
  padding-bottom: clamp(42px, 5vw, 58px);
}

.proof-section {
  padding-top: clamp(44px, 5vw, 60px);
  padding-bottom: clamp(28px, 3.5vw, 38px);
}

.why-section {
  padding-top: clamp(34px, 4vw, 44px);
}

.proof-section + .why-section {
  padding-top: clamp(34px, 4vw, 44px);
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.final-cta p {
  max-width: 680px;
  margin: 16px auto 28px;
  color: #c3d1dc;
}

.final-cta .btn {
  margin-top: 28px;
}

.final-cta p + .btn {
  margin-top: 0;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner img {
  width: 176px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1050px) {
  .nav-links {
    gap: 13px;
    font-size: 0.81rem;
  }

  .brand img {
    width: 180px;
  }

  .grid-4,
  .grid-3,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --header: 66px;
  }

  .container,
  .hero-content {
    width: min(100% - 28px, var(--max));
  }

  .brand img {
    width: 166px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--header);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px 14px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 30px rgba(16, 24, 32, 0.11);
    transform: translateY(-125%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px 4px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .page-hero {
    min-height: 580px;
  }

  .trust-bar,
  .section-head,
  .split,
  .grid-2,
  .grid-3,
  .grid-4,
  .timeline,
  .stats,
  .compare,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .timeline-step {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .timeline-step {
    border-bottom-color: var(--line);
  }

  .trust-item:last-child,
  .timeline-step:last-child {
    border-bottom: 0;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .btn {
    width: 100%;
  }

  .card-body,
  .process-card,
  .dark-card,
  .industry-card,
  .project-info,
  .pricing-card {
    padding: 20px;
  }
}
