@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

:root {
  --dc-navy: #0a1d37;
  --dc-heading: #1b2a4a;
  --dc-red: #e63946;
  --dc-teal: #0b9da2;
  --dc-grey: #f4f5f7;
  --dc-muted: #6d778a;
  --dc-border: #d8dfeb;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0 !important;
  font-family: "Sora", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.15;
  color: var(--dc-heading);
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
}

body {
  background: #fff;
}

a {
  color: inherit;
}

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

img {
  max-width: 100%;
}

.container {
  max-width: 1240px;
}

.section-light {
  background: var(--dc-grey);
}

.desktop-only {
  display: inline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Shared hero */
.dc-hero {
  position: relative;
  overflow: hidden;
}

.dc-hero__background {
  position: absolute;
  inset: 0;
  background: url("/img/header_bg.png") center center / cover no-repeat;
}

.dc-hero__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .96) 26%, rgba(255, 255, 255, .62) 40%, rgba(255, 255, 255, 0) 78%);
}

.dc-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}

.dc-hero__copy {
  width: 61%;
  padding: 110px 0 70px;
}

.dc-logo {
  display: block;
  width: 168px;
  height: 50px;
  object-fit: contain;
}

.dc-hero h1,
.dc-thanks-copy h1 {
  color: var(--dc-heading);
  font-weight: 800;
  letter-spacing: -1.7px;
}

.dc-hero--landing h1 {
  margin: 76px 0 16px;
  font-size: 56px;
  line-height: .98;
}

.dc-hero__lead {
  margin: 0 0 30px;
  font-size: 21px;
  line-height: 1.12;
  font-weight: 700;
}

.dc-check-list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
}

.dc-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}

.dc-check-list img {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.dc-hero__mobile-image {
  display: none;
}

.dc-hero__form-wrap {
  width: 420px;
  padding-top: 50px;
}

/* Form */
#contactform {
  width: 100%;
  margin: 0;
  padding: 32px 32px 28px;
  background: #fff;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(25, 43, 72, .13);
  position: relative;
  z-index: 2;
}

#contactform h2 {
  margin: 0 0 9px;
  color: var(--dc-heading);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 800;
}

.form-intro {
  max-width: 325px;
  margin: 0 auto 21px;
  color: #3d4b65;
  font-size: 13px;
  line-height: 1.2;
}

.form-step {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-wrap: balance;
}

.form-input {
  position: relative;
  width: 100%;
  margin: 0 0 11px;
}

.form-input input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 14px 0 45px;
  border: 1px solid var(--dc-border);
  border-radius: 8px;
  outline: none;
  color: var(--dc-heading);
  background: #fff;
  font: 400 15px "Sora", Arial, sans-serif;
}

.form-input input:focus {
  border-color: var(--dc-red);
  box-shadow: 0 0 0 2px rgba(230, 57, 70, .1);
}

.form-input input.error {
  border-color: var(--dc-red);
}

.field-icon {
  position: absolute;
  z-index: 1;
  top: 17px;
  left: 17px;
  color: #697487;
  font-size: 14px;
}

::placeholder {
  color: #6d778a;
  opacity: 1;
}

.form-check {
  padding: 0;
  margin: 8px 0 0;
  text-align: left;
}

.form-check label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: #5d687b;
  font-size: 11px;
  line-height: 1.2;
  cursor: pointer;
}

.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  display: inline-block;
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  border: 1px solid var(--dc-border);
  border-radius: 3px;
  color: var(--dc-red);
  text-align: center;
}

.form-check input[type=checkbox]:checked+.checkmark::after {
  content: "✓";
  display: block;
  font-size: 12px;
  line-height: 13px;
  font-weight: 700;
}

.form-check a {
  color: var(--dc-red);
  font-weight: 700;
  text-decoration: underline;
}

.form-button,
.dc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--dc-red);
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.form-button .material-symbols-outlined,
.dc-button .material-symbols-outlined {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.form-button {
  align-self: center;
  width: 230px;
  max-width: 100%;
  margin-top: 21px;
}

.form-button:hover,
.dc-button:hover {
  color: #fff;
  background: #c92d3b;
  transform: translateY(-2px);
}

.form-secure {
  margin: 19px 0 0;
  color: #697487;
  font-size: 11px;
}

.form-secure .fa {
  margin-right: 7px;
}

label.error,
#terms-error {
  display: block;
  width: 100%;
  margin: 3px 0 0;
  color: var(--dc-red);
  font-size: 10px;
  text-align: left;
}

/* Landing content */
.dc-reasons {
  padding: 50px 0 76px;
}

.dc-reasons h2,
.dc-section-intro h2 {
  margin: 0;
  color: var(--dc-heading);
  font-size: 35px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  letter-spacing: -.7px;
}

.dc-heading-rule {
  display: block;
  width: 60px;
  height: 4px;
  margin: 18px auto 30px;
  border-radius: 6px;
  background: var(--dc-red);
}

.dc-reasons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.dc-reason-card {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border: 1px solid #dce2ec;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(25, 43, 72, .04);
}

.dc-reason-card>img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: contain;
}

.dc-reason-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
}

.dc-reason-card p {
  margin: 0;
  color: #3d4b65;
  font-size: 13px;
  line-height: 1.05;
}

.dc-cta-section {
  padding: 30px 0 27px;
  background: #fff;
}

.dc-cta {
  position: relative;
  min-height: 234px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border-radius: 25px;
  overflow: hidden;
  background: linear-gradient(105deg, #1f315b 0%, #1b2a4a 63%, #3d2947 100%);
}

.dc-cta__copy {
  position: relative;
  z-index: 1;
  padding: 36px 0 36px 100px;
}

.dc-cta h2 {
  min-width: 850px;
  margin: 0 0 10px;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
}

.dc-cta p {
  margin: 0 0 24px;
  color: #a5b0c3;
  font-size: 18px;
}

.dc-cta__product {
  position: absolute;
  height: 234px;
  margin-right: 0;
  object-fit: cover;
  right: 0;
}

.dc-benefits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 23px 175px 0;
}

.dc-benefits>div,
.dc-thanks-benefits .container>div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.dc-benefits img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.dc-benefits span,
.dc-thanks-benefits span {
  display: flex;
  flex-direction: column;
}

.dc-benefits strong,
.dc-thanks-benefits strong {
  font-size: 14px;
  line-height: 1.1;
}

.dc-benefits small,
.dc-thanks-benefits small {
  margin-top: 3px;
  color: #53617a;
  font-size: 12px;
}

/* Thank-you hero */
.dc-hero--thanks {
  min-height: 600px;
}

.dc-thanks-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 600px;
}

.dc-thanks-copy {
  width: 60%;
  padding: 84px 0 60px;
}

.dc-thanks-check {
  display: block;
  width: 40px;
  height: 40px;
  margin: 36px 0 40px;
}

.dc-thanks-copy h1 {
  margin: 0 0 12px;
  font-size: 70px;
  line-height: .9;
}

.dc-thanks-copy__lead {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
}

.dc-thanks-copy .dc-heading-rule {
  margin: 16px 0 12px;
}

.dc-thanks-copy__body {
  margin: 0;
  color: #4c5970;
  font-size: 18px;
  line-height: 1.12;
}

.dc-error-button {
  margin-top: 24px;
}

.dc-trust-points {
  display: flex;
  gap: 30px;
  margin-top: 36px;
}

.dc-trust-points>div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dc-heading);
  font-size: 15px;
  line-height: 1.05;
}

.dc-trust-points img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.dc-recommendations {
  padding: 62px 0 60px;
}

.dc-section-intro h2 {
  font-size: 24px;
}

.dc-section-intro h2 span {
  color: var(--dc-red);
  margin-right: 7px;
}

.dc-section-intro p {
  margin: 10px 0 40px;
  color: #6d778a;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.dc-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  max-width: 1000px;
  margin: 0 auto;
}

.dc-product-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 7px 21px rgba(20, 35, 60, .14);
}

.dc-product-card__image {
  position: relative;
  height: 150px;
}

.dc-product-card__image>img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.dc-product-card__body {
  padding: 25px 24px 24px;
}

.dc-product-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.dc-product-card__lead {
  min-height: 35px;
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.05;
}

.dc-product-card ul {
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
  color: #536079;
  font-size: 13px;
}

.dc-product-card li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0;
}

.dc-product-card li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--dc-navy);
  font-size: 10px;
  font-weight: 700;
}

.dc-product-card--teal li::before {
  background: var(--dc-teal);
}

.dc-product-card--red li::before {
  background: var(--dc-red);
}

.dc-product-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  border-radius: 8px;
  color: #fff;
  background: var(--dc-navy);
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, color .2s ease;
}

.dc-product-card__button:hover {
  color: #fff;
  transform: scale(1.1);
}

.dc-product-card--teal .dc-product-card__button {
  background: var(--dc-teal);
}

.dc-product-card--red .dc-product-card__button {
  background: var(--dc-red);
}

#Politica .modal-footer .btn-light {
  color: #fff;
  background: var(--dc-red);
  border-color: var(--dc-red);
}

.dc-thanks-benefits {
  padding: 31px 0;
  color: #fff;
  background: var(--dc-navy);
}

.dc-thanks-benefits .container {
  display: flex;
  justify-content: center;
  gap: 100px;
}

.dc-thanks-benefits img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.dc-thanks-benefits strong {
  font-size: 15px;
}

.dc-thanks-benefits small {
  color: #a6b0c0;
  font-size: 13px;
}

/* Shared footer */
#section-ads {
  display: block;
  min-height: 80px;
  padding: 20px 0;
  text-align: center;
  background: #fff;
}

#section-ads .logo-ads-container {
  min-height: 40px;
}

#section-ads img {
  width: 180px;
  max-height: 48px;
  object-fit: contain;
}

.footer-ads--dark {
  background: var(--dc-heading) !important;
}

.footer-ads--dark img {
  filter: brightness(0) invert(1);
  opacity: .95;
}

@media (min-width: 1101px) and (max-width: 1300px) {
  .dc-hero__inner {
    padding: 0 30px;
  }
}

@media (max-width: 1100px) {
  .container {
    max-width: 94%;
  }

  .dc-hero__copy {
    width: 56%;
  }

  .dc-hero__form-wrap {
    width: 390px;
  }

  .dc-hero--landing h1 {
    font-size: 49px;
  }

  .dc-cta {
    padding: 0;
  }

  .dc-benefits {
    padding-left: 55px;
    padding-right: 55px;
  }

  .dc-product-grid {
    gap: 22px;
  }
}

@media (max-width: 1200px) {
  .dc-reasons__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dc-cta h2 {
    min-width: 0;
    max-width: 570px;
    text-wrap: balance;
  }
}

@media (max-width: 768px) {
  .dc-hero__inner {
    padding: 0 !important;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: none;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .desktop-only {
    display: none;
  }

  .dc-hero__background {
    display: none;
  }

  .dc-hero__inner {
    display: block;
    min-height: 0;
  }

  .dc-hero__copy {
    width: 100%;
    padding: 40px 22px 26px;
    text-align: center;
    background: #f5f6f8;
  }

  .dc-logo {
    width: 137px;
    height: auto;
    margin: 0 auto;
  }

  .dc-hero--landing h1 {
    margin: 32px auto 13px;
    font-size: 30px;
    line-height: .98;
    letter-spacing: -.5px;
    max-width: 355px;
  }

  .dc-hero__lead {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.08;
  }

  .dc-check-list {
    display: inline-block;
    text-align: left;
    font-size: 14px;
  }

  .dc-check-list li {
    gap: 9px;
    margin: 7px 0;
  }

  .dc-check-list img {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .dc-hero__mobile-image {
    position: relative;
    display: block;
    height: 174px;
    background: url("/img/header_bg.png") center 15% / cover no-repeat;
  }

  .dc-hero__mobile-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #f5f6f8 0%, rgba(245, 246, 248, 0) 28%, rgba(245, 246, 248, 0) 100%);
    pointer-events: none;
  }

  .dc-hero__form-wrap {
    width: 100%;
    padding: 30px 20px 30px;
    background: #f5f6f8;
  }

  #contactform {
    padding: 27px 12px 24px;
    border-radius: 19px;
    max-width: 400px;
    margin: 0 auto 0;
  }

  #contactform h2 {
    font-size: 15px;
    letter-spacing: -.5px;
    white-space: nowrap;
  }

  .form-intro {
    max-width: none;
    margin-bottom: 17px;
    font-size: 10px;
  }

  .form-input {
    margin-bottom: 9px;
  }

  .form-input input {
    height: 39px;
    padding-left: 37px;
    font-size: 13px;
  }

  .field-icon {
    top: 13px;
    left: 14px;
    font-size: 12px;
  }

  .form-check label {
    font-size: 9px;
  }

  .checkmark {
    flex-basis: 14px;
    width: 14px;
    height: 14px;
  }

  .form-button {
    width: 200px;
    min-height: 39px;
    margin-top: 17px;
    font-size: 12px;
  }

  .form-secure {
    margin-top: 14px;
    font-size: 9px;
  }

  .dc-reasons {
    padding: 20px 0 23px;
  }

  .dc-reasons h2 {
    font-size: 25px;
  }

  .dc-heading-rule {
    width: 48px;
    height: 3px;
    margin: 14px auto 27px;
  }

  .dc-reasons__grid {
    display: block;
  }

  .dc-reason-card {
    min-height: 76px;
    margin: 10px auto 0;
    padding: 13px 18px;
    border-radius: 13px;
    gap: 9px;
    max-width: 400px;
  }

  .dc-reason-card>img {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .dc-reason-card h3 {
    margin-bottom: 4px;
    font-size: 14px;
  }

  .dc-reason-card p {
    font-size: 11px;
  }

  .dc-cta-section {
    padding: 0 16px 25px;
    background: #f5f6f8;
  }

  .dc-cta-section .container {
    padding: 0;
  }

  .dc-cta {
    min-height: 340px;
    display: block;
    padding: 0;
    border-radius: 20px;
    text-align: center;
  }

  .dc-cta__copy {
    padding: 30px 18px 0;
  }

  .dc-cta h2 {
    font-size: 28px;
    line-height: 1.03;
    margin: 0 auto 10px;
  }

  .dc-cta p {
    margin-bottom: 19px;
    font-size: 15px;
  }

  .dc-cta__product {
    position: absolute;
    display: block;
    width: 320px;
    max-width: none;
    height: auto;
    margin: 0 auto 0;
    left: 50%;
    transform: translate(-65%, 0);
  }

  .dc-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px 12px;
    max-width: 320px;
    padding: 27px 0 0;
    margin: auto;
  }

  .dc-benefits>div {
    gap: 7px;
  }

  .dc-benefits img {
    width: 25px;
    height: 25px;
  }

  .dc-benefits strong {
    font-size: 11px;
  }

  .dc-benefits small {
    font-size: 9px;
  }

  .dc-hero--thanks {
    min-height: 0;
  }

  .dc-thanks-hero__inner {
    min-height: 0;
    padding: 0;
  }

  .dc-thanks-copy {
    width: 100%;
    padding: 28px 16px 22px;
    text-align: center;
    background: #f5f6f8;
  }

  .dc-thanks-check {
    width: 40px;
    height: 40px;
    margin: 16px auto 19px;
  }

  .dc-thanks-copy h1 {
    margin-bottom: 9px;
    font-size: 30px;
    letter-spacing: -.5px;
  }

  .dc-thanks-copy__lead {
    font-size: 16px;
  }

  .dc-thanks-copy .dc-heading-rule {
    margin: 11px auto 10px;
  }

  .dc-thanks-copy__body {
    font-size: 13px;
    line-height: 1.15;
  }

  .dc-trust-points {
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }

  .dc-trust-points>div {
    gap: 5px;
    font-size: 10px;
  }

  .dc-trust-points img {
    width: 20px;
    height: 20px;
  }

  .dc-recommendations {
    padding: 28px 16px 29px;
  }

  .dc-recommendations .container {
    padding: 0;
  }

  .dc-section-intro h2 {
    font-size: 16px;
    line-height: 1.05;
  }

  .dc-section-intro p {
    margin: 9px 0 22px;
    font-size: 13px;
  }

  .dc-product-grid {
    display: block;
  }

  .dc-product-card {
    max-width: 270px;
    margin: 0 auto 21px;
    border-radius: 30px;
  }

  .dc-product-card__image,
  .dc-product-card__image>img {
    height: 135px;
  }

  .dc-product-card__body {
    padding: 22px 21px 21px;
  }

  .dc-product-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }

  .dc-product-card__lead {
    font-size: 14px;
  }

  .dc-product-card ul {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .dc-product-card li {
    margin: 7px 0;
  }

  .dc-product-card__button {
    min-height: 42px;
    font-size: 13px;
  }

  .dc-thanks-benefits {
    padding: 23px 16px;
  }

  .dc-thanks-benefits .container {
    display: block;
    padding: 0;
  }

  .dc-thanks-benefits .container>div {
    width: 160px;
    margin: 0 auto 17px;
    gap: 10px;
  }

  .dc-thanks-benefits .container>div:last-child {
    margin-bottom: 0;
  }

  .dc-thanks-benefits img {
    width: 25px;
    height: 25px;
  }

  .dc-thanks-benefits strong {
    font-size: 13px;
  }

  .dc-thanks-benefits small {
    font-size: 11px;
  }

  #section-ads {
    min-height: 59px;
    padding: 14px 0;
  }

  #section-ads img {
    width: 140px;
  }
}
