:root {
  --background: #06101d;
  --background-soft: #0a1728;
  --surface: rgba(255, 255, 255, 0.065);
  --surface-hover: rgba(255, 255, 255, 0.09);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.2);
  --text: #f7f9fc;
  --muted: #aab7c9;
  --muted-light: #d4dce7;
  --primary: #62e6c8;
  --primary-dark: #37bfa2;
  --secondary: #7b8cff;
  --secondary-soft: rgba(123, 140, 255, 0.18);
  --success-soft: rgba(98, 230, 200, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --max-width: 1160px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(
      circle at 12% 4%,
      rgba(123, 140, 255, 0.24),
      transparent 28rem
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(98, 230, 200, 0.15),
      transparent 26rem
    ),
    linear-gradient(180deg, #06101d 0%, #081321 45%, #06101d 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

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

p,
h1,
h2,
h3 {
  overflow-wrap: break-word;
}

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

.section {
  padding: 96px 0;
}

.section-small {
  padding: 56px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.highlight {
  background: linear-gradient(
    135deg,
    #ffffff 5%,
    var(--primary) 48%,
    #9da8ff 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  color: #07131c;
  background: linear-gradient(135deg, var(--primary), #b3f5e6);
  box-shadow: 0 14px 42px rgba(98, 230, 200, 0.18);
}

.button-primary:hover {
  box-shadow: 0 18px 48px rgba(98, 230, 200, 0.28);
}

.button-secondary {
  border-color: var(--border);
  background: var(--surface);
  backdrop-filter: blur(14px);
}

.button-secondary:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  color: #06101d;
  background: var(--primary);
  font-weight: 800;
}

.skip-link:focus {
  top: 20px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 16, 29, 0.78);
  backdrop-filter: blur(18px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(98, 230, 200, 0.3);
  border-radius: 10px;
  color: #06101d;
  background: linear-gradient(135deg, var(--primary), #aab4ff);
  box-shadow: 0 10px 30px rgba(98, 230, 200, 0.16);
  font-size: 0.82rem;
  font-weight: 900;
}

.logo span:last-child {
  color: var(--primary);
}

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

.nav-links > a:not(.button) {
  color: var(--muted-light);
  font-size: 0.94rem;
  font-weight: 650;
  transition: color 160ms ease;
}

.nav-links > a:not(.button):hover {
  color: var(--text);
}

.mobile-menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
}

.mobile-menu-button svg {
  width: 21px;
  height: 21px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 88px;
}

.hero::after {
  position: absolute;
  top: 120px;
  left: 50%;
  width: 700px;
  height: 700px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  transform: translateX(-50%);
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.85rem;
}

.breadcrumbs a {
  color: var(--muted-light);
  font-weight: 700;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(98, 230, 200, 0.22);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(98, 230, 200, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(98, 230, 200, 0.1);
}

h1 {
  max-width: 960px;
  margin: 28px auto 24px;
  font-size: clamp(3rem, 7.6vw, 6.3rem);
  line-height: 0.96;
  letter-spacing: -0.072em;
}

.hero-description {
  max-width: 740px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.problem-grid,
.services-grid,
.industries-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.085),
      rgba(255, 255, 255, 0.04)
    );
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(98, 230, 200, 0.22);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.105),
      rgba(255, 255, 255, 0.055)
    );
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(98, 230, 200, 0.18);
  border-radius: 14px;
  color: var(--primary);
  background: var(--success-soft);
}

.card-icon svg {
  width: 23px;
  height: 23px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

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

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 160ms ease;
}

.card:hover .card-link svg {
  transform: translateX(3px);
}

.service-card {
  min-height: 290px;
}

.service-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 210px;
  height: 210px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(123, 140, 255, 0.16),
    transparent 70%
  );
}

.service-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted-light);
  font-size: 0.95rem;
}

.service-list svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--primary);
}

.industry-card {
  min-height: 190px;
  padding: 24px;
}

.industry-card .card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 25px;
}

.industry-card h3 {
  font-size: 1.12rem;
}

.industry-card p {
  font-size: 0.92rem;
}

.feature-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 60px;
  padding: 54px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(123, 140, 255, 0.17),
      transparent 30rem
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.085),
      rgba(255, 255, 255, 0.035)
    );
  box-shadow: var(--shadow);
}

.feature-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.feature-panel p {
  margin: 0;
  color: var(--muted);
}

.benefits {
  display: grid;
  gap: 14px;
}

.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.benefit-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--primary);
  background: var(--success-soft);
}

.benefit-icon svg {
  width: 18px;
  height: 18px;
}

.benefit h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.benefit p {
  font-size: 0.9rem;
}

.process-card {
  min-height: 230px;
}

.process-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  border: 1px solid rgba(123, 140, 255, 0.28);
  border-radius: 12px;
  color: #b7c0ff;
  background: var(--secondary-soft);
  font-size: 0.88rem;
  font-weight: 900;
}

.faq {
  max-width: 880px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.faq-question span:first-child {
  font-size: 1.05rem;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--primary);
  transition: transform 180ms ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 44px 24px 0;
  color: var(--muted);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.related-link {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted-light);
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.related-link:hover {
  border-color: rgba(98, 230, 200, 0.35);
  color: var(--text);
  background: var(--surface-hover);
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 70px 40px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(98, 230, 200, 0.2),
      transparent 25rem
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(123, 140, 255, 0.22),
      transparent 25rem
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.04)
    );
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
}

.cta h2 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.cta p {
  max-width: 630px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--muted-light);
  font-weight: 700;
}

.email-link:hover {
  color: var(--primary);
}

.email-link svg {
  width: 18px;
  height: 18px;
}

footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(98, 230, 200, 0.75);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-panel {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(6, 16, 29, 0.98);
    box-shadow: var(--shadow);
  }

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

  .nav-links > a:not(.button) {
    padding: 12px 10px;
  }

  .mobile-menu-button {
    display: grid;
  }

  .nav-links .button {
    margin-top: 8px;
  }

  .hero {
    padding-top: 84px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

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

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 70px 0 64px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
  }

  .industries-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 25px;
  }

  .feature-panel {
    padding: 30px 22px;
  }

  .cta {
    padding: 48px 22px;
  }

  .cta .button {
    width: 100%;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
