/* =====================================================
   FITSEC — pixel-tight static layout system
   ===================================================== */

@font-face {
  font-family: 'Bai Jamjuree';
  font-weight: 300;
  font-style: normal;
  src: url('assets/fonts/BaiJamjuree-Light.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Bai Jamjuree';
  font-weight: 400;
  font-style: normal;
  src: url('assets/fonts/BaiJamjuree-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Bai Jamjuree';
  font-weight: 400;
  font-style: italic;
  src: url('assets/fonts/BaiJamjuree-Italic.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Bai Jamjuree';
  font-weight: 500;
  font-style: normal;
  src: url('assets/fonts/BaiJamjuree-Medium.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Bai Jamjuree';
  font-weight: 600;
  font-style: normal;
  src: url('assets/fonts/BaiJamjuree-SemiBold.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'BaiJamjuree';
  font-weight: 700;
  font-style: normal;
  src: url('assets/fonts/BaiJamjuree-Bold.ttf') format('truetype');
  font-display: swap;
}

:root {
  --cyan: #00feff;
  --cyan-2: #97e4e4;
  --cyan-dim: #6be4e7;
  --cyan-soft: #97e5e5;
  --bg: #000;
  --ink: #fff;
  --muted: #d9f2f5;
  --line: rgba(0, 254, 255, .9);
  --line-soft: rgba(132, 239, 251, .38);
  --card: rgba(0, 0, 0, .42);
  --card-strong: rgba(0, 0, 0, .64);
  --grey-panel: rgba(92, 96, 101, .75);
  --grey-button: #9fa3a7;
  --grey-button-dark: #767d82;
  --shadow-glow: 0 0 26px rgba(0, 229, 255, .28);
  --shadow-white: 0 0 18px rgba(255, 255, 255, .28);
  --max: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Bai Jamjuree', system-ui, sans-serif;
  background: #000;
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit
}

.cyan {
  color: var(--cyan)
}

.bold {
  font-weight: 700
}

.italic {
  font-style: italic
}

.center,
.text-center {
  text-align: center
}

.mt-40 {
  margin-top: 40px
}

.mt-60 {
  margin-top: 60px !important
}

.mb-40 {
  margin-bottom: 40px
}

.bg-wrap {
  position: relative;
  background-color: #02060a;
  background-image: url(assets/Sivujen%20tausta.jpg);
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  background-attachment: scroll;
}

.bg-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .30) 0%, rgba(0, 0, 0, .18) 40%, rgba(0, 0, 0, .30) 100%);
  pointer-events: none;
}

.bg-wrap>* {
  position: relative;
  z-index: 1
}

/* Tilanjakaja-viiva (cyan), käytetään useassa kohdassa */
.tila-jakaja {
  display: block;
  height: 2px;
  width: min(86%, 1080px);
  margin: 48px auto;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, .85) 18%, rgba(0, 229, 255, .95) 50%, rgba(0, 229, 255, .85) 82%, transparent 100%);
  box-shadow: 0 0 14px rgba(0, 229, 255, .55);
  border: 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  color: #000;
  border-bottom: 1px solid #ebeff1;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  gap: 24px;
}

.nav-logo img {
  height: 66px;
  width: auto
}

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

.nav-links a {
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 800;
  color: #0a0a0a;
  font-family: "BaiJamjuree";
  text-transform: uppercase;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.18);
}

.nav-links a:hover {
  color: var(--cyan-dim)
}

.nav-links a.is-active {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.nav-links a.cta {
  color: var(--cyan-dim);
}

.nav-flag img {
  height: 30px;
  width: auto;
  border-radius: 2px
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #000;
  margin: 5px 0
}

@media (max-width:940px) {
  .nav-toggle {
    display: block
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-top: 1px solid #eee;
    display: none;
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    padding: 14px 24px;
    width: 100%
  }

  .nav-flag {
    position: absolute;
    right: 78px;
    top: 29px;
  }
}

.hero {
  padding: 42px 28px 34px;
  text-align: center;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1220px;
  margin: 0 auto 38px;
}

.hero-mark {
  height: auto;
  width: auto
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
}

.hero-logo img {
  height: 98px;
  width: auto
}

.hero-title {
  font-size: clamp(30px, 3.5vw, 58px);
  font-weight: 700;
  line-height: 1.26;
  margin: 70px auto;
  max-width: 1420px;
  color: #fff;
  text-shadow: 0 0 22px rgba(255, 255, 255, .85), 0 0 10px rgba(255, 255, 255, .5), 0 0 26px rgba(0, 229, 255, .28);
}
.text-shadow{
   text-shadow: 0 0 22px rgba(255, 255, 255, .85), 0 0 10px rgba(255, 255, 255, .5), 0 0 26px rgba(0, 229, 255, .28);

}
.c-cyan{
   color: var(--cyan-2) !important;
}
.hero-title .accent {
  color: var(--cyan-2);
  text-shadow: 0 0 22px rgba(0, 229, 255, .65)
}

.hero-sub {
  max-width: 1100px;
  margin: 3% auto;
  text-align: center;
  color: var(--cyan-2);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.45;
}

.hero-sub b {
  color: var(--cyan-2)
}

.color-f {
  color: #fff;
}

.float-mail {
  position: fixed;
  right: 18px;
  top: 65%;
  z-index: 60;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, .55));
  transition: transform .2s;
}

.float-mail:hover {
  transform: scale(1.06)
}

.float-mail img {
  width: 78px;
  height: 78px;
  border-radius: 50%
}

.section {
  padding: 56px 28px;
  max-width: var(--max);
  margin: 0 auto
}

.section-narrow {
  max-width: 1680px
}

.divider {
  width: 260px;
  height: 2px;
  background: rgba(140, 238, 246, .55);
  margin: 42px auto
}

.h-glow {
  font-size: clamp(28px, 2.9vw, 42px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.26;
  margin: 0 auto 26px;

  text-shadow: 0 0 22px rgba(255, 255, 255, .85), 0 0 10px rgba(255, 255, 255, .5), 0 0 26px rgba(0, 229, 255, .28);
}

.h-glowc {
  font-size: clamp(28px, 2.9vw, 42px);
  font-weight: 700;
  color: var(--cyan-2);
  text-align: center;
  line-height: 1.26;
  margin: 0 auto 26px;
  text-shadow: 0 0 22px rgba(0, 229, 255, .85), 0 0 10px rgba(0, 229, 255, .5), 0 0 26px rgba(0, 229, 255, .28);
}

.h-cyan {
  font-size: clamp(28px, 2.3vw, 34px);
  font-weight: 700;
  color: var(--cyan-2);
  text-align: center;
  margin: 0 0 20px;
  text-shadow: 0 0 22px rgba(0, 229, 255, .85), 0 0 10px rgba(0, 229, 255, .5), 0 0 26px rgba(0, 229, 255, .28);

}

.h-cyan-sub {
  text-align: center;
  color: var(--cyan-2);
  font-weight: 700;
  font-size: 28px;
  margin: 0 auto 22px;
  max-width: 1000px;
  text-shadow: 0 0 10px rgba(0, 229, 255, .30);
}

.products {
  position: relative;
  padding: 42px 32px 50px;
  max-width: 1840px;
  margin: 0 auto;
}

.products::before,
.products::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(140, 238, 246, .72) 0%, rgba(140, 238, 246, .92) 14%, rgba(140, 238, 246, .92) 86%, rgba(140, 238, 246, .72) 100%);
  box-shadow: 0 0 14px rgba(0, 229, 255, .28);
}

.products::before {
  top: 0
}

.products::after {
  bottom: 0
}

.products-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}
.products-grid-en {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

.pcard {
  position: relative;
  padding: 34px;
  border-radius: 0;
  background: transparent;
  text-align: center;
  display: grid;
  grid-template-rows: auto auto auto;
  justify-items: center;
  /* min-height:744px; */
  border: 0;
  overflow: hidden;
  background: url('assets/Etusivu%20tuote-esitteet%20tausta.png') center/cover no-repeat;

}



.pcard::before {
  content: "";
  position: absolute;
  inset: 10px 0 8px;
  opacity: .92;
  pointer-events: none;
  /* border: 2px solid red; */
  width: 100%;
}

.pcard::after {
  content: "";
  position: absolute;
  inset: 10px 0 8px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .54) 44%, rgba(0, 0, 0, .18) 100%);
  pointer-events: none;
}

.pcard>* {
  position: relative;
  z-index: 1
}

/* .pcard-mid {
  position: relative;
  overflow: hidden;
  border: 4px solid rgba(0, 229, 255, .82);
  border-radius: 22px;
  background: rgba(0, 0, 0, .58);
  box-shadow: 0 0 22px rgba(0, 229, 255, .16), inset 0 0 0 1px rgba(255, 255, 255, .06);
} */

.pcard-mid {
  position: relative;
  border-radius: 22px;
  /* background: rgba(185, 30, 30, 0.58); */
  overflow: hidden;
  background: url('assets/Etusivu-esite\ tausta\ 2.png') center/cover no-repeat;

}

.pcard-mid::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px;
  border-radius: inherit;
  /* background: linear-gradient(to bottom,
      rgba(0, 229, 255, 0.95) 0%,
      rgba(0, 229, 255, 0.95) 45%,
      rgba(0, 229, 255, 0.35) 75%,
      rgba(0, 229, 255, 0) 100%); */
  pointer-events: none;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* .pcard-img{
  width: 100%;
  height: 100%;
  transform: scaleX(-1);
} */

/* .pcard-mid::after{display:none} */
.pcard-logo {
  width: min(100%, 430px);
  height: auto;
  margin: 0 auto 34px;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.pcard:nth-child(1) .pcard-logo {
  width: min(80%, 488px);
  margin-top: 18px;
  margin-bottom: 22px
}

.pcard:nth-child(2) .pcard-logo {
  width: min(80%, 382px);
  margin-top: 4px;
  margin-bottom: 48px
}

.pcard:nth-child(3) .pcard-logo {
  width: min(70%, 372px);
  margin-top: 14px;
  margin-bottom: 22px
}

.pcard h3 {
  /* font-size: clamp(18px, 1.72vw, 31px); */
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 26px;
  line-height: 1.42;
  /* max-width:16ch; */
  text-shadow: 0 0 14px rgba(255, 255, 255, .12);
}

/* .pcard:nth-child(1) h3{max-width:16ch}
.pcard:nth-child(2) h3{max-width:17ch}
.pcard:nth-child(3) h3{max-width:15ch} */
.pcard p {
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  margin: 0;
  line-height: 1.52;
  width: 90%
    /* max-width:20ch; */
}

/* .pcard:nth-child(2) p{max-width:22ch} */
.pcard .btn {
  width: min(100%, 346px);
  min-width: 0;
  min-height: 76px;
  margin-top: 34px;
  padding: 12px 22px 14px;
  align-self: end;
  background: linear-gradient(180deg, #29c2fb 0%, #1aaee7 100%);
  border: 2px solid rgba(214, 247, 255, .94);
  border-radius: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.22;
  box-shadow: 0 0 18px rgba(0, 229, 255, .2), inset 0 2px 0 rgba(255, 255, 255, .34);
}

.pcard .btn:hover {
  background: linear-gradient(180deg, #44cdfd 0%, #22baf0 100%);
  transform: translateY(-2px);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 34px;

  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;

  border: 2px solid transparent;
  border-radius: 14px;

  /* button shape + subtle bottleneck */


  /* inner background with soft white center */
  background:
    radial-gradient(ellipse at center,
      rgba(255, 255, 255, .16) 0%,
      rgba(255, 255, 255, .06) 28%,
      rgba(0, 0, 0, .15) 70%) padding-box,

    /* border gradient */
    linear-gradient(90deg,
      rgba(255, 255, 255, .95) 0%,
      rgba(180, 245, 255, .92) 12%,
      rgba(0, 229, 255, .95) 55%,
      rgba(0, 229, 255, .45) 100%) border-box;

  box-shadow:
    inset 0 0 12px rgba(255, 255, 255, .08),
    0 0 18px rgba(0, 229, 255, .14);

  transition:
    transform .15s,
    box-shadow .2s;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(0, 229, 255, .1);
  box-shadow: 0 0 18px rgba(0, 229, 255, .22)
}

.btn-ghost {
  background: transparent;
  border-color: #fff;
  color: #fff;
  box-shadow: none
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .05)
}

.btn-cyan {
  background: linear-gradient(180deg, #2af0ff 0%, #00b8d4 100%);
  border-color: transparent;
  color: #001b22;
  box-shadow: 0 0 18px rgba(0, 229, 255, .45), inset 0 1px 0 rgba(255, 255, 255, .45);
}

.btn-cyan:hover {
  background: linear-gradient(180deg, #5bf6ff 0%, #00d2ee 100%)
}

.btn-grey {
  background: linear-gradient(180deg, var(--grey-button) 0%, var(--grey-button-dark) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25);
}

.btn-grey:hover {
  background: linear-gradient(180deg, #b2b7bb 0%, #878d93 100%)
}

.audience {
  border: 2px solid var(--line);
  border-radius: 20px;
  padding: 26px 36px 34px;
  margin: 34px auto 0;
  max-width: 1430px;
  background: rgba(0, 0, 0, .4);
  box-shadow: 0 0 18px rgba(0, 229, 255, .1);
}

.audience-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 0;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  padding: 8px 0 26px;
  margin-bottom: 22px;
}

.audience-cols div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 0 24px;
  color: #fff;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 34px);
  line-height: 1.38;
  border-right: 1px solid var(--line-soft);
}

.audience-cols div:last-child {
  border-right: 0
}

.audience-list {
  text-align: center
}

.audience-list .lead {
  color: var(--cyan-2);
  font-size: clamp(19px, 1.7vw, 34px);
  font-weight: 700;
  line-height: 1.45;
  margin: 0 auto 22px;
  max-width: 980px
}

.audience-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--cyan-2);
  font-weight: 700;
  font-size: clamp(18px, 1.65vw, 34px);
  line-height: 1.82
}

.audience-list li {
  padding: 0
}

.audience-list .end {
  color: var(--cyan-2);
  margin: 22px auto 0;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 34px);
  line-height: 1.5;
  max-width: 1120px
}

@media (max-width:780px) {
  .audience {
    padding: 22px 20px 28px
  }

  .audience-cols {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 0 18px;
    margin-bottom: 18px
  }

  .audience-cols div {
    min-height: 64px;
    padding: 10px 16px;
    font-size: 18px
  }
}

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 78px;
  max-width: 1070px;
  margin: 18px auto 0;
}

.services .item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  letter-spacing: .04em;
  font-size: 22px;
  padding: 6px 0;
}

.color-grey {
  color: #c3c3c3 !important;
}

.services .item::before {
  content: "";
  width: 28px;
  height: 28px;
  background: url('assets/Nuoli%20sininen.png') no-repeat center/contain;
  flex: 0 0 28px;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, .55));
}

@media (max-width:700px) {
  .services {
    grid-template-columns: 1fr;
    gap: 12px 0
  }
}

.diff-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 34px auto 0;
}

/* .diff-card{
  border:2px solid rgba(0,229,255,.92);
  border-radius:22px;
  padding:20px;
  background:linear-gradient(180deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.8) 100%);
  display:grid;
  grid-template-columns:minmax(0,1fr) 220px;
  align-items:center;
  min-height:226px;
  box-shadow:0 0 0 1px rgba(0,229,255,.14) inset, 0 0 18px rgba(0,229,255,.14);
} */
.diff-card {
  position: relative;
  border: 0;
  border-radius: 22px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .8) 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  min-height: 226px;
  box-shadow: 0 0 0 1px rgba(0, 229, 255, .10) inset;
}

.diff-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(65deg, rgba(255, 255, 255, .88) 0%, rgba(0, 229, 255, .95) 58%, rgba(0, 229, 255, .60) 64%, rgba(45, 55, 60, .95)78%, rgba(255, 255, 255, .28) 0%);
  pointer-events: none;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.diff-card .text {
  padding-right: 8px
}

.diff-card h4 {
  margin: 0 0 18px;
  font-size: clamp(28px, 2vw, 42px);
  color: #fff;
  font-weight: 700;
  line-height: 1.25
}

.diff-card p {
  margin: 0;
  color: #fff;
  font-size: clamp(19px, 1.05vw, 20px);
  line-height: 1.55;
  max-width: 34ch
}

.diff-card .ico {
  width: 190px;
  height: 190px;
  object-fit: contain;
  justify-self: end
}

.diff-card.wide {
  grid-column: 1/-1;
  max-width: 1140px;
  margin: 0 auto
}

.diff-card.full {
  grid-column: 1/-1;
  max-width: 1140px;
  margin: 0 auto
}

@media (max-width:900px) {
  .diff-wrap {
    grid-template-columns: 1fr
  }

  .diff-card,
  .diff-card.wide,
  .diff-card.full {
    max-width: none;
    grid-column: auto
  }
}

@media (max-width:720px) {
  .diff-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 26px 22px 24px;
    min-height: 0
  }

  .diff-card .text {
    padding-right: 0
  }

  .diff-card p {
    max-width: none
  }

  .diff-card .ico {
    width: 110px;
    height: 110px
  }
}

.blog {
  background: #060707;
  border-top: 4px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
  padding: 34px 28px 28px;
  margin-top: 34px;
}

.blog-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
  margin-bottom: 130px;
}

.blog-title {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  align-self: center;
  line-height: 1.35;
  letter-spacing: 0;
  /* padding:16px 24px 16px 10px; */
}

.blog-card {
  background: #fff;
  color: #000;
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 150px;
  text-decoration: none;
}

.blog-card .thumb {
  width: 112px;
  height: 100%;
  object-fit: cover
}

.blog-card .body {
  padding: 10px 10px 8px;
  display: flex;
  flex-direction: column
}

.blog-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  text-decoration: underline;
  line-height: 1.25
}

.blog-card p {
  margin: 0 0 10px;
  font-size: 17px;
  color: #1f1f1f;
  flex: 1;
  line-height: 1.35
}

.blog-card .more {
  font-size: 15px;
  text-align: center;
  color: #111;
  margin-top: auto
}

@media (max-width:1000px) {
  .blog-inner {
    grid-template-columns: 1fr 1fr
  }

  .blog-title {
    grid-column: 1/-1;
    text-align: center;
    padding: 0 0 18px
  }
}

@media (max-width:640px) {
  .blog-inner {
    grid-template-columns: 1fr
  }

  .products-grid-en {
    grid-template-columns: unset;
  }

  .audience-cols {
    grid-template-columns: unset;
  }
  
  .tarjolla {
    display: block;
  }

  .tarjolla .left img {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .mdnasection {
    display: block !important;
  }

  .steps {
    display: grid !important;
    gap: 15px !important;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
  }

  .mdna-illu img {
    max-width: 100% !important;
  }
}

.contact {
  padding: 72px 28px 34px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr .92fr;
  gap: 4px;
}

.contact-left h2 {
  margin: 0 0 10px;
  color: #fff;
  font-weight: 500;
  font-size: 32px
}

.contact-left p.sub {
  margin: 0 0 38px;
  color: #fff;
  font-size: 28px
}

.contact-left .product-line {
  text-align: center;
  color: #fff;
  font-style: italic;
  font-weight: 700;
  margin: 10px 0 28px;
  font-size: 22px;
}

.contact-left .product-line em {
  color: var(--cyan);
  font-style: italic
}

.checkboxes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px
}

.cbx {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 18px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
}

.cbx input {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #505659;
  background: #34393c;
  border-radius: 0;
  cursor: pointer;
  margin: 0;
  display: inline-grid;
  place-content: center;
  flex: 0 0 18px;
}

.cbx input:checked {
  background: var(--cyan);
  border-color: var(--cyan)
}

.cbx input:checked::after {
  content: "";
  width: 10px;
  height: 10px;
  background: url('assets/Checkmark.png') center/contain no-repeat;
}

.contact-am {
  text-align: center;
  color: #fff;
  font-size: 17.5px;
  line-height: 1.6;
  margin: 28px 0 0
}

.contact-am b {
  display: block;
  margin-bottom: 6px
}

.contact-form {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 0px 16px;
  align-items: center
}

.contact-form label {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: right;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #cfd0d3;
  border: 0;
  border-radius: 16px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
  color: #111;
}

.contact-form input {
  height: 32px
}

.contact-form textarea {
  background: #cfd0d3;
  min-height: 124px;
  resize: vertical;
  border-radius: 4px
}

.contact-form .send-row {
  grid-column: 1/-1;
  display: flex;
  justify-content: flex-end;
  margin-top: 10px
}

.contact-form .btn {
  min-width: 176px;
  min-height: 58px;
  border-color: #fff;
  font-size: 18px;
  letter-spacing: 0
}

.contact-social {
  grid-column: 1/-1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.contact-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, .08);
  border: 1px solid rgba(0, 229, 255, .4);
  transition: transform .15s, background .15s;
}

.contact-social a:hover {
  transform: translateY(-2px);
  background: rgba(0, 229, 255, .18)
}

.contact-social img {
  width: 24px;
  height: 24px
}

@media (max-width:900px) {
  .contact {
    grid-template-columns: 1fr
  }
}

@media (max-width:640px) {
  .contact-form {
    grid-template-columns: 1fr
  }

  .contact-form label {
    text-align: left
  }
}

.footer {
  padding: 22px 28px 34px;
  max-width: var(--max);
  margin: 0 auto;
  display: block;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: end;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0px
}

.footer-row {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-weight: 700;
  font-size: 24px
}

.footer-row img {
  width: 70px;
  height: 70px
}

.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 16px
}

.footer-brand img.logo {
  height: 80px;
  width: auto
}

.footer-brand .social img {
  width: 68px;
  height: 68px
}

@media (max-width:780px) {
  .footer {
    grid-template-columns: 1fr
  }
}

.product-hero {
  padding: 54px 28px 20px;
  text-align: center
}

.product-hero .brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px
}

.product-hero .brand img {
  height: auto;
  max-width: 420px;
  width: auto
}

.product-hero .brand.logo img {
  height: auto;
  max-width: 100%;
  width: 900px;
  margin-top: 100px;
}

.product-hero h1 {
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  margin: 40px auto;
  max-width: 1260px;
  line-height: 1.7;
  text-shadow: 0 0 18px rgba(255, 255, 255, .75), 0 0 18px rgba(0, 229, 255, .28);
}

.product-hero .lead {
  max-width: 1080px;
  margin: 0 auto;
  color: var(--cyan-2);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5
}

.nutshell {
  position: relative;
  border: 0;
  border-radius: 12px;
  padding: 16px 24px 20px;
  max-width: 820px;
  margin: 36px auto;
  background: rgba(0, 0, 0, .35);
  box-shadow: 0 0 12px rgba(0, 229, 255, .12);
}

.nutshell::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(65deg, rgba(255, 255, 255, .88) 0%, rgba(0, 229, 255, .95) 58%, rgba(0, 229, 255, .60) 64%, rgba(45, 55, 60, .95) 78%, rgba(255, 255, 255, .28) 0%);
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.nutshell h3 {
  color: var(--cyan-2);
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 12px;
  text-shadow:
    0 0 22px rgba(0, 229, 255, .85),
    0 0 10px rgba(0, 229, 255, .5),
    0 0 26px rgba(0, 229, 255, .28);
}

.nutshell ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.nutshell li {
  padding: 6px 0 6px 28px;
  color: #fff;
  position: relative;
  font-size: 18px;
  text-align: left;
  line-height: 1.5
}

.nutshell li::before {
  content: "►";
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--cyan);
  display: inline-block;
  transform: scale(1.4);
}

.cta-row {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin: 28px 0;
  flex-wrap: wrap;

}

/* .cta-row .btn {
  min-width: 170px
} */
.cta-row .btn {
  position: relative;
  border: none;
  border-radius: 16px;
}

.cta-row .btn::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* 1px instead of 2px */

  background: #8ef7ff;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  box-shadow:
    0 0 4px rgba(142,247,255,.7),
    0 0 10px rgba(142,247,255,.35);

  pointer-events: none;
}
.cta-row .btn {
  /* position: relative;
  min-width: 170px;
  padding: 14px 30px;
  border: none;
  border-radius: 14px;
 
  z-index: 1;
  overflow: hidden; */
}

/* Static Gradient Border */
.cta-row .btn::before {
  /* content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
 
  border-radius: inherit;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, .88),
      rgba(0, 229, 255, .95),
      rgba(0, 229, 255, .60) 64%,
      rgba(45, 55, 60, .95),
      rgba(255, 255, 255, .28)
      );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none; */


  
}

.split-hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 40px;
  max-width: 1180px;
  margin: 10px auto 20px;
  align-items: center;
  padding: 0 28px;
}

.split-hero .right {
  border-left: 2px solid var(--cyan);
  padding-left: 34px
}

.split-hero .right p {
  color: #fff;
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 0px;
}

.split-hero .right ul {
  color: var(--cyan-2);
  margin: 0px 14px 0 22px;
  padding-left: 22px;
  font-weight: 700;
  font-size: 20px;
}

.split-hero .left p,
.split-hero .left ul {
  color: #fff
}

@media (max-width:900px) {
  .split-hero {
    grid-template-columns: 1fr
  }

  .split-hero .right {
    border-left: 0;
    padding-left: 0
  }
}

.feed-card {
  border: 1.5px solid var(--cyan);
  border-radius: 10px;
  padding: 28px 24px;
  margin: 22px auto;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 24px;
  align-items: center;
  background: rgba(0, 0, 0, .38);
  position: relative;
}

.feed-card .tag {
  position: absolute;
  top: -15px;
  left: 16px;
  background: #0a0a0a;
  padding: 4px 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 16px;
  border: 2px solid #fff;
  border-radius: 12px;
}

.feed-card h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.08;
  text-shadow: none
}

.feed-card .center img {
  max-height: 120px;
  margin: 0 auto
}

.feed-card .center p {
  color: var(--cyan-2);
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 14px 0 0;
  line-height: 1.3
}

.feed-card .desc {
  color: #fff;
  font-size: 14.5px;
  line-height: 1.52
}

@media (max-width:900px) {
  .feed-card {
    grid-template-columns: 1fr;
    text-align: center
  }
}

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 64px;
  max-width: 1120px;
  margin: 24px auto;
  padding: 0 20px
}
.faq-end{
    width: 50%;
  margin: 0 auto;
}
.faq-end h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px
}
.faq h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px
}

.faq-end p {
  color: #e5f7fa;
  font-size: 19.5px;
  line-height: 1.58;
  margin: 0 0 20px
}
.faq p {
  color: #e5f7fa;
  font-size: 19.5px;
  line-height: 1.58;
  margin: 0 0 20px
}

@media (max-width:780px) {
  .faq {
    grid-template-columns: 1fr
  }
}
.gridimg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  max-width: 1180px;
  margin: 24px auto;
}
.malwarelogo{
  display: block;
  margin: 0 auto;
}
.gridimg img {
  width: 100%;
  height: auto;
  display: block;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 24px auto;
  padding: 0 28px
}

.benefit {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
  background: rgba(0, 18, 18, .5);
  min-height: 424px;
}

.benefit .ico {
  height: 98px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center
}

.benefit .ico img {
  max-height: 92px
}

.benefit h4 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.25
}

.benefit .save {
  color: var(--cyan-2);
  font-style: italic;
  font-size: 18px;
  margin: 0 0 14px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px
}

.benefit .save b {
  display: block;
  font-size: 18px;
  font-style: italic;
  font-weight: 700
}

.benefit .save em {
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1
}

.benefit hr {
  border: 0;
  border-top: 1px solid var(--line-soft);
  margin: 14px 0
}

.benefit p {
  color: #fff;
  font-size: 18px;
  line-height: 1.52;
  text-align: center
}

@media (max-width:900px) {
  .benefits {
    grid-template-columns: 1fr
  }
}

/* CTI Uhkatiedon taloudelliset hyödyt — kortit valmiina koostekuvina */
.benefits-img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: 1680px;
  margin: 34px auto 0;
  padding: 0 28px;
  align-items: stretch;
}

.benefit-img {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 229, 255, .18), 0 0 22px rgba(0, 229, 255, .12);
  transition: transform .2s, box-shadow .2s;
}

.benefit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

.benefit-img:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, .35), 0 0 28px rgba(0, 229, 255, .28)
}

@media (max-width:900px) {
  .benefits-img {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 18px
  }
}

.feature-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1120px;
  margin: 0 auto
}

@media (max-width:900px) {
  .feature-grid-2 {
    grid-template-columns: 1fr
  }
}

.info-panel {
  border: 1.5px solid var(--cyan);
  border-radius: 10px;
  background: rgba(0, 0, 0, .38);
  padding: 24px;
  font-size: 22px;
  text-align: center;
}

.info-panel.dark {
  background: rgba(0, 0, 0, .55)
}

.info-panel h3,
.info-panel h4 {
  margin: 0 0 14px
}

.mini-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 144px;
  max-width: 820px;
  margin: 26px auto 0;
}

.mini-benefit {
  border: 1.5px solid var(--line-soft);
  border-radius: 12px;
  padding: 16px 18px;
  background: rgba(0, 0, 0, .3);
  text-align: center;
}

.mini-benefit h4 {
  margin: 0 0 10px;
  color: var(--cyan-2);
  font-size: 22px
}

.mini-benefit p {
  margin: 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.45
}

@media (max-width:820px) {
  .mini-benefits {
    grid-template-columns: 1fr
  }
}

.chart-compare {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  max-width: 1120px;
  margin: 24px auto 0;
  align-items: center;
}

.compare-bars {
  padding: 10px 20px
}

.compare-bars .top-label {
  color: #bfc7ca;
  text-align: center;
  margin: 0 0 16px;
  font-size: 20px
}

.compare-bars .bar {
  background: #8ceef6;
  color: #000;
  border-radius: 4px;
  padding: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
}

.compare-bars .bar.small {
  width: 30% !important;
  min-height: 72px;
  padding: 14px;
}

.compare-bars .bar.large {
  width: 86%;
  min-height: 96px;
  /* margin-left: auto; */
  margin-right: 0
}
.grid {
    display: flex;
    align-items: center;   /* vertically centers the text */
    gap: 14px;
}

.grid .bar {
    flex: 0 0 auto;        /* prevents the bar from shrinking */
}

.grid p {
    margin: 0;
    flex: 1;
    text-align: left;
}
.compare-bars p {
  color: #fff;
  font-size: 19px;
  text-align: center;
  margin: 10px 0 0
}

@media (max-width:900px) {
  .chart-compare {
    grid-template-columns: 1fr
  }

  .compare-bars .bar.small,
  .compare-bars .bar.large {
    width: 100%;
    margin: 0 0 14px
  }
}

/* .year-card {
  border: 1px solid var(--cyan);
  border-radius: 10px;
  padding: 34px 34px 34px;
  text-align: center;
  width: 100%;
  max-width: 460px;
  background: rgba(0, 0, 0, .4);
  display: grid;
  align-items: end;
  justify-content: center;
  margin: 0px auto;
} */
.year-card {
    position: relative;
    border-radius: 10px;
    padding: 34px;
    text-align: center;
    width: 100%;
    max-width: 460px;
    background: rgba(0, 0, 0, .4);
    display: grid;
    align-items: end;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

.year-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        /* Top - 90% */
        linear-gradient(to right,
            transparent 5%,
            var(--cyan) 5%,
            var(--cyan) 95%,
            transparent 95%) top / 100% 1px no-repeat,

        /* Left - 100% */
        linear-gradient(to bottom,
            var(--cyan),
            var(--cyan)) left / 1px 100% no-repeat,

        /* Bottom - 20% then fade */
        linear-gradient(to right,
            transparent 40%,
            var(--cyan) 40%,
            var(--cyan) 60%,
            rgba(0,255,255,0) 100%) bottom / 100% 1px no-repeat;
}
.mt-40{
  margin-top: 40px;
}
.year-card .label {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
}

.year-card .num {
  color: #d7d7d8;
  font-size: 152px;
  font-weight: 700;
  line-height: .95;
  margin-top: 0px
}

.year-card hr {
  border: 0;
  border-top: 48px solid #dcdcdc;
  margin: 0px;
  width: 100%
}

.values {
  max-width: 880px;
  margin: 36px auto;
  padding: 0 28px
}

.value-row {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 44px;
  align-items: center;
  padding: 20px 0;
}

.value-row .text {
  text-align: center
}

.value-row h4 {
  color: var(--cyan-2);
  margin: 0 0 10px;
  font-size: 22px
}

.value-row p {
  color: #fff;
  margin: 0;
  font-size: 20px;
  line-height: 1.55
}

.value-row img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  justify-self: center
}

@media (max-width:700px) {
  .value-row {
    grid-template-columns: 1fr
  }

  .value-row img {
    width: 140px;
    height: 140px
  }
}

.solution-banners {
  max-width: 1120px;
  margin: 34px auto 0;
  display: grid;
  gap: 24px
}

.solution-banner {
  background: rgba(104, 108, 112, .78);
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 26px;
}

.solution-banner img {
  max-width: 265px
}

.solution-banner p {
  margin: 0;
  color: var(--cyan-2);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center
}

.solution-center {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 24px;
  padding: 10px 40px 0
}

.solution-center p {
  margin: 0;
  color: var(--cyan-2);
  font-size: 18px;
  font-weight: 700;
  text-align: center
}

.solution-center img {
  max-width: 265px;
  justify-self: center
}

@media (max-width:820px) {

  .solution-banner,
  .solution-center {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px
  }

  .solution-banner img,
  .solution-center img {
    margin: 0 auto
  }
}

.contact-hero {
  text-align: center;
  padding: 90px 28px 70px
}

.contact-hero h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  text-shadow: 0 0 18px rgba(255, 255, 255, .78), 0 0 16px rgba(0, 229, 255, .28);
  margin: 0 0 18px
}

.contact-hero h2 {
  color: var(--cyan-2);
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 0 14px rgba(0, 229, 255, .45)
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 118px;
  max-width: 980px;
  margin: 28px auto 0
}

.usecase-card {
  border: 1.5px solid var(--line-soft);
  border-radius: 10px;
  padding: 20px 22px;
  background: rgba(0, 0, 0, .25);
  text-align: center
}

.usecase-card h4 {
  margin: 0 0 10px;
  color: var(--cyan-2);
  font-size: 22px
}

.usecase-card p {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.5
}

.usecase-card.centered {
  grid-column: 1/-1;
  max-width: 380px;
  margin: 0 auto
}

@media (max-width:820px) {
  .usecase-grid {
    grid-template-columns: 1fr
  }

  .usecase-card.centered {
    max-width: none
  }
}

.placeholder-benefits {
  margin: 26px auto 0;
  max-width: 760px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid #e53935;
  border-radius: 6px;
  background: rgba(0, 0, 0, .35);
}

.placeholder-benefits h3 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em
}

.simple-page {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 28px;
  color: #fff
}

.simple-page h1 {
  color: #fff;
  text-shadow: 0 0 22px rgba(0, 229, 255, .4);
  margin-bottom: 24px
}

.simple-page h2 {
  color: var(--cyan);
  margin-top: 30px
}

.simple-page p,
.simple-page li {
  color: #dff5f8;
  line-height: 1.6;
  font-size: 20px;
}

.c-card {
  position: relative;
  padding: 20px;
  border-radius: 0;
  background: transparent;
  text-align: center;
  display: grid;
  grid-template-rows: auto auto auto;
  justify-items: center;
  /* min-height: 744px; */
  border: 0;
  overflow: hidden;
}

.ccard-logo {
  width: min(100%, 430px);
  height: auto;
  object-fit: contain;
  object-position: center top;
  display: block;
}

/* ===== CTI page ===== */
.product-hero h1 .accent {
  color: var(--cyan-2);
  text-shadow: 0 0 18px rgba(0, 229, 255, .55)
}

.cti-compare {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  gap: 0;
  max-width: 840px;
  margin: 40px auto 0;
  align-items: stretch;
  padding: 20px;
  border: 1px solid #fff;
  border-radius: 14px;

}

.cti-compare-card {
  border: 1.5px solid var(--cyan);
  border-radius: 14px;
  background: rgba(0, 0, 0, .55);
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  /* min-height:620px; */
  box-shadow: 0 0 18px rgba(0, 229, 255, .10), inset 0 0 22px rgba(0, 229, 255, .04);
}

.cti-compare-card .cti-head {
  margin: 0 0 0px;
  color: var(--cyan-2);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(0, 229, 255, .35);
}

.cti-compare-card .cti-text {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.cti-compare-card .cti-icon {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 0px;
}

.cti-compare-card .cti-icon img {
  max-width: 120px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 229, 255, .25));
}

.cti-connector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cti-connector .cti-dash {
  display: block;
  width: 100%;
  height: 0;
  border-top: 3px dashed #ffffff;
  opacity: .95;
}

.cti-connector .cti-arrow {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cyan);
  color: #0b1418;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 0 14px rgba(0, 229, 255, .55);
  padding-left: 3px;
}

@media (max-width:900px) {
  .cti-compare {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .cti-connector {
    height: 60px;
    transform: rotate(90deg)
  }

  .cti-compare-card {
    min-height: 0;
    padding: 30px 28px
  }

  .cti-compare-card .cti-text {
    font-size: 17px
  }
}

/* .formats-card {
  position: relative;
  border: 1.5px solid var(--cyan);
  border-radius: 22px;
  padding: 30px;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(120% 80% at 100% 50%, rgba(0, 128, 140, .55) 0%, rgba(0, 80, 90, .28) 35%, rgba(0, 0, 0, .55) 70%),
    rgba(0, 0, 0, .55);
  box-shadow: 0 0 24px rgba(0, 229, 255, .18), inset 0 0 0 1px rgba(0, 229, 255, .18);
} */

.formats-card {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--cyan);
  border-radius: 22px;
  padding: 30px;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 24px rgba(0, 229, 255, .18),
              inset 0 0 0 1px rgba(0, 229, 255, .18);
}

.formats-card::before,
.formats-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.formats-card::after {

    right: -35px;
  top: -100px;
  width: 420px;
  height: 420px;
  background-image: url("/assets/Revontuli_-grafiikka.png");
  background-position: left bottom;
  opacity: 0.9;
}

.formats-card::before {
  left: -40px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  background-image: url("/assets/Revontuli_-grafiikka.png");
  background-position: right top;
  transform: rotate(180deg);
  opacity: 0.9;
}

.formats-card > * {
  position: relative;
  z-index: 1;
}

.formats-card h3 {
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  margin: 0 0 0px;
  line-height: 1.18;
  letter-spacing: .02em;
  text-shadow: 0 0 18px rgba(255, 255, 255, .35);
}

.formats-card h3 .cyan {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(0, 229, 255, .55)
}

.formats-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 36px;
  display: inline-block;
  text-align: left;
}

.formats-list li {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 0 0px;
  color: #fff;
  font-weight: 700;
  font-size: clamp(16px, 1vw, 20px);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.formats-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: var(--cyan);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, .7));
}

.formats-foot {
  margin: 0px auto 0;
  color: #fff;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.5;
  max-width: 1180px;
}

.formats-foot b {
  font-weight: 800
}

@media (max-width:760px) {
  .formats-card {
    padding: 34px 22px
  }

  .formats-list li {
    font-size: 18px;
    gap: 16px
  }
}

.tarjolla {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  padding: 20px;
  align-items: center;
  border-radius: 14px;
}

.tarjolla::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(65deg, rgba(255, 255, 255, .88) 0%, rgba(0, 229, 255, .95) 58%, rgba(0, 229, 255, .60) 64%, rgba(45, 55, 60, .95) 78%, rgba(255, 255, 255, .28) 0%);
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.tarjolla .left {
  text-align: center;
  color: #fff
}

.tarjolla .left p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.55
}

.tarjolla .left img {
  max-width: 540px;
  margin: 0 auto
}
.blu-btn{
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, .06) 28%, rgba(0, 0, 0, .15) 70%) padding-box, /* border gradient */ linear-gradient(90deg, rgba(255, 255, 255, .95) 0%, rgba(180, 245, 255, .92) 12%, rgba(0, 229, 255, .95) 55%, rgba(0, 229, 255, .45) 100%) border-box !important;
}
.tarjolla .right h3 {
  color: var(--cyan-2);
  font-size: 22px;
  margin: 0 0 18px;
  font-weight: 700;
  text-shadow:
  0 0 8px rgba(255, 255, 255, .95),
  0 0 18px rgba(255, 255, 255, .75),
  0 0 12px rgba(0, 229, 255, .65),
  0 0 24px rgba(0, 229, 255, .55),
  0 0 40px rgba(0, 229, 255, .35);
}

.tarjolla .right .row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 14.5px;
  line-height: 1.5;
}

.tarjolla .right .row img {
  width: 22px;
  height: 22px
}

@media (max-width:900px) {
  .tarjolla {
    grid-template-columns: 1fr
  }
}

.feeds-stack {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px
}

.feed-card-2 {
  position: relative;
  border: 1.5px solid var(--cyan);
  border-radius: 18px;
  padding: 15px 20px;
  background: rgba(0, 0, 0, .42);
  display: grid;
  grid-template-columns: .6fr 1fr .2fr .6fr;
  gap: 4px;
  align-items: center;
}

.feed-card-2 .ftag {
  position: absolute;
  top: -18px;
  left: 22px;
  border: 1.5px solid var(--cyan);
  border-radius: 8px;
  padding: 3px 16px;
  background: #000;
  color: #fff;
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 20px;
}

.feed-card-2 h3 {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: .02em
}

.feed-card-2 .center-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px
}

.feed-card-2 .center-col img {
  max-height: 150px;
  max-width: 200px;
  object-fit: contain
}

.feed-card-2 .center-col .cap {
  color: var(--cyan-2);
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0;
  line-height: 1.35;
  text-shadow: 0 0 22px rgba(0, 229, 255, .85), 0 0 10px rgba(0, 229, 255, .5), 0 0 26px rgba(0, 229, 255, .28);

}

.feed-card-2 .desc {
  color: #fff;
  font-size: 16.5px;
  text-align: center;
  line-height: 1.55;
  margin: 0
}

@media (max-width:900px) {
  .feed-card-2 {
    grid-template-columns: 1fr;
    text-align: center
  }
}

.btn-blue {
  background: linear-gradient(180deg, #2bb8e2 0%, #1483b3 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 14px rgba(0, 229, 255, .35), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.btn-blue:hover {
  background: linear-gradient(180deg, #3cc8f2 0%, #1d97c9 100%);
  transform: translateY(-1px)
}

@media (max-width:900px) {
  .products {
    padding: 28px 16px 30px
  }

  .products::before,
  .products::after {
    height: 2px
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .pcard {
    padding: 40px 18px 28px;
    min-height: 0
  }

  .pcard::before,
  .pcard::after {
    inset: 0
  }

  .pcard-mid {
    padding: 38px 20px 28px
  }

  .pcard-logo {
    width: min(100%, 360px);
    margin: 0 auto 24px
  }

  .pcard:nth-child(1) .pcard-logo {
    width: min(100%, 392px);
    margin-top: 0;
    margin-bottom: 24px
  }

  .pcard:nth-child(2) .pcard-logo {
    width: min(100%, 308px);
    margin-top: 0;
    margin-bottom: 28px
  }

  .pcard:nth-child(3) .pcard-logo {
    width: min(100%, 312px);
    margin-top: 0;
    margin-bottom: 28px
  }

  .pcard h3 {
    max-width: none;
    margin-bottom: 18px;
    font-size: clamp(24px, 7vw, 30px)
  }

  .pcard p {
    max-width: 25ch
  }

  .pcard .btn {
    width: min(100%, 330px);
    font-size: 18px;
    min-height: 72px
  }

  .blog-card {
    grid-template-columns: 110px 1fr
  }

  .chart-compare {
    gap: 24px
  }
}

/* MalwareDNA illustrations with side labels */
.mdna-illu {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: center;
}

.mdna-illu img {
  max-width: 670px;
  height: auto;
  display: block;
  margin: 0;
  grid-column: 1;
  justify-self: start;
}

.mdna-bad-labels,
.mdna-good-labels {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-column: 2;
  width: 100%;
}

.mdna-bad-labels li {
  background: rgba(0, 0, 0, .55);
  border-left: 3px solid #ff3b3b;
  color: #ff8a8a;
  padding: 7px 10px;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.mdna-bad-labels li:first-child {
  color: #fff;
  border-left-color: #ffd400
}

.mdna-good-labels li {
  background: linear-gradient(90deg, rgba(0, 229, 255, .85), rgba(0, 229, 255, .55));
  color: #001b22;
  padding: 8px 12px;
  font-size: 10.5px;
  font-weight: 800;
  border-radius: 24px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .3px;
  box-shadow: 0 0 12px rgba(0, 229, 255, .35);
}

@media (max-width:900px) {
  .mdna-illu {
    grid-template-columns: 1fr
  }

  .mdna-illu img {
    grid-column: 1;
    max-width: 220px;
    margin: 0 auto
  }

  .mdna-bad-labels,
  .mdna-good-labels {
    grid-column: 1
  }
}



.steps {
  display: flex;
  align-items: center;
  gap: 30px;
  transform: translateX(-8px);
  /* helps match the crop in the screenshot */
}

.step {
  position: relative;
  border: 2px solid var(--line);
  border-radius: 5px;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
  padding: 20px 22px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(111, 210, 207, 0.08) inset;
}

.step span {
  display: block;
  white-space: pre-line;
  font-size: 16px;
}

.step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--line);
}

.step::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--line);
}

.step:last-child::after,
.step:last-child::before {
  display: none;
}

.w1 {
  width: 128px;
}

.w2 {
  width: 128px;
}

.w3 {
  width: 128px;
}

.w4 {
  width: 128px;
  opacity: 0.55;
}



.usbflow-wrap {
  width: 457px;
  padding: 16px 18px 18px 19px;
  background: #000;
  box-sizing: border-box;
}

.usbflow-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.usbflow-item {
  display: flex;
  align-items: center;
  gap: 13px;
}

.usbflow-badge {
  width: 89px;
  height: 89px;
  min-width: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #96E8EA;
  color: #111;
  border-radius: 39px 0px 0px 39px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.03em;
  box-sizing: border-box;
}

.usbflow-text {
  width: 348px;
  height: 89px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: #96E8EA;
  color: #111;
  border-radius: 0px 39px 39px 0px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  box-sizing: border-box;
}
