* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #101828;
  background: #f7f8ff;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 7%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(20, 20, 80, .08);
}

.logo {
  font-size: 24px;
  font-weight: 800;
}

.logo span {
  color: #6d5dfc;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 15px;
}

.header-btn,
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 700;
  transition: .2s;
}

.header-btn,
.primary {
  color: #fff;
  background: linear-gradient(135deg, #ff2b2b, #c40000);
  box-shadow: 0 14px 28px rgba(255, 0, 0, .28);
}

.secondary,
.outline {
  color: #182230;
  border: 1px solid #d0d5dd;
  background: #fff;
}

.btn:hover,
.header-btn:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 110px 7%;
  background:
    radial-gradient(circle at 20% 20%, rgba(109,93,252,.28), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(0,184,217,.22), transparent 32%),
    linear-gradient(135deg, #eef2ff, #ffffff);
}

.hero-content {
  max-width: 760px;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e9e7ff;
  color: #5546e8;
  font-weight: 700;
}

h1 {
  margin: 20px 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
}

.hero p {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.6;
  color: #475467;
}

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



.section {
  padding: 80px 7%;
}

.section h2 {
  margin-bottom: 34px;
  font-size: clamp(30px, 4vw, 48px);
  text-align: center;
}

.light {
  background: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(20, 20, 80, .09);
}

.tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e6fbff;
  color: #007c91;
  font-weight: 700;
}

.card h3 {
  font-size: 24px;
}

.card p {
  color: #667085;
}

.price {
  margin: 24px 0;
}

.price span {
  font-size: 36px;
  font-weight: 800;
  color: #6d5dfc;
}

.price del {
  margin-left: 10px;
  color: #98a2b3;
}

.full {
  width: 100%;
  margin-top: 10px;
}

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

.app-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-radius: 18px;
  background: #f7f8ff;
  font-weight: 800;
}

.app-card a {
  color: #6d5dfc;
}

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing > div {
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(20, 20, 80, .08);
}

.big {
  font-size: 34px;
  font-weight: 900;
  color: #6d5dfc;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 7%;
  color: #fff;
  background: #101828;
}

.footer a {
  color: #7ddfff;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .cards,
  .apps,
  .pricing {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .header {
    padding: 14px 5%;
  }

  .header-btn {
    display: none;
  }

  .hero,
  .section {
    padding: 58px 5%;
  }

  .hero-actions,
  .footer {
    flex-direction: column;
  }

  .cards,
  .apps,
  .pricing {
    grid-template-columns: 1fr;
  }

  .card,
  .pricing > div {
    padding: 22px;
  }
}
.free-keys {
  padding: 80px 0 40px;
  background: #fff;
}

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

.free-keys h2 {
  margin: 0 0 90px;
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: #000;
}

.keys-list {
  display: flex;
  flex-direction: column;
}

.key-item {
  display: grid;
  grid-template-columns: 190px 1fr 170px;
  gap: 22px;
  padding: 16px 0;
  border-top: 1px solid #e6e6e6;
  align-items: flex-start;
}

.key-img {
  position: relative;
  width: 190px;
  height: 190px;
  overflow: hidden;
}

.key-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.key-img span {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 5px;
  background: #ff5a3c;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.key-info {
  padding-top: 4px;
}

.key-info h3 {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 800;
  color: #000;
}

.key-info p {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.4;
  color: #8c8c8c;
}

.key-actions {
  padding-top: 4px;
}

.price {
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 800;
  color: #000;
}

.price del {
  margin-left: 8px;
  color: #b9b9b9;
  font-weight: 700;
}

.btn-red,
.btn-border {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 34px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 420px;
  height: 72px;
  margin-bottom: 8px;

  background: linear-gradient(135deg, #ff2b2b, #c40000);
  color: #fff;

  font-size: 20px;
  font-weight: 800;

  border-radius: 18px;

  box-shadow: 0 14px 28px rgba(255,0,0,.28);
}

.btn-border {
  width: 145px;
  border: 1px solid #000;
  color: #000;
  background: #fff;
}

@media (max-width: 768px) {
  .free-keys {
    padding-top: 50px;
  }

  .free-keys h2 {
    margin-bottom: 45px;
    font-size: 28px;
  }

  .key-item {
    grid-template-columns: 140px 1fr;
    gap: 16px;
  }

  .key-img {
    width: 140px;
    height: 140px;
  }

  .key-actions {
    grid-column: 2;
    padding-top: 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 920px);
  }

  .key-item {
    grid-template-columns: 1fr;
  }

  .key-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .key-actions {
    grid-column: auto;
  }
}
.clients-section {
  padding: 70px 0 40px;
  background: #fff;
}

.clients-container {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
}

.clients-section h2 {
  margin: 0 0 85px;
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: #000;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 42px;
  row-gap: 90px;
}

.client-card img {
  width: 100%;
  height: 310px;
  display: block;
  object-fit: cover;
}

.client-card h3 {
  margin: 20px 0 18px;
  font-size: 18px;
  font-weight: 800;
  color: #000;
}

.client-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-client,
.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.btn-client {
  padding: 0 16px;
  background: #c91f3c;
  color: #fff;
}

.btn-more {
  padding: 0 18px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
}

@media (max-width: 900px) {
  .clients-section h2 {
    margin-bottom: 50px;
    font-size: 28px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 24px;
  }

  .client-card img {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .client-card img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .client-actions {
    align-items: stretch;
  }

  .btn-client,
  .btn-more {
    width: 100%;
  }
}
.prices-section {
  padding: 70px 0 80px;
  background: #fff;
  border-top: 2px solid #c52b14;
}

.prices-container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.prices-section h2 {
  margin: 0 0 105px;
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #000;
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 42px;
}

.price-card {
  min-height: 285px;
  padding: 38px 24px;
  border: 1px solid #dce3eb;
  border-radius: 8px;
  text-align: center;
  background: #fff;
}

.price-card h3 {
  max-width: 260px;
  margin: 0 auto 44px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  color: #000;
}

.price-main {
  margin-bottom: 28px;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  color: #000;
}

.price-card p {
  margin: 0 0 54px;
  font-size: 14px;
  font-weight: 800;
  color: #000;
}

.price-note {
  display: block;
  margin: -26px 0 34px;
  font-size: 12px;
  color: #9aa3ad;
}

.price-card del {
  display: block;
  margin: 0 0 38px;
  font-size: 28px;
  font-weight: 800;
  color: #cf1f45;
}

.price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  background: #c92a12;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.price-btn.wide {
  min-width: 220px;
}

@media (max-width: 900px) {
  .prices-section h2 {
    margin-bottom: 55px;
    font-size: 28px;
  }

  .prices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .prices-grid {
    grid-template-columns: 1fr;
  }

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

  .price-btn.wide {
    min-width: 100%;
  }
}
.text-section {
  padding: 60px 0 80px;
  background: #fff;
}

.text-container {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
}

.text-container p {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.7;
  color: #3c3c3c;
}

.text-container strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 800;
  color: #000;
}

@media (max-width: 600px) {
  .text-section {
    padding: 40px 0 60px;
  }

  .text-container p {
    font-size: 14px;
  }
}

.hero {
  padding: 40px 7% 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(109,93,252,.28), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(0,184,217,.22), transparent 32%),
    linear-gradient(135deg, #eef2ff, #ffffff);
}

.hero-wrap {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 56px;
}

.hero-content {
  max-width: 760px;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 35px -25px -25px 35px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(109, 93, 252, .22), rgba(0, 184, 217, .22));
  filter: blur(2px);
  z-index: 0;
}

.hero-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(20, 20, 80, .18);
}

@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-media {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 58px 5%;
  }

  .hero-media img {
    border-radius: 24px;
  }

  .hero-media::before {
    inset: 24px -14px -14px 24px;
    border-radius: 24px;
  }
}
.vpn-listing {
  padding: 40px 0 70px;
  background: #fff;
}

.vpn-listing__container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.vpn-listing__head {
  max-width: 630px;
  margin: 0 auto 10px;
}

.vpn-listing__head h2  {
  margin: 0;
  font-size: 26px;
  line-height: 1.12;
  font-weight: 400;
  color: #000;
  margin-bottom: 10px;
}

 
.vpn-listing__head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.12;
  font-weight: 400;
  color: #000;
    margin-bottom: 10px;

}

.vpn-list {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.vpn-card {
  max-width: 650px;
  padding: 6px 14px 12px;
  background: #d9d9d9;
}

.vpn-card h3 {
  margin: 0 0 8px;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 400;
  color: #000;
}

.vpn-card__body {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: start;
}

.vpn-card__image {
  width: 150px;
  height: 150px;
  background: #111;
}

.vpn-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vpn-card__content {
  padding-top: 2px;
}

.vpn-card__content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.18;
  color: #000;
}

.vpn-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-top: 14px;
}

.vpn-card__actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 10px;
  background: #ff4040;
  color: #000;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
}

.vpn-card__actions a:hover {
  background: #e72f2f;
}

@media (max-width: 700px) {
  .vpn-listing__head {
    max-width: 280px;
    margin-bottom: 8px;
    text-align: center;
  }

  .vpn-listing__head h2,
  .vpn-listing__head p {
    font-size: 24px;
  }

  .vpn-list {
    align-items: center;
  }

  .vpn-card {
    width: min(270px, 100%);
    padding: 0 12px 8px;
    background: #fff;
    border: 1px solid #cfcfcf;
  }

  .vpn-card h3 {
    margin-bottom: 8px;
    text-align: center;
    font-size: 24px;
  }

  .vpn-card__body {
    display: block;
  }

  .vpn-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-bottom: 2px;
  }

  .vpn-card__content p {
    font-size: 14px;
    line-height: 1.15;
  }

  .vpn-card__actions {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
  }

  .vpn-card__actions a {
    min-height: 34px;
    font-size: 14px;
  }
}
.vpn-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  font-size: 15px;
  line-height: 1.18;
  color: #000;
}

.vpn-row span {
  flex: 0 0 auto;
}

.vpn-icons {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px;
  min-width: 0;
}

.vpn-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  color: #000;
  text-decoration: none;
}

.vpn-icons svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
}

.vpn-icons img {
  width: 17px;
  height: 12px;
  display: block;
  object-fit: cover;
}

.vpn-icons--flags a {
  width: 18px;
  height: 13px;
}

@media (max-width: 700px) {
  .vpn-row {
    display: block;
    font-size: 14px;
    line-height: 1.15;
  }

  .vpn-icons {
    display: inline-flex;
    vertical-align: middle;
  }
}
.vpn-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  font-size: 15px;
  line-height: 1.18;
  color: #000;
}

.vpn-icons {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px;
}

.vpn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
}

.vpn-icon img {
  display: block;
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.vpn-icons--flags .vpn-icon {
  width: 18px;
  height: 13px;
}

.vpn-icons--flags .vpn-icon img {
  width: 18px;
  height: 13px;
  object-fit: cover;
}

.vpn-icon__text {
  font-size: 11px;
  line-height: 1;
}
.vpn-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 35px;
}

.vpn-pagination ul {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vpn-pagination li {
  margin: 0;
}

.vpn-pagination a,
.vpn-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 4px;
  border: 1px solid #d0d0d0;
  background: #fff;
  color: #000;
  font-size: 14px;
  text-decoration: none;
}

.vpn-pagination .active a,
.vpn-pagination .active span {
  background: #ff4040;
  border-color: #ff4040;
  color: #000;
}

.vpn-pagination a:hover {
  background: #ff4040;
  border-color: #ff4040;
}
.vpn-card__for {
  margin: 0;
  font-size: 15px;
  line-height: 1.18;
  color: #000;
}

.vpn-card__for span {
  margin-right: 4px;
}

.vpn-card__for a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vpn-card__for a:hover {
  color: #ff4040;
}
.vpn-list {
    margin-bottom: 20px;
}
.vpn-inner {
  padding: 40px 0 70px;
  background: #fff;
}

.vpn-inner__container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.vpn-inner__top {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 50px;
}

.vpn-inner__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #d9d9d9;
  overflow: hidden;
}

.vpn-inner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vpn-inner__main h1 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 400;
  color: #000;
}

.vpn-inner__intro {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.4;
  color: #000;
}

.vpn-inner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.vpn-inner__promo,
.vpn-inner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  font-size: 15px;
  text-decoration: none;
}

.vpn-inner__promo {
  background: #d9d9d9;
  color: #000;
}

.vpn-inner__btn--main {
  background: #ff4040;
  color: #000;
}

.vpn-inner__btn--border {
  border: 1px solid #000;
  color: #000;
  background: #fff;
}

.vpn-inner__params {
  margin-bottom: 50px;
}

.vpn-inner__params h2 {
  margin: 0 0 22px;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 400;
  color: #000;
}

.vpn-inner__params-list {
  border-top: 1px solid #d0d0d0;
}

.vpn-param {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #d0d0d0;
}

.vpn-param__name {
  font-size: 15px;
  line-height: 1.35;
  color: #666;
}

.vpn-param__value {
  font-size: 16px;
  line-height: 1.35;
  color: #000;
}

.vpn-inner__links a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vpn-inner__links a:hover {
  color: #ff4040;
}

.vpn-inner__content {
  max-width: 820px;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

.vpn-inner__content p {
  margin: 0 0 18px;
}

@media (max-width: 800px) {
  .vpn-inner__top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .vpn-inner__image {
    max-width: 360px;
  }

  .vpn-inner__main h1 {
    font-size: 32px;
  }

  .vpn-param {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .vpn-inner__actions {
    align-items: stretch;
  }

  .vpn-inner__promo,
  .vpn-inner__btn {
    width: 100%;
  }
  
 
}
.hero-actions .btn.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 420px;
  min-height: 72px;
  padding: 18px 32px;

  font-size: 18px;
  line-height: 1.2;
  text-align: center;

  border-radius: 18px;
}

.hero-actions .btn.primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 40px rgba(255,0,0,.38);
}
.hero-proof {
  margin-top: 14px;
  font-size: 15px;
  color: #667085;
}
.hero-proof {
  width: 420px;
  margin-top: 14px;
  text-align: center;
  font-size: 15px;
  color: #667085;
}
.how-get-key{
  padding:120px 30px;
  background:#f5f6ff;
}

.how-get-key-container{
  max-width:1800px;
  margin:0 auto;
}

.how-get-key-box{
  padding:90px 80px;

  border-radius:48px;

  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,.78),
    rgba(255,255,255,.55)
  );

  backdrop-filter:blur(20px);

  border:1px solid rgba(255,255,255,.7);

  box-shadow:
  0 10px 40px rgba(93,95,239,.05),
  inset 0 1px 0 rgba(255,255,255,.85);
}

.how-get-key__head{
  text-align:center;
  margin-bottom:90px;
}

.how-get-key__head h2{
  margin:0 0 24px;

  font-size:84px;
  line-height:1.05;
  letter-spacing:-3px;

  font-weight:800;

  color:#0f172a;
}

.how-get-key__head p{
  margin:0 auto;
  max-width:900px;

  font-size:28px;
  line-height:1.5;

  color:#667085;
}

.how-get-key__grid{
  display:grid;

  grid-template-columns:
  repeat(3,minmax(0,1fr));

  gap:40px;
}

.how-get-key__item{
  position:relative;

  text-align:center;
}

.how-get-key__step{
  width:74px;
  height:74px;

  margin:0 auto 36px;

  border-radius:999px;

  background:
  linear-gradient(
    135deg,
    #7c5cff,
    #5b3fff
  );

  color:#fff;

  font-size:34px;
  font-weight:800;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:
  0 10px 30px rgba(92,63,255,.35);
}

.how-get-key__icon{
  width:100%;
  height:340px;

  margin:0 auto 40px;

  border-radius:40px;

  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,.96),
    rgba(255,255,255,.72)
  );

  border:1px solid rgba(255,255,255,.9);

  backdrop-filter:blur(20px);

  box-shadow:
  0 20px 40px rgba(93,95,239,.08),
  inset 0 1px 0 rgba(255,255,255,.85);

  display:flex;
  align-items:center;
  justify-content:center;
}

.how-get-key__icon img{
  width:210px;
  height:auto;
  display:block;
}

.how-get-key__item h3{
  margin:0 0 24px;

  font-size:30px;
  line-height:1.2;

  font-weight:800;

  color:#0f172a;
}

.how-get-key__item p{
  max-width:420px;

  margin:0 auto;

  font-size:22px;
  line-height:1.6;

  color:#667085;
}

.how-get-key__arrow{
  position:absolute;

  top:230px;
  right:-28px;

  width:56px;
  height:56px;

  border-radius:999px;

  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:
  0 10px 30px rgba(15,23,42,.08);

  font-size:30px;
  color:#344054;

  z-index:5;
}

.how-get-key__bottom{
  margin-top:80px;

  display:grid;

  grid-template-columns:
  repeat(4,1fr);

  overflow:hidden;

  border-radius:28px;

  background:#fff;

  box-shadow:
  0 10px 40px rgba(15,23,42,.06);
}

.how-get-key__bottom-item{
  padding:32px 20px;

  text-align:center;

  font-size:20px;
  font-weight:600;

  color:#344054;

  border-right:
  1px solid rgba(226,232,240,.8);
}

.how-get-key__bottom-item:last-child{
  border-right:none;
}

@media(max-width:1200px){

  .how-get-key__grid{
    grid-template-columns:1fr;
  }

  .how-get-key__arrow{
    display:none;
  }

  .how-get-key__bottom{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:768px){

  .how-get-key{
    padding:80px 20px;
  }

  .how-get-key-box{
    padding:40px 24px;
  }

  .how-get-key__head h2{
    font-size:42px;
    letter-spacing:-1px;
  }

  .how-get-key__head p{
    font-size:20px;
  }

  .how-get-key__icon{
    height:220px;
  }

  .how-get-key__icon img{
    width:130px;
  }

  .how-get-key__item h3{
    font-size:28px;
  }

  .how-get-key__item p{
    font-size:18px;
  }

  .how-get-key__bottom{
    grid-template-columns:1fr;
  }

  .how-get-key__bottom-item{
    border-right:none;
    border-bottom:
    1px solid rgba(226,232,240,.8);
  }

  .how-get-key__bottom-item:last-child{
    border-bottom:none;
  }
}