@font-face {
  font-family: "AgendaGloba";
  src: url("../fonts/agenda-bold-italic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --blue: #025aef;
  --blue-dark: #083f9a;
  --green: #66d104;
  --green-soft: #dff7ce;
  --ink: #0e1726;
  --muted: #5d6878;
  --line: #dce5f2;
  --surface: #ffffff;
  --surface-alt: #f4f8fc;
  --shadow: 0 24px 70px rgba(6, 37, 84, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(102, 209, 4, 0.11), transparent 32rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 36%, #f4f8fc 100%);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 229, 242, 0.86);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(8, 63, 154, 0.08);
  backdrop-filter: blur(14px);
}

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

.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  border-radius: 999px;
  color: #233148;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 9px 14px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: #eef5ff;
  color: var(--blue);
  outline: none;
}

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

.language-switcher select {
  min-width: 68px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #17243a;
  background: #fff;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 0 8px;
}

.language-switcher select:focus-visible {
  outline: 2px solid rgba(2, 90, 239, 0.28);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  place-items: center;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 3px 0;
}

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

.hero {
  min-height: calc(100vh - 128px);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 34px;
  align-items: center;
  padding: 54px 0 34px;
}

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

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

h1,
h2 {
  margin: 0;
  color: #081525;
  line-height: 1.1;
}

h1 {
  max-width: 790px;
  font-size: clamp(2.25rem, 4vw, 3.35rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.8rem, 3.1vw, 2.85rem);
}

h3 {
  margin: 0;
  color: #101c2e;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero__lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #39475b;
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__proof {
  display: flex;
  max-width: 720px;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero__proof span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(2, 90, 239, 0.14);
  border-radius: 999px;
  color: #14233a;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 850;
  padding: 7px 12px;
  box-shadow: 0 10px 24px rgba(7, 49, 104, 0.06);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  padding: 13px 18px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0a75ff);
  box-shadow: 0 14px 32px rgba(2, 90, 239, 0.24);
}

.button--secondary {
  color: var(--blue-dark);
  background: #ffffff;
  border-color: var(--line);
}

.hero__visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  padding-bottom: 56px;
  isolation: isolate;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 9%;
  z-index: -2;
  border-radius: 50%;
  background: conic-gradient(from 160deg, rgba(2, 90, 239, 0.18), rgba(102, 209, 4, 0.2), rgba(2, 90, 239, 0.11));
  filter: blur(2px);
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 18%;
  z-index: -1;
  border: 1px solid rgba(2, 90, 239, 0.16);
  border-radius: 50%;
}

.hero__logo {
  width: min(390px, 82vw);
  filter: drop-shadow(0 28px 46px rgba(4, 29, 67, 0.16));
  transform: translateY(-18px);
}

.orbit-card {
  position: absolute;
  border: 1px solid rgba(220, 229, 242, 0.9);
  border-radius: 8px;
  color: #1a2a40;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  font-weight: 850;
  padding: 10px 14px;
}

.orbit-card--one {
  top: 44px;
  right: 16px;
}

.orbit-card--two {
  left: 0;
  top: 46%;
}

.orbit-card--three {
  right: auto;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 18px 55px rgba(7, 49, 104, 0.07);
}

.strip__item {
  min-height: 112px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.strip__item strong {
  display: block;
  color: var(--blue);
  font-size: 1.04rem;
}

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

.intro,
.solutions,
.products,
.method,
.trust,
.contact {
  padding: 92px 0 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.intro > p,
.trust__copy p,
.contact__panel p {
  margin: 0;
  color: #425066;
  font-size: 1.08rem;
}

.intro > p {
  padding-top: 38px;
}

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

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.solution-card,
.product-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(7, 49, 104, 0.06);
}

.solution-card {
  min-height: 284px;
  padding: 24px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--green);
  font-family: AgendaGloba, Inter, sans-serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 700;
}

.solution-card p,
.product-item p,
.timeline p {
  margin: 12px 0 0;
  color: var(--muted);
}

.product-item p {
  color: #050b14;
}

.product-list {
  display: grid;
  gap: 18px;
}

.product-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: center;
  border: 0;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(7, 49, 104, 0.08);
}

.product-brand {
  display: grid;
  gap: 14px;
  align-content: center;
}

.product-logo-frame {
  display: flex;
  width: min(100%, 230px);
  min-height: 82px;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.product-logo-frame img {
  width: 100%;
  max-height: 76px;
  object-fit: contain;
}

a.product-logo-frame:hover,
a.product-logo-frame:focus-visible {
  filter: drop-shadow(0 12px 18px rgba(7, 49, 104, 0.12));
  outline: none;
  transform: translateY(-1px);
}

.product-logo-frame--icon {
  width: 104px;
  min-height: 104px;
}

.product-logo-frame--icon img {
  max-height: 96px;
}

.product-logo-frame--dark {
  width: min(100%, 270px);
  background: transparent;
}

.product-logo-frame--dark img {
  max-height: 80px;
  filter: drop-shadow(0 10px 18px rgba(120, 0, 0, 0.18));
}

.product-logo-frame--brand {
  width: 104px;
  min-height: 104px;
  background: transparent;
}

.product-logo-frame--brand img {
  max-height: 92px;
}

.product-item--richmind {
  background: #f3d67a;
}

.product-item--wolf {
  background: #b8dfc3;
}

.product-item--publicapy {
  background: #ef9f9f;
}

.product-item--custom {
  background: #a9dff4;
}

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

.timeline li {
  min-height: 252px;
  padding: 26px;
  background: #fff;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--blue);
  font-weight: 900;
}

.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.trust__copy,
.trust__stats,
.contact__panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 20px 60px rgba(7, 49, 104, 0.06);
}

.trust__copy {
  padding: 34px;
}

.trust__copy p {
  margin-top: 18px;
}

.trust__stats {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.trust__stats div {
  padding: 28px;
  background: #fff;
}

.trust__stats strong {
  display: block;
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1.15;
}

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

.contact {
  padding-bottom: 92px;
}

.contact__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 58px);
  background:
    linear-gradient(135deg, rgba(2, 90, 239, 0.94), rgba(8, 63, 154, 0.96)),
    #083f9a;
}

.contact__panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 320px;
  aspect-ratio: 1;
  border: 28px solid rgba(102, 209, 4, 0.35);
  border-radius: 50%;
}

.contact .eyebrow,
.contact h2,
.contact p {
  position: relative;
  z-index: 1;
  color: #fff;
}

.contact p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.contact__actions {
  position: relative;
  z-index: 1;
}

.contact .button--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
  padding: 28px 0 34px;
}

.site-footer img {
  width: 164px;
}

.site-footer p,
.site-footer span {
  margin: 0;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .trust {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero__visual {
    min-height: 410px;
    padding-bottom: 52px;
  }

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

  .product-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .intro > p {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: min(calc(100% - 24px), var(--max));
    margin-top: 12px;
  }

  .brand {
    width: 158px;
  }

  .header-controls {
    gap: 8px;
  }

  .nav-toggle {
    display: grid;
    order: 2;
  }

  .language-switcher {
    order: 1;
  }

  .language-switcher select {
    min-width: 62px;
    height: 40px;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    order: 3;
    padding: 8px;
  }

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

  .main-nav a {
    border-radius: 6px;
    padding: 12px;
  }

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

  .hero {
    gap: 20px;
    padding: 42px 0 30px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .hero__actions,
  .contact__actions {
    flex-direction: column;
  }

  .hero__proof {
    gap: 8px;
    margin-top: 20px;
  }

  .hero__proof span {
    min-height: 32px;
    font-size: 0.82rem;
    padding: 6px 10px;
  }

  .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 380px;
    padding-bottom: 48px;
  }

  .orbit-card {
    font-size: 0.84rem;
    padding: 8px 10px;
  }

  .orbit-card--one {
    top: 20px;
    right: 0;
  }

  .orbit-card--two {
    left: 0;
    top: 42%;
  }

  .orbit-card--three {
    right: auto;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
  }

  .strip,
  .solution-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .intro,
  .solutions,
  .products,
  .method,
  .trust,
  .contact {
    padding-top: 64px;
  }

  .solution-card,
  .timeline li {
    min-height: unset;
  }

  .card-number,
  .timeline span {
    margin-bottom: 24px;
  }

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