:root {
  --bg: #ffffff;
  --bg-soft: #f7f9fb;
  --ink: #111111;
  --ink-soft: #3a3f45;
  --sky: #0ea5e9;
  --sky-deep: #0284c7;
  --sky-tint: #e6f6fe;
  --line: #e7eaee;
  --maxw: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

a {
  color: var(--sky-deep);
  text-decoration: none;
}

a:hover {
  color: var(--sky);
  text-decoration: underline;
}

.home-layout {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}

.logo-img {
  display: block;
  width: auto;
  height: 54px;
}

.hero {
  padding: 88px 0 36px;
  text-align: center;
}

.hero-title {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 4.6vw, 36px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.tagline {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.5;
}

.accent {
  color: var(--sky-deep);
}

.services {
  max-width: 720px;
  margin: 56px auto 0;
  padding: 28px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--sky);
  border-radius: 10px;
  text-align: left;
}

.services h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.3;
  text-align: center;
}

.services ul {
  margin: 0;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.5;
}

.services li {
  margin: 0 0 10px;
}

.services li:last-child {
  margin-bottom: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 40px 0 8px;
}

.contact-label {
  color: var(--ink);
  padding: 13px 24px;
  border: 1.5px solid var(--sky);
  border-radius: 8px;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-arrow {
  color: var(--sky);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.btn {
  display: inline-block;
  padding: 13px 24px;
  border: 1.5px solid var(--sky);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.btn--primary {
  color: #ffffff;
  background: var(--sky);
}

.site-footer {
  flex-shrink: 0;
  color: var(--ink-soft);
  font-size: 14px;
  text-align: center;
}

.site-footer--home {
  margin-top: 0;
  border-top: none;
}

.site-footer:not(.site-footer--home) {
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.site-footer .wrap {
  padding-top: 28px;
  padding-bottom: 40px;
}

.site-footer p {
  margin: 0;
}

.company-details {
  max-width: 680px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.5;
}

.waves {
  position: relative;
  width: 100%;
  height: 150px;
  margin-top: auto;
  overflow: hidden;
  line-height: 0;
}

.waves svg {
  width: 100%;
  height: 100%;
  display: block;
}

.waves .wave-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  animation: waveShift linear infinite;
  will-change: transform;
}

.waves .w1 {
  animation-duration: 14s;
  opacity: 0.30;
}

.waves .w2 {
  animation-duration: 20s;
  animation-direction: reverse;
  opacity: 0.22;
}

.waves .w3 {
  animation-duration: 28s;
  opacity: 0.16;
}

@keyframes waveShift {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .waves .wave-layer {
    animation: none;
  }
}

.page-head {
  padding-top: 56px;
  padding-bottom: 8px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sky-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.title {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.15;
}

.article {
  padding-top: 8px;
}

.article p {
  margin: 0 0 22px;
}

.article h2 {
  margin: 34px 0 10px;
  font-size: 22px;
  line-height: 1.3;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(560px, calc(100% - 48px));
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 4px solid var(--sky);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.12);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-button {
  flex: 0 0 auto;
  padding: 10px 18px;
  color: #ffffff;
  background: var(--sky);
  border: 1px solid var(--sky);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-button:hover {
  background: var(--sky-deep);
  border-color: var(--sky-deep);
}

@media (max-width: 520px) {
  body {
    font-size: 17px;
  }

  .hero {
    padding-top: 56px;
  }

  .logo-img {
    height: 48px;
  }

  .hero-title {
    white-space: normal;
  }

  .cookie-banner {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: flex-start;
  }
}
