:root {
  color-scheme: light;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-strong: #f1f5f9;
  --text: #111827;
  --muted: #526173;
  --line: #dbe3ee;
  --accent: #2f5cff;
  --accent-dark: #1d3ca6;
  --teal: #0f766e;
  --shadow: 0 18px 55px rgba(21, 31, 54, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

a:hover {
  color: var(--accent);
}

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

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

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

.nav-links a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  padding: 10px 12px;
}

.nav-links a:hover {
  background: var(--surface-strong);
  color: var(--text);
}

.section {
  padding: 88px 0;
}

.hero {
  padding: 78px 0 84px;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, 0) 100%),
    radial-gradient(circle at 18% 18%, rgba(47, 92, 255, 0.12), transparent 30%),
    var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: start;
  gap: 54px;
}

.hero-copy {
  max-width: 620px;
  padding-top: 34px;
}

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

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

h1 {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 3.55rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-text {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.15rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 760;
  padding: 12px 20px;
  box-shadow: 0 12px 28px rgba(47, 92, 255, 0.2);
}

.button:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

.hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1717 / 916;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
}

.section-copy {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-copy p:last-child,
.section-copy:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.services {
  background: #ffffff;
}

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

.service-card {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
}

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

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: #edf3ff;
}

.service-icon span {
  width: 17px;
  height: 25px;
  border: 2px solid var(--accent);
  border-radius: 5px;
}

.service-icon-web span {
  width: 26px;
  height: 18px;
  border-color: var(--teal);
}

.service-icon-publish span {
  width: 24px;
  height: 24px;
  border-color: var(--accent-dark);
  transform: rotate(45deg);
}

.company-info {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.info-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 48px;
  padding-bottom: 48px;
}

.info-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: minmax(130px, 0.48fr) minmax(0, 1fr);
  gap: 22px;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}

.info-list div:first-child {
  padding-top: 0;
}

.info-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

dt {
  color: var(--muted);
  font-weight: 700;
}

dd {
  margin: 0;
  color: var(--text);
  font-weight: 680;
}

dd a,
.contact-links a {
  color: var(--accent-dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.contact-links a {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px 20px;
  overflow-wrap: anywhere;
}

.contact-links a:hover {
  border-color: rgba(47, 92, 255, 0.46);
  color: var(--accent);
}

.contact-links span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, 720px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 2px;
  }

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

  .section,
  .hero {
    padding: 62px 0;
  }

  .hero-inner,
  .split,
  .info-panel,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.7rem;
  }

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

  .hero-copy {
    padding-top: 0;
  }

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

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

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }
}

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

  .brand {
    font-size: 0.95rem;
  }

  .nav-links a {
    font-size: 0.86rem;
  }

  h1 {
    font-size: 2.06rem;
  }

  .button {
    width: 100%;
  }
}
