:root {
  --ink: #071523;
  --muted: #5d6b7c;
  --white: #ffffff;
  --blue: #0b8fd3;
  --blue-dark: #075da8;
  --cyan: #20d0ee;
  --green: #71d64d;
  --orange: #f59e0b;
  --purple: #7c3aed;
  --rose: #e11d48;
  --line: rgba(7, 21, 35, 0.1);
  --shadow: 0 24px 70px rgba(7, 21, 35, 0.14);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Animated sticky light contrast header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96),
    rgba(241, 250, 255, 0.94),
    rgba(248, 255, 244, 0.94),
    rgba(255, 255, 255, 0.96)
  );
  background-size: 260% 260%;
  animation: headerGradientMove 12s ease-in-out infinite, headerDrop 0.7s ease both;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7, 21, 35, 0.09);
  box-shadow: 0 12px 34px rgba(7, 21, 35, 0.08);
}

.header-glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--orange), var(--purple), var(--cyan));
  background-size: 260% 100%;
  animation: glowMove 5s linear infinite;
}

@keyframes headerGradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

@keyframes glowMove {
  from { background-position: 0% 50%; }
  to { background-position: 260% 50%; }
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #020b12;
  padding: 5px;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(7, 21, 35, 0.18);
  overflow: hidden;
  flex: 0 0 auto;
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  min-width: 0;
}

.brand-text small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  line-height: 1.1;
}

.brand-text span {
  font-size: clamp(0.94rem, 1.7vw, 1.17rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding: 9px 13px;
  border-radius: 999px;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  background: currentColor;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-services {
  color: #075da8;
  background: rgba(11, 143, 211, 0.1);
}

.nav-about {
  color: #15803d;
  background: rgba(113, 214, 77, 0.13);
}

.nav-industries {
  color: #b45309;
  background: rgba(245, 158, 11, 0.13);
}

.nav-process {
  color: #6d28d9;
  background: rgba(124, 58, 237, 0.12);
}

.nav-contact {
  color: #be123c;
  background: rgba(225, 29, 72, 0.11);
}

.nav-links a:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
  box-shadow: 0 10px 24px rgba(7, 21, 35, 0.09);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--cyan), var(--blue-dark));
  color: white;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(8, 110, 184, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(8, 110, 184, 0.3);
}

.menu-toggle {
  display: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  place-items: center;
  background: #fff;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--ink);
  display: block;
  border-radius: 99px;
}

.menu-button::before {
  transform: translateY(-6px);
}

.menu-button::after {
  transform: translateY(6px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 211, 238, 0.24), transparent 32%),
    radial-gradient(circle at 82% 20%, rgba(111, 212, 79, 0.2), transparent 28%),
    linear-gradient(135deg, #f8fdff 0%, #eef9ff 52%, #f4fff1 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 21, 35, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 21, 35, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-content {
  animation: fadeUp 0.8s ease both;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(11, 143, 211, 0.1);
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(111, 212, 79, 0.15);
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
  margin-bottom: 24px;
  max-width: 850px;
}

h1 span {
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: #4e5f72;
  max-width: 670px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #536477;
  font-weight: 800;
  font-size: 0.94rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 99px;
  background: rgba(111, 212, 79, 0.16);
  color: #2c9a22;
  display: grid;
  place-items: center;
  font-weight: 950;
}

.hero-panel {
  position: relative;
  border-radius: 38px;
  padding: 28px;
  background: linear-gradient(145deg, #071523, #0b253a);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: fadeUp 0.9s 0.12s ease both;
  display: grid;
  gap: 0;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -80px -90px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.55), transparent 66%);
}

.logo-card {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.logo-card img {
  width: min(430px, 84%);
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.28));
}

.floating-card {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  margin: 18px 0 0;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 249, 255, 0.94)),
    radial-gradient(circle at top right, rgba(113, 214, 77, 0.18), transparent 38%);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.card-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(11, 143, 211, 0.1);
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  max-width: 440px;
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
  color: #071523;
}

.floating-card p {
  max-width: 470px;
  margin-top: 9px;
  color: #526174;
  font-size: 0.95rem;
}

.card-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.card-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #ffffff;
  color: #26374a;
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(7, 21, 35, 0.08);
}

.card-points span::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(113, 214, 77, 0.18);
  color: #15803d;
  font-size: 0.72rem;
  font-weight: 950;
}

.metrics {
  transform: translateY(36px);
  position: relative;
  z-index: 2;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.metric {
  padding: 20px;
  border-radius: 20px;
  background: #f8fcff;
}

.metric strong {
  display: block;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--blue-dark);
}

.metric span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 800;
}

section {
  padding: 104px 0;
}

.section-head {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 950;
  font-size: 0.78rem;
  margin-bottom: 12px;
  color: var(--blue);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.06rem;
}

.services {
  padding-top: 132px;
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 211, 238, 0.24), transparent 30%),
    linear-gradient(135deg, #eaf8ff 0%, #ffffff 54%, #eef7ff 100%);
}

.services .kicker {
  color: var(--blue-dark);
}

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

.service-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 143, 211, 0.16);
  box-shadow: 0 18px 48px rgba(7, 21, 35, 0.07);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.12);
}

.icon,
.mini-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 950;
  background: linear-gradient(135deg, var(--cyan), var(--blue-dark));
  margin-bottom: 22px;
}

.service-card:nth-child(2n) .icon {
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.service-card h3 {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  margin-bottom: 9px;
}

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

.about {
  background:
    radial-gradient(circle at 15% 10%, rgba(113, 214, 77, 0.25), transparent 28%),
    linear-gradient(135deg, #061521 0%, #082235 50%, #0f3b2e 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-visual {
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 32px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.about-visual img {
  width: min(370px, 100%);
  margin: auto;
}

.about h2,
.contact h2 {
  color: #fff;
}

.about p,
.contact p {
  color: #c8d5e3;
  margin-bottom: 18px;
}

.light-kicker {
  color: #9df073;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.check-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  color: #eaf4ff;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(111, 212, 79, 0.18);
  color: var(--green);
  font-weight: 950;
}

.industries {
  background:
    radial-gradient(circle at 75% 8%, rgba(245, 158, 11, 0.26), transparent 27%),
    linear-gradient(135deg, #fff3dd 0%, #fffaf0 45%, #f8fbff 100%);
}

.industries .kicker {
  color: #b45309;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.pill {
  min-height: 96px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(245, 158, 11, 0.22);
  font-weight: 900;
  color: #26374a;
  box-shadow: 0 14px 34px rgba(7, 21, 35, 0.05);
}

.process {
  background:
    radial-gradient(circle at 20% 0%, rgba(124, 58, 237, 0.20), transparent 27%),
    linear-gradient(135deg, #f0e7ff 0%, #ffffff 58%, #f9f5ff 100%);
}

.process .kicker {
  color: #6d28d9;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step {
  counter-increment: step;
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(124, 58, 237, 0.07);
}

.step::before {
  content: "0" counter(step);
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(124, 58, 237, 0.11);
  color: #6d28d9;
  font-weight: 950;
  margin-bottom: 20px;
}

.step h3 {
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

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

.why {
  background: linear-gradient(135deg, #f4fff1, #f9fdff);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.why-card {
  padding: 34px;
  border-radius: 34px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.feature-list {
  display: grid;
  gap: 16px;
}

.feature {
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
}

.feature .mini-icon {
  margin: 0;
}

.feature b {
  display: block;
  margin-bottom: 4px;
}

.feature p {
  color: var(--muted);
  font-size: 0.96rem;
}

.testimonials {
  background: #ffffff;
}

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

.quote {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(7, 21, 35, 0.06);
}

.quote p {
  color: #45556a;
  margin-bottom: 20px;
}

.quote strong {
  display: block;
}

.quote span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact {
  background:
    radial-gradient(circle at 90% 0%, rgba(225, 29, 72, 0.22), transparent 25%),
    linear-gradient(135deg, #061521 0%, #111827 58%, #2b0f1b 100%);
  color: white;
}

.contact-card {
  border-radius: 38px;
  padding: clamp(28px, 5vw, 56px);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(225, 29, 72, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.contact-info {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.info-item {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.info-item small {
  color: #9df073;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.info-item p {
  color: white;
  margin: 4px 0 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  color: #26374a;
  font-weight: 850;
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #dce7f0;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  outline: none;
  background: #fbfdff;
}

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

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 143, 211, 0.12);
  background: #fff;
}

.contact-form .btn {
  width: 100%;
}

.hidden-field {
  display: none;
}

footer {
  background: #040d16;
  color: #9aaabc;
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 1100px) {
  .nav {
    gap: 14px;
  }

  .nav-links {
    gap: 6px;
  }

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

  .nav-cta {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .why-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero {
    padding-top: 74px;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 72px;
  }

  .menu-button {
    display: grid;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    inset: 72px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

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

  .menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  .hero {
    padding: 58px 0 54px;
  }

  h1 {
    font-size: clamp(2.3rem, 13vw, 3.25rem);
  }

  .logo-card {
    min-height: 320px;
  }

  .metrics {
    transform: none;
    margin-top: 24px;
  }

  .metrics-grid,
  .service-grid,
  .process-grid,
  .testimonial-grid,
  .pill-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 74px 0;
  }

  .services {
    padding-top: 74px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .brand-text small {
    display: none;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-text span {
    max-width: 210px;
  }

  .hero-panel {
    padding: 18px;
    border-radius: 28px;
  }

  .logo-card {
    min-height: 260px;
  }

  .floating-card {
    margin-top: 16px;
  }

  .contact-form {
    padding: 18px;
  }
}
