:root{
  --bg: #0b1020;
  --softBg: rgba(10,14,22,0.55);
  --card: rgba(255,255,255,0.10);
  --border: rgba(255,255,255,0.14);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.78);
  --yellow: #f2e30e;
  --red: #ff2b2b;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(0,0,0,0.35);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: 'Inter Tight', 'Roboto', sans-serif;
  background: url('../images/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: var(--text);
}

.container{
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

a{ color: inherit; }
a:hover{ opacity: 0.92; }

/* Sticky bar (mobile only) */
.stickybar{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 12px;
  display: flex;
  gap: 10px;
  z-index: 999;
  background: rgba(10,14,22,0.92);
  border-top: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}

.stickybar__primary,
.stickybar__secondary{
  flex: 1;
  border-radius: 14px;
  font-weight: 900;
  font-size: 16px;
  padding: 14px 12px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.stickybar__primary{
  background: var(--yellow);
  color: #000;
}

.stickybar__secondary{
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.20);
}

@media (min-width: 992px){
  .stickybar{ display:none; }
}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,14,22,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand img{
  height: 54px;
  width: auto;
}

.topbar__right{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.chip{
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.86);
  white-space: nowrap;
}

@media (max-width: 520px){
  .chip{ display:none; }
  .brand {
    margin: 0 auto;
}
    .topbar__right {
        display: none;
    }
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .12s ease, opacity .12s ease;
  user-select: none;
}

.btn:hover{
  transform: translateY(-1px);
  opacity: 0.96;
}

.btn--primary{
  background: var(--yellow);
  color: #000;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

.btn--outline{
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.22);
}

.btn--dark{
  background: #111;
  color: #fff;
}

.btn--lg{
  padding: 14px 18px;
  font-size: 16px;
}

/* HERO */
.hero{
  padding: 28px 0 18px;
}

.hero__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.hero__kicker{
  font-weight: 800;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}

.hero__title{
  /*font-family: 'Fjalla One', sans-serif;*/
  font-weight: 600;
  font-size: clamp(30px, 6vw, 56px);
  line-height: 1.05;
  margin: 0 0 10px;
}

.hl{
  color: var(--yellow);
  text-shadow: 0 8px 18px rgba(0,0,0,0.26);
}

.hero__subtitle{
  margin: 0 0 12px;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
}

.hero__note{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 10px 12px;
  color: rgba(255,255,255,0.86);
  font-weight: 700;
  margin-bottom: 12px;
}

/* Countdown */
.countdown{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin: 12px 0 14px;
  box-shadow: var(--shadow);
}

.countdown__label{
  font-weight: 900;
  margin-bottom: 6px;
}

.countdown__timer{
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.6px;
}

.countdown__note{
  margin-top: 6px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}

/* Coupon Card */
.couponCard{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}

.couponCard__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.pill{
  display:inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.pill--red{
  background: rgba(255,43,43,0.18);
  border: 1px solid rgba(255,43,43,0.35);
}

.saveText{
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
}

.couponCard__body{
  background: rgba(255,255,255,0.92);
  color: #111;
  border-radius: var(--radius);
  padding: 14px;
}

.couponCard__small{
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(0,0,0,0.65);
}

.couponCard__code{
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 900;
  color: var(--red);
  letter-spacing: 1.4px;
  margin: 4px 0 6px;
}

.couponCard__hint{
  font-size: 14px;
  color: rgba(0,0,0,0.70);
}

.couponCard__actions{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.trustRow{
  display:grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 14px;
}

.trustRow__item{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
}

/* Dual CTA */
.dualCta{
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.dualCta__note{
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  text-align: center;
}

/* Right side cards */
.mediaCard{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  margin-top: 10px;
}

.mediaCard__header{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.mediaCard__title{
  font-weight: 900;
}

.mediaCard__subtitle{
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* Placeholders for images */
.imagePlaceholder{
  margin-top: 12px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  padding: 14px;
  color: rgba(255,255,255,0.86);
  line-height: 1.35;
}

.imagePlaceholder.small{
  padding: 12px;
  font-size: 13px;
  margin-top: 10px;
}

/* Sections */
.section{
  padding: 26px 0;
}

.section--soft{
  background: var(--softBg);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.sectionHead h2{
  margin: 0 0 8px;
  /*font-family: 'Fjalla One', sans-serif;*/
  font-weight: 600;
  font-size: clamp(22px, 3.8vw, 34px);
}

.sectionHead p{
  margin: 0 0 16px;
  color: rgba(255,255,255,0.84);
  line-height: 1.5;
}

/* Steps */
.steps{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.step{
  display:flex;
  gap: 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 14px;
}

.step__num{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(242,227,14,0.18);
  border: 1px solid rgba(242,227,14,0.35);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
}

.step__title{
  font-weight: 900;
  margin-bottom: 4px;
}

.step__text{
  color: rgba(255,255,255,0.84);
  line-height: 1.5;
}

.inlineCode{
  /*font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;*/
  background: rgba(0,0,0,0.25);
  padding: 2px 6px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* Cards + Comparison */
.cards2{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.card__badge{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 10px;
}

.card h3{
  margin: 0 0 8px;
  font-size: 18px;
}

.card p{
  margin: 0;
  color: rgba(255,255,255,0.84);
  line-height: 1.5;
}

.card__ctaRow{
  margin-top: 12px;
}

.comparison{
  margin-top: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 14px;
}

.comparison__title{
  font-weight: 900;
  margin-bottom: 10px;
}

.comparisonTable{
  display: grid;
  gap: 8px;
}

.comparisonRow{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
}

.comparisonRow--head{
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 900;
}

.accent{
  color: var(--yellow);
  font-weight: 900;
}

/* Compatibility */
.compatGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.compat{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 12px;
  font-weight: 800;
}

/* Benefits + Features */
.benefitsGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.benefit{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 14px;
}

.benefit__title{
  font-weight: 900;
  margin-bottom: 6px;
}

.benefit__text{
  color: rgba(255,255,255,0.84);
  line-height: 1.5;
}

.featureGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.feature{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 12px;
  font-weight: 700;
}

/* FAQ */
.faq{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.faqItem{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 14px;
}

.faqQ{
  font-weight: 900;
  margin-bottom: 6px;
}

.faqA{
  color: rgba(255,255,255,0.84);
  line-height: 1.5;
}

/* Center actions */
.centerActions{
  display: flex;
  justify-items: center;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}

.mutedText{
  color: rgba(255,255,255,0.78);
}

/* Footer */
.footer{
  padding: 22px 0 90px;
  background: rgba(10,14,22,0.82);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer__inner{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.footer__logo{
  height: 44px;
}

.footer__text{
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  margin: 10px 0 0;
}

.footer__cta{
  display:grid;
  gap: 10px;
  margin-top: 12px;
}

/* Desktop layouts */
@media (min-width: 992px){
  .hero__grid{
    grid-template-columns: 1.18fr 0.82fr;
    align-items: start;
  }

  .couponCard__actions{
    grid-template-columns: 1fr 1fr;
  }

  .trustRow{
    grid-template-columns: repeat(3, 1fr);
  }

  .steps{
    grid-template-columns: repeat(1, 1fr);
  }

  .step{
    flex-direction: column;
  }

  .cards2{
    grid-template-columns: 1fr 1fr;
  }

  .compatGrid{
    grid-template-columns: repeat(1, 1fr);
  }

  .benefitsGrid{
    grid-template-columns: repeat(3, 1fr);
  }

  .featureGrid{
    grid-template-columns: repeat(3, 1fr);
  }

  .faq{
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner{
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: start;
  }

  .footer__cta{
    grid-template-columns: repeat(2, 1fr);
    /*justify-content: end;*/
  }

  .footer{
    padding-bottom: 22px;
  }
}
.offer-sec .code_und_btn {
    text-align: center;
    margin-top: 10px;
}
.row {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 580px){
    .row {
        grid-template-columns: repeat(1, 1fr);
    }
    }
.img-res {
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
}
.imgWrapper {
    /*margin-top: 12px;*/
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.35);
    overflow: hidden;
}

.trustBadges{
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.trustBadge{
  display: block;
  text-align:  center;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

.trustBadge i{
  font-size: 35px;
  color: var(--yellow);
  flex: 0 0 auto;
}

.trustBadge__title{
  font-weight: 900;
  line-height: 1.1;
}

.trustBadge__text{
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  margin-top: 3px;
  line-height: 1.3;
}

@media (min-width: 992px){
  .trustBadges{
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__inner {
    display: flex;
  }
  .footer__inner .footer__right {
    max-width: 400px;
    float: right;
  }
  }

