@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Raleway:400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Lato:400,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playwrite+AU+QLD:wght@100..400&display=swap");

/* GENERAL STYLES */

* {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.6;
  background-color: #f5f5f5;
}

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

/* WELCOME STYLES */

.welcome {
  background-image: url("./assets/welcome-bg.png");
  background-color: #000;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-bottom: 60px;
  overflow-x: hidden;
}

/* HEADER STYLES */

header {
  width: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
}

header .header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

header .header-logo img {
  width: 40px;
  height: 40px;
  margin-right: 8px;
}

header .header-logo span {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  font-family: inherit;
}

header .header-nav {
  display: flex;
  gap: 40px;
}

header .header-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.2s, font-weight 0.2s;
  position: relative;
  padding: 2px 0;
}

header .header-nav a:hover {
  color: #b3b3b3;
}

header .header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

header .header-login {
  color: #fff;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  font-family: inherit;
}

header .header-login:hover {
  color: #b3b3b3;
}

header .header-register {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 24px;
  padding: 8px 28px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: background 0.2s, color 0.2s;
}

header .header-register:hover {
  background: #a8ff35;
  color: #000;
}

/* STARTER */

.welcome .starter {
  padding-top: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  overflow: hidden;
}

.welcome .starter h1 {
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  line-height: 112.00000000000001%;
}

.welcome .starter p {
  font-size: 18px;
  color: #8b8b8b;
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 150%;
  letter-spacing: 0%;
}

.welcome .starter .getStartBtn {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  background: #a8ff35;
  border-radius: 40px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.welcome .starter .getStartBtn:hover {
  background: #8bc34a;
  color: #fff;
  transition: background 0.2s, color 0.2s;
}

/* BUTTOM BUTTONS */

.BottomButtons {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

.BottomButtons button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #222;
  color: #fff;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  padding: 16px 28px 10px 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  position: relative;
  min-width: 260px;
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0.75;
}

.BottomButtons button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.BottomButtons .twitter {
  transform: rotate(-6deg);
}

.BottomButtons .facebook {
  transform: rotate(-8deg);
}

.BottomButtons .pinterest {
  transform: rotate(8deg);
}

.BottomButtons .pelmen {
  transform: rotate(8deg);
}

.BottomButtons button:hover {
  box-shadow: 0 10px 32px rgba(168, 255, 53, 0.18);
  background: #333;
  color: #a8ff35;
}

.BottomButtons button img:last-child {
  margin-left: 18px;
  width: 22px;
  height: 22px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.BottomButtons button:hover img:last-child {
  opacity: 1;
}

/* SOLUTION */

.solution {
  background-color: #a8ff35;
  padding-top: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  position: relative;
  padding-bottom: 80px;
}

.solution-arrows {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.solution-left,
.solution-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  gap: 8px;
}

.solution-left {
  margin-right: 16px;
}
.solution-right {
  margin-left: 16px;
}

.arrow-svg {
  width: 60px;
  height: 40px;
  margin-bottom: 4px;
  margin-top: 4px;
}

.arrow-text {
  font-family: "Playwrite AU QLD", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.solutionDescription {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: left;
  line-height: 1.3;
  max-width: 800px;
  text-align: center;
  padding-top: 40px;
}

.solution h2 {
  font-weight: 700;
  font-size: 72px;
  line-height: 86px;
  text-align: center;
  color: #000000;
  padding-bottom: 20px;
}

.solution .solutionButtonContainer {
  width: 502px;
  height: 202px;
  background: #f5f5f5;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution .solutionButtonContainer .solutionButton {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #222;
  color: #fff;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border: none;
  padding: 20px 36px 10px 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  position: relative;
  min-width: 260px;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* STARTUP */

/* LADDER TEXT */

.LadderText {
  margin: 64px auto 32px auto;
  max-width: 1300px;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  text-align: center;
  display: block;
  padding-top: 25px;
}

.ladder-bold {
  font-weight: 900;
  color: #111;
  display: inline;
}

.ladder-light {
  font-weight: 900;
  color: #b3b3b3;
  display: inline;
}

.Startup h2 {
  padding-top: 150px;
  font-weight: 700;
  font-size: 48px;
  line-height: 76px;
  text-align: center;
}

.StartupCompanies {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 32px;
  justify-items: center;
  align-items: center;
  margin: 48px auto 0 auto;
  max-width: 1100px;
  width: 100%;
  padding-bottom: 75px;
}

.company-card {
  background: #eaeaea;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 260px;
  transition: box-shadow 0.2s;
  cursor: pointer;
}

.company-card img {
  max-width: 140px;
  max-height: 48px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.company-card:hover {
  box-shadow: 0 6px 24px rgba(168, 255, 53, 0.18);
}

/* PLATFORMS */

.Platforms {
  padding-top: 120px;
  padding-bottom: 150px;
}

.Platforms h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 76px;
  text-align: center;
}

.Platforms .messangers {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 32px 32px;
  justify-items: center;
  align-items: center;
  margin: 48px auto 0 auto;
  max-width: 1200px;
  width: 100%;
  padding-bottom: 75px;
}

.Platforms .messangers .messangers-card {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 120px;
  transition: box-shadow 0.2s;
}

.Platforms .messangers .messangers-card:hover {
  box-shadow: 0 6px 24px rgba(168, 255, 53, 0.18);
}

.Platforms .Examples {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}

.Platforms .Examples img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.Platforms button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  gap: 10px;
  background: #000000;
  border-radius: 40px;
  color: #ffffff;
  font-weight: 700;
  margin: 0 auto;
  margin-top: 65px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.Platforms button:hover {
  background: #222222;
  color: #a8ff35;
  transition: background 0.2s, color 0.2s;
}

/* DEAL */

.Deal {
  background: #000000;
  color: #ffffff;
  padding-bottom: 125px;
}

.Deal h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 76px;
  text-align: center;
  padding-top: 80px;
  margin-bottom: 60px;
}

.DealBlockContainer {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.DealBlock {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  width: 340px;
  min-height: 560px;
  height: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 32px 32px 32px;
  position: relative;
  transition: box-shadow 0.2s;
  box-sizing: border-box;
}

.DealBlock--green {
  background: #a8ff35;
}

.DealBlock h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.DealBlock--green h4 {
  color: #111;
}

.DealBlock .deal-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
  font-weight: 600;
}

.DealBlock--green .deal-subtitle {
  color: #222;
}

.DealBlock hr {
  width: 100%;
  border: none;
  border-top: 1px solid #000;
  margin: 16px 0 28px 0;
}

.DealPrice {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 28px;
}

.DealPrice .price {
  font-size: 48px;
  font-weight: 700;
  color: #111;
}

.DealBlock--green .DealPrice .price {
  color: #111;
}

.DealPrice .per-month {
  font-size: 20px;
  color: #222;
  font-weight: 400;
  margin-bottom: 8px;
}

.DealFeatures {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  width: 100%;
}

.DealFeatures li {
  font-size: 17px;
  color: #222;
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.DealFeatures li::before {
  content: "✓";
  color: #000;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
}

.DealBlock--green .DealFeatures li::before {
  color: #111;
}

.DealButton {
  width: 90%;
  max-width: 260px;
  margin: 0 auto;
  padding: 16px 0;
  border: none;
  border-radius: 24px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.DealButton--green {
  background: #a8ff35;
  color: #111;
}

.DealButton--green:hover {
  background: #8bc34a;
  color: #fff;
}

.DealButton--black {
  background: #111;
  color: #fff;
}

.DealButton--black:hover {
  background: #222;
  color: #a8ff35;
}

.DealBlock--green .DealButton--black {
  background: #111;
  color: #fff;
}

.DealBlock--green .DealButton--black:hover {
  background: #222;
  color: #a8ff35;
}

/* CONTACT BLOCK */

.Contact {
  background: #a8ff35;
  height: 539px;
  width: 100%;
}

.Contact span {
  font-weight: 900;
  font-size: 72px;
  line-height: 112%;
  text-align: center;
  display: block;
}

.Contact .ContactBold {
  padding-top: 140px;
  color: #000000;
}

.Contact .ContactLight {
  color: #87d322;
}

.Contact button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 24px 80px;
  gap: 10px;
  background: #000000;
  border-radius: 40px;
  color: #ffffff;
  font-weight: 700;
  margin: 0 auto;
  margin-top: 50px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
}

.Contact button:hover {
  background: #222222;
  color: #a8ff35;
  transition: background 0.2s, color 0.2s;
}

/* FOOTER */

.Footer {
  background: #fff;
  border-top: 2px solid #ededed;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.Footer__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
}

.Footer__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.Footer__left img {
  width: 40px;
  height: 40px;
}

.Footer__left span {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-left: 8px;
  font-family: "Montserrat", sans-serif;
}

.Footer__right ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.Footer__right li {
  font-size: 16px;
  font-weight: 800;
}

.Footer__right a {
  color: #111;
  text-decoration: none;
  transition: color 0.2s;
  font-family: "Montserrat", sans-serif;
}

.Footer__right a:hover {
  color: #a8ff35;
}

/* --- ADAPTIVE STYLES --- */

/* 768px и меньше (планшеты) */
@media (max-width: 769px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 16px 12px;
    gap: 18px;
  }
  header .header-nav {
    gap: 18px;
    font-size: 16px;
  }
  header .header-actions {
    gap: 12px;
  }
  .welcome .starter h1 {
    font-size: 38px;
  }
  .welcome .starter p {
    font-size: 16px;
    max-width: 95vw;
  }
  .BottomButtons {
    flex-direction: column;
    gap: 16px;
  }
  .solution h2 {
    font-size: 38px;
    line-height: 1.1;
  }
  .solution-arrows {
    flex-direction: column;
    gap: 18px;
  }
  .solution .solutionButtonContainer {
    width: 95vw;
    height: 120px;
    min-width: unset;
  }
  .Startup h2 {
    font-size: 32px;
    padding-top: 60px;
    line-height: 1.2;
  }
  .LadderText {
    font-size: 28px;
    max-width: 95vw;
    padding-top: 10px;
  }
  .StartupCompanies {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
    max-width: 95vw;
    padding-bottom: 40px;
  }
  .company-card {
    width: 140px;
    height: 70px;
  }
  .company-card img {
    max-width: 90px;
    max-height: 36px;
  }
  .Platforms {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .Platforms h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  .Platforms .messangers {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 8px;
    max-width: 95vw;
    padding-bottom: 30px;
  }
  .Platforms .messangers .messangers-card {
    width: 60px;
    height: 60px;
  }
  .Deal h2 {
    font-size: 28px;
    line-height: 1.2;
    padding-top: 40px;
    margin-bottom: 30px;
  }
  .DealBlockContainer {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 95vw;
  }
  .DealBlock {
    width: 95vw;
    min-width: 0;
    max-width: 340px;
    height: auto;
    min-height: 0;
    padding: 24px 10px 24px 10px;
  }
  .Contact {
    height: auto;
    padding-bottom: 40px;
  }
  .Contact span {
    font-size: 32px;
    padding-top: 40px;
  }
  .Contact .ContactBold {
    padding-top: 40px;
  }
  .Contact button {
    padding: 16px 32px;
    font-size: 16px;
    margin-top: 30px;
  }
  .Footer__container {
    flex-direction: column;
    height: auto;
    gap: 18px;
    padding: 16px 10px;
  }
  .Footer__right ul {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* 425px и меньше (мобильные большие) */
@media (max-width: 426px) {
  header {
    flex-direction: column;
    padding: 10px 4vw;
    gap: 10px;
  }
  header .header-logo img {
    width: 32px;
    height: 32px;
  }
  header .header-logo span {
    font-size: 18px;
  }
  header .header-nav {
    gap: 10px;
    font-size: 14px;
    flex-wrap: wrap;
  }
  .welcome .starter h1 {
    font-size: 24px;
  }
  .welcome .starter p {
    font-size: 13px;
    max-width: 98vw;
  }
  .welcome .starter .getStartBtn {
    font-size: 14px;
    padding: 10px 16px;
  }
  .BottomButtons button {
    font-size: 14px;
    min-width: 120px;
    padding: 10px 10px 8px 8px;
  }
  .solution h2 {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .solution .solutionButtonContainer {
    width: 98vw;
    height: 70px;
    min-width: unset;
  }
  .arrow-svg {
    width: 32px;
    height: 22px;
  }
  .arrow-text {
    font-size: 11px;
  }
  .solutionDescription {
    font-size: 13px;
    padding-top: 16px;
  }
  .Startup h2 {
    font-size: 18px;
    padding-top: 30px;
    line-height: 1.2;
  }
  .LadderText {
    font-size: 14px;
    max-width: 98vw;
    padding-top: 5px;
  }
  .StartupCompanies {
    grid-template-columns: 1fr;
    gap: 10px 0;
    max-width: 98vw;
    padding-bottom: 20px;
  }
  .company-card {
    width: 98vw;
    max-width: 180px;
    height: 50px;
  }
  .company-card img {
    max-width: 60px;
    max-height: 24px;
  }
  .Platforms {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .Platforms h2 {
    font-size: 16px;
    line-height: 1.2;
  }
  .Platforms .messangers {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 4px;
    max-width: 98vw;
    padding-bottom: 10px;
  }
  .Platforms .messangers .messangers-card {
    width: 36px;
    height: 36px;
  }
  .Platforms .Examples img {
    max-width: 90vw;
  }
  .Platforms button {
    font-size: 14px;
    padding: 10px 18px;
    margin-top: 30px;
  }
  .Deal h2 {
    font-size: 16px;
    line-height: 1.2;
    padding-top: 20px;
    margin-bottom: 16px;
  }
  .DealBlockContainer {
    gap: 12px;
    max-width: 98vw;
  }
  .DealBlock {
    width: 98vw;
    max-width: 180px;
    padding: 12px 4px 12px 4px;
  }
  .DealBlock h4 {
    font-size: 18px;
  }
  .DealBlock .deal-subtitle {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .DealPrice .price {
    font-size: 22px;
  }
  .DealPrice .per-month {
    font-size: 12px;
  }
  .DealFeatures li {
    font-size: 11px;
    margin-bottom: 6px;
    padding-left: 18px;
  }
  .DealFeatures li::before {
    font-size: 12px;
    left: 0;
    top: 0;
  }
  .DealButton {
    font-size: 13px;
    padding: 10px 0;
    max-width: 120px;
  }
  .Contact {
    height: auto;
    padding-bottom: 20px;
  }
  .Contact span {
    font-size: 18px;
    padding-top: 18px;
  }
  .Contact .ContactBold {
    padding-top: 18px;
  }
  .Contact button {
    padding: 10px 18px;
    font-size: 13px;
    margin-top: 18px;
  }
  .Footer__container {
    flex-direction: column;
    height: auto;
    gap: 10px;
    padding: 10px 4px;
  }
  .Footer__left img {
    width: 24px;
    height: 24px;
  }
  .Footer__left span {
    font-size: 13px;
    margin-left: 4px;
  }
  .Footer__right ul {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .Footer__right li {
    font-size: 11px;
  }
}

@media (max-width: 321px) {
  .welcome .starter h1,
  .solution h2,
  .Platforms h2,
  .Deal h2,
  .Contact span {
    font-size: 12px !important;
  }
  .Startup h2 {
    font-size: 18px !important;
    padding-top: 12px;
    line-height: 1.2;
  }
  .LadderText {
    font-size: 11px !important;
    max-width: 98vw;
    padding-top: 2px;
    margin: 12px auto 8px auto;
  }
  .StartupCompanies {
    grid-template-columns: 1fr;
    gap: 8px 0;
    max-width: 98vw;
    padding-bottom: 10px;
  }
  .company-card {
    width: 98vw;
    max-width: 180px;
    height: 38px;
    min-width: 0;
    padding: 2px 1px 2px 1px;
    box-sizing: border-box;
    flex-shrink: 1;
  }
  .company-card img {
    max-width: 60px;
    max-height: 18px;
  }
  .Platforms {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .Platforms h2 {
    font-size: 16px;
    line-height: 1.2;
  }
  .Platforms .messangers {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 4px;
    max-width: 98vw;
    padding-bottom: 10px;
  }
  .Platforms .messangers .messangers-card {
    width: 28px;
    height: 28px;
  }
  .Platforms .Examples img {
    max-width: 90vw;
  }
  .Platforms button {
    font-size: 14px;
    padding: 10px 18px;
    margin-top: 30px;
  }
  .Deal h2 {
    font-size: 16px;
    line-height: 1.2;
    padding-top: 20px;
    margin-bottom: 16px;
  }
  .DealBlockContainer {
    gap: 12px;
    max-width: 98vw;
  }
  .DealBlock {
    width: 98vw;
    max-width: 180px;
    padding: 12px 4px 12px 4px;
  }
  .DealBlock h4 {
    font-size: 18px;
  }
  .DealBlock .deal-subtitle {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .DealPrice .price {
    font-size: 22px;
  }
  .DealPrice .per-month {
    font-size: 12px;
  }
  .DealFeatures li {
    font-size: 11px;
    margin-bottom: 6px;
    padding-left: 18px;
  }
  .DealFeatures li::before {
    font-size: 12px;
    left: 0;
    top: 0;
  }
  .DealButton {
    font-size: 13px;
    padding: 10px 0;
    max-width: 120px;
  }
  .Contact {
    height: auto;
    padding-bottom: 20px;
  }
  .Contact span {
    font-size: 18px;
    padding-top: 18px;
  }
  .Contact .ContactBold {
    padding-top: 18px;
  }
  .Contact button {
    padding: 10px 18px;
    font-size: 13px;
    margin-top: 18px;
  }
  .Footer__container {
    flex-direction: column;
    height: auto;
    gap: 10px;
    padding: 10px 4px;
  }
  .Footer__left img {
    width: 24px;
    height: 24px;
  }
  .Footer__left span {
    font-size: 13px;
    margin-left: 4px;
  }
  .Footer__right ul {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .Footer__right li {
    font-size: 11px;
  }
}
