@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

/* styles.css */
:root {
  --color-bg-light_c1dfd: #ffffff;
  --color-text-light_c1dfd: #000000;
  --color-bg-dark_c1dfd: #121212;
  --color-text-dark_c1dfd: #ffffff;

  --color-primary_c1dfd: #2f80ed;
  --color-secondary_c1dfd: #f0f0f0;
}

img {
  display: block;
}

/* Light Theme */
.theme-light_c1dfd {
  --color-bg_c1dfd: var(--color-bg-light_c1dfd);
  --color-text_c1dfd: var(--color-text-light_c1dfd);
  --os-10_c1dfd: url('https://ads.bravvoks.com/lander/windows12-offer/images/icon_os_10.svg');
  --os-11_c1dfd: url('https://ads.bravvoks.com/lander/windows12-offer/images/icon_os_11.svg');
  --step-bg_c1dfd: none;
  --step-border_c1dfd: 1px solid #dddddd;
}

/* Dark Theme */
.theme-dark_c1dfd {
  --color-bg_c1dfd: var(--color-bg-dark_c1dfd);
  --color-text_c1dfd: var(--color-text-dark_c1dfd);
  --os-10_c1dfd: url('https://ads.bravvoks.com/lander/windows12-offer/images/icon_os_10_white.svg');
  --os-11_c1dfd: url('https://ads.bravvoks.com/lander/windows12-offer/images/icon_os_11_white.svg');
  --step-bg_c1dfd: #181818;
  --step-border_c1dfd: none;
}

/* Global Styles */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-bg_c1dfd);
  color: var(--color-text_c1dfd);
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

body::before {
  content: url('/assets/images/bg-left.svg');
  position: absolute;
  top: 0;
 
  z-index: -100;
  display: block;
}
.splide__list {
    backface-visibility: hidden;
    display: -ms-flexbox;
    display: flex
;
    overflow: hidden !important;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}
body::after {
  display: block;
  content: '';
  position: absolute;
  bottom: -101px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
  background: url('/assets/images/bg-right.svg') no-repeat;
  background-position: bottom;
}


.header_c1dfd {
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0;
  gap: 20px;

  font-size: 32px;
  font-weight: 700;
  line-height: 80%;
  letter-spacing: -2.5%;
}

.header__logo_c1dfd {
  width: 100%;
}

.header__img_c1dfd {
  max-width: 100px;
  overflow: hidden;
}

.header__img_c1dfd img {
  width: 40px;
}

.hero_c1dfd {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px 20px 20px;
  gap: 40px;
}

.hero__logo_c1dfd {
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
}

.hero__img_c1dfd {
  max-width: 100px;
  margin-bottom: 24px;
  overflow: hidden;
}

.hero__img_c1dfd img {
  width: 100px;
}

.hero_c1dfd h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero_c1dfd p {
  font-size: 16px;
  margin-bottom: 24px;
}

.btn-primary_c1dfd {
  background-color: var(--color-primary_c1dfd);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
}

.btn__copy_c1dfd {
  padding: 8px 16px;
  gap: 12px;
  margin-bottom: 0;
}

.btn-primary_c1dfd:hover {
  background-color: #1b6cd9;
}

.os-options_c1dfd {
  display: flex;
  gap: 24px;
}

.os-options_c1dfd span {
  position: relative;
  padding-left: 24px;
}

.os-10_c1dfd::before,
.os-11_c1dfd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.os-10_c1dfd::before {
  background-image: var(--os-10_c1dfd);
}

.os-11_c1dfd::before {
  background-image: var(--os-11_c1dfd);
}

.right_c1dfd {
  text-align: center;
}
.right_c1dfd h2 {
  margin-top: 10px;
}

.code_c1dfd {
  margin-top: 30px;
  padding: 32px 24px;
  background-color: var(--step-bg_c1dfd);
  border: var(--step-border_c1dfd);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.code__title_c1dfd {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 20.8px;
}

.line_c1dfd {
  display: block;
  margin: 24px 0;
  background: #333;
  height: 1px;
  width: 404px;
}
.code__content_c1dfd {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.code__content_c1dfd p {
  margin-bottom: 0;
}

.code-item_c1dfd {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
}
.steps_c1dfd {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 108px;
  flex-wrap: wrap;
}

.step_c1dfd {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
  width: 420px;
  min-height: 405px;
}

.step_c1dfd::after {
  position: absolute;
  content: '';
  background-image: url(/assets/images/gradient.svg);
  width: 100%;
  height: 699px;
  top: -154px;
  left: -174px;
  z-index: -10;
}

.step__number_c1dfd {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(#2f7fed, #993e74);
  display: flex;
  justify-content: center;
  align-items: center;
}

.step__number-line_c1dfd::after {
  content: '';
  position: absolute;
  left: 142px;
  background-image: url(https://ads.bravvoks.com/lander/windows12-offer/images/arrow.svg);
  background-repeat: no-repeat;
  width: 274px;
  height: 24px;
}

.step__title_c1dfd {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
}

.step__text_c1dfd h3 {
  margin-top: 24px;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}

.step__text_c1dfd p {
  font-size: 16px;
  max-width: 360px;
  height: 57px;
}

.step__image_c1dfd {
  max-width: 100%;
  height: auto;
  margin-top: 32px;
  border-radius: 12px;
}
