:root {
  --navy: #0c2742;
  --navy-2: #14395d;
  --blue: #128bc2;
  --teal: #1d9c91;
  --ink: #132235;
  --muted: #627080;
  --line: #d9e3eb;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --warm: #eef3f1;
  --shadow: 0 24px 60px rgba(12, 39, 66, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(217, 227, 235, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--navy);
  font-weight: 800;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 700;
}

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

.site-nav a:hover,
.site-nav a:focus-visible,
.language-links a:hover,
.language-links a:focus-visible {
  background: #e7f5fb;
  outline: none;
}

.language-links {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 10px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.language-links a,
.language-links span {
  display: inline-flex;
  min-width: 38px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-links span {
  color: var(--paper);
  background: var(--navy);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: var(--navy);
  transition: transform 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero,
.section-pad,
.section-band,
.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 0.78fr);
  gap: 50px;
  align-items: center;
  padding: 78px 28px 86px;
}

.hero-copy,
.hero-panel,
.section-copy,
.section-text,
.section-head,
.about-copy,
.contact-copy {
  min-width: 0;
}

.hero-copy {
  max-width: 640px;
}

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

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

h1 {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--navy);
  font-size: 3.22rem;
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 3.05rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 14px;
  color: #33485e;
  font-size: 1.28rem;
  font-weight: 700;
}

.hero-text,
.section-head > p,
.section-text p,
.service-card p,
.step-grid p,
.value-grid p,
.about-copy p,
.contact-copy p,
.contact-panel p,
.site-footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  color: var(--paper);
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(12, 39, 66, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--navy-2);
  outline: none;
}

.button.secondary {
  color: var(--navy);
  border-color: var(--line);
  background: var(--paper);
}

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

.hero-visual {
  position: relative;
  align-self: center;
  min-width: 0;
  padding: 12px 0 0 36px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
}

.hero-logo-wrap {
  margin-bottom: 26px;
}

.hero-visual img {
  width: 100%;
  max-width: 390px;
  height: 260px;
  margin: 0 auto;
  padding: 16px;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(145deg, rgba(18, 139, 194, 0.08), rgba(255, 255, 255, 0.96));
  border-radius: var(--radius);
}

.domain-stack {
  position: relative;
  display: grid;
  gap: 18px;
}

.domain-stack article {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.domain-stack article::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -41px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: var(--paper);
}

.domain-stack span {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-weight: 900;
}

.domain-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.section-pad {
  padding: 92px 28px;
}

.section-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: start;
  padding: 72px 28px;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, var(--soft), var(--paper));
}

.section-copy p:last-child,
.section-text p:last-child,
.section-head p:last-child,
.about-copy p:last-child,
.contact-copy p:last-child {
  margin-bottom: 0;
}

.section-text {
  font-size: 1.05rem;
}

.section-head {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-head.narrow {
  max-width: 760px;
}

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

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

.service-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.compact-card {
  display: block;
  min-height: 330px;
}

.compact-card > span {
  display: inline-block;
  margin-bottom: 48px;
}

.compact-card h3 {
  font-size: 1.55rem;
}

.compact-card p {
  margin-bottom: 20px;
}

.services-platform {
  padding: 44px 42px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 139, 194, 0.08), transparent 42%),
    var(--paper);
  box-shadow: var(--shadow);
}

.platform-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.platform-head h2 {
  margin-bottom: 16px;
  font-size: 2.55rem;
}

.platform-head p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.platform-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(12, 39, 66, 0.08);
  overflow: hidden;
}

.platform-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--blue);
}

.platform-card:nth-child(2)::before {
  background: var(--teal);
}

.platform-card:nth-child(3)::before {
  background: var(--navy);
}

.platform-card > span {
  display: inline-block;
  margin-bottom: 50px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.platform-card h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
}

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

.platform-card strong {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.45;
}

.platform-note {
  max-width: 820px;
  margin: 24px auto 0;
  padding: 16px 18px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--navy);
  font-weight: 800;
  text-align: center;
}

.service-card > span,
.step-grid span {
  color: var(--teal);
  font-weight: 900;
}

.service-card p {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding-left: 18px;
}

li {
  margin-bottom: 7px;
  color: #435468;
}

li::marker {
  color: var(--blue);
}

.approach {
  background: var(--paper);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.step-grid article {
  min-height: 250px;
  padding: 24px;
  background: var(--soft);
}

.step-grid span {
  display: inline-block;
  margin-bottom: 44px;
}

.why {
  background: linear-gradient(90deg, var(--navy), #123452);
}

.why .eyebrow,
.why h2,
.why .section-copy p {
  color: var(--paper);
}

.why .section-copy p {
  color: #d4e0e8;
}

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

.value-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.value-grid h3 {
  color: var(--paper);
}

.value-grid p {
  margin-bottom: 0;
  color: #d4e0e8;
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.about-logo {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.about-logo {
  padding: 28px;
}

.about-logo img {
  width: min(340px, 100%);
  aspect-ratio: 1.1 / 1;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
}

.contact {
  max-width: 820px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.contact-copy {
  max-width: 660px;
  margin: 0 auto;
}

.contact-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 28px 44px;
  border-top: 1px solid var(--line);
}

.site-footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 640px;
}

.site-footer img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  flex: 0 0 auto;
}

.site-footer strong {
  display: block;
  color: var(--navy);
  font-weight: 900;
}

.site-footer p {
  margin: 2px 0 0;
  font-size: 0.92rem;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

@media (max-width: 1080px) {
  .hero,
  .section-band,
  .about {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(18, 139, 194, 0.08), rgba(255, 255, 255, 0.96));
  }

  .hero-visual::before,
  .domain-stack article::before {
    display: none;
  }

  .hero-logo-wrap {
    margin-bottom: 0;
  }

  .hero-visual img {
    max-width: none;
    height: 220px;
    background: rgba(255, 255, 255, 0.76);
  }

  .domain-stack {
    gap: 12px;
  }

  .domain-stack article {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    padding-bottom: 12px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .service-card {
    grid-template-columns: 46px 1fr;
  }

  .service-card ul {
    grid-column: 2;
  }

  .service-list-compact {
    grid-template-columns: 1fr;
  }

  .services-platform {
    padding: 26px;
  }

  .platform-head,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .compact-card {
    min-height: auto;
  }

  .compact-card > span {
    margin-bottom: 28px;
  }

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

@media (max-width: 820px) {
  .site-header {
    width: 100%;
    padding: 12px 18px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 72px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .menu-open .site-nav {
    display: flex;
  }

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

  .language-links {
    margin: 8px 0 0;
    width: fit-content;
  }

  .hero,
  .section-pad {
    padding: 50px 20px;
  }

  .section-band {
    padding: 58px 20px;
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  .hero-subtitle {
    font-size: 1.12rem;
    margin-bottom: 10px;
  }

  .hero-text {
    font-size: 1rem;
  }

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

  .hero-visual {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 4px;
    padding: 16px;
  }

  .hero-visual img {
    height: 168px;
  }

  .domain-stack article {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .platform-card {
    min-height: auto;
    padding: 22px;
  }

  .platform-card > span {
    margin-bottom: 38px;
  }

  .platform-note {
    font-size: 0.95rem;
  }

  .service-card ul {
    grid-column: auto;
  }

  .step-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .step-grid article {
    min-height: auto;
  }

  .step-grid span {
    margin-bottom: 28px;
  }

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

  .footer-meta {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 430px) {
  .brand span {
    max-width: 140px;
    white-space: normal;
    line-height: 1.12;
  }

  h1 {
    font-size: 2.08rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .domain-stack article {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
