:root {
    --orange: #ff5a00;
    --orange2: #ff7a00;
    --dark: #181818;
    --soft: #fff3ea;
    --muted: #747474;
    --line: #eee;
    --shadow: 0 16px 40px rgba(18, 18, 18, .10)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: #222;
    background: #fff
}

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

.container {
    width: min(1160px, calc(100% - 48px));
    margin-inline: auto
}

.hero {
    min-height: 610px;
    background: radial-gradient(circle at 70% 35%, rgba(255, 255, 255, .32), transparent 16%), linear-gradient(135deg, #ff4d00 0%, #ff7a00 54%, #ff4a00 100%);
    color: #fff;
    border-bottom-left-radius: 38px;
    position: relative;
    overflow: hidden
}

.hero:after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -58px;
    height: 130px;
    background: #fff;
    transform: skewY(-4deg);
    transform-origin: left top
}

.nav {
    height: 78px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 2
}

.brand {
    font-weight: 900;
    font-size: 25px;
    letter-spacing: .3px;
    margin-right: auto
}

.navlinks {
    display: flex;
    gap: 34px;
    font-size: 14px;
    font-weight: 700
}

.navbtn,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08)
}

.navbtn {
    background: #fff;
    color: var(--orange);
    padding: 13px 22px;
    font-size: 13px
}

.hamburger {
    display: none;
    background: transparent;
    border: 0;
    gap: 5px;
    flex-direction: column
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 4px
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 42px 0 118px
}

.pill {
    display: inline-flex;
    padding: 14px 21px;
    background: rgba(255, 255, 255, .14);
    border-radius: 14px;
    font-weight: 900;
    letter-spacing: .4px;
    font-size: 14px
}

.hero h1 {
    font-size: 48px;
    line-height: 1.12;
    margin: 22px 0 18px;
    max-width: 650px
}

.lead {
    font-size: 18px;
    line-height: 1.65;
    max-width: 650px
}

.badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 26px 0
}

.badges span {
    background: rgba(255, 255, 255, .14);
    padding: 14px 17px;
    border-radius: 11px;
    font-weight: 800;
    font-size: 14px
}

.actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.btn {
    padding: 17px 28px;
    border: 1px solid rgba(255, 255, 255, .26)
}

.btn.primary {
    background: #fff;
    color: var(--orange)
}

.btn.ghost {
    background: rgba(255, 255, 255, .06);
    color: #fff
}

.hero-visual {
    position: relative;
    min-height: 330px;
    display: grid;
    place-items: center
}

.hero-visual:before {
    content: "";
    position: absolute;
    width: 405px;
    height: 120px;
    background: rgba(255, 255, 255, .17);
    border: 2px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    bottom: 20px;
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, .12))
}

.hero-visual img {
    position: relative;
    z-index: 1;
    max-width: 480px;
    width: 100%;
    filter: drop-shadow(0 22px 24px rgba(0, 0, 0, .28));
    border-radius: 16px
}

.float {
    position: absolute;
    z-index: 2;
    background: #fff;
    color: #222;
    border-radius: 13px;
    padding: 14px 18px;
    box-shadow: var(--shadow);
    display: grid;
    font-size: 18px
}

.float small {
    color: #777;
    font-size: 11px;
    margin-top: 3px
}

.rating {
    top: 0;
    left: 32px
}

.happy {
    right: 16px;
    bottom: 62px
}

.stats {
    position: relative;
    z-index: 4;
    margin-top: -56px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 26px 22px;
    border: 1px solid #f3f3f3
}

.stats div {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 12px;
    align-items: center;
    justify-content: center
}

.stats i {
    font-style: normal;
    font-size: 35px;
    color: var(--orange);
    grid-row: span 2
}

.stats strong {
    font-size: 31px;
    color: var(--orange);
    line-height: 1
}

.stats span {
    font-size: 12px;
    color: #555;
    font-weight: 700
}

.section {
    padding: 50px 0 18px;
    text-align: center
}

.eyebrow {
    color: #ff6b00;
    font-weight: 900;
    font-size: 11px;
    margin: 0 0 7px
}

.section h2 {
    font-size: 26px;
    margin: 0 0 8px
}

.sub {
    font-size: 13px;
    color: #666;
    margin-top: 0
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 28px
}

.gallery-grid article,
.card,
.steps div,
.testimonials div,
.faq details {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .06);
    overflow: hidden
}

.gallery-grid img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block
}

.gallery-grid b {
    display: block;
    padding: 14px 8px;
    font-size: 12px
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 30px
}

.card {
    padding: 25px 14px;
    min-height: 145px
}

.card i {
    display: block;
    font-style: normal;
    font-size: 32px;
    color: var(--orange);
    margin-bottom: 13px
}

.card b {
    font-size: 13px
}

.card p {
    font-size: 11px;
    color: #777;
    line-height: 1.5
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    margin-top: 26px
}

.steps span,
.affiliate-flow b {
    color: var(--orange);
    font-size: 26px
}

.steps div {
    position: relative;
    text-align: left;
    padding: 24px 20px;
    min-height: 126px
}

.steps em,
.affiliate-flow em {
    font-style: normal;
    position: absolute;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 900
}

.steps em {
    top: 12px;
    right: 14px
}

.steps i {
    font-style: normal;
    font-size: 34px;
    color: var(--orange)
}

.steps b {
    display: block;
    margin: 8px 0 5px
}

.steps p {
    margin: 0;
    color: #666;
    font-size: 12px;
    line-height: 1.45
}

.promo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 28px 0
}

.promo div {
    background: linear-gradient(135deg, #ff4c00, #ff7a00);
    border-radius: 11px;
    color: #fff;
    min-height: 142px;
    display: grid;
    place-items: center;
    padding: 18px;
    box-shadow: var(--shadow)
}

.promo .dark {
    background: #1d1d1d
}

.promo small {
    font-weight: 900;
    font-size: 16px
}

.promo strong {
    font-size: 42px;
    line-height: 1;
    font-weight: 900
}

.promo span {
    font-size: 15px
}

.affiliate-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 18px;
    align-items: center;
    margin-top: 30px
}

.affiliate-flow div {
    position: relative;
    border: 1px solid #eee;
    border-radius: 11px;
    padding: 26px 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    font-size: 38px;
    display: grid;
    gap: 10px
}

.affiliate-flow em {
    left: 18px;
    top: 14px
}

.affiliate-flow span {
    font-size: 12px;
    font-weight: 800
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 28px;
    text-align: left
}

.testimonials div {
    padding: 22px;
    font-size: 15px;
    color: #ffc400
}

.testimonials p {
    color: #333;
    line-height: 1.55;
    font-size: 13px
}

.testimonials b {
    font-size: 12px;
    color: #111
}

.faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    text-align: left;
    padding-bottom: 35px
}

.faq .eyebrow {
    grid-column: 1/-1;
    text-align: center
}

.faq details {
    padding: 18px 20px
}

.faq summary {
    cursor: pointer;
    font-weight: 800;
    font-size: 14px;
    list-style: none;
    display: flex;
    justify-content: space-between
}

.faq summary:after {
    content: '+'
}

.faq details[open] summary:after {
    content: '−'
}

.faq p {
    color: #666;
    font-size: 13px
}

.cta{
  background:linear-gradient(135deg,#ff5100,#ff7100);
  color:#fff;
  border-radius:16px;
  padding:34px 44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:44px;
  margin-bottom:14px;
}

.cta h2 {
    font-size: 31px;
    margin: 0 0 8px
}

.cta p {
    margin: 0
}

.btn.white {
    background: #fff;
    color: var(--orange);
    border: 0
}

.footer{
  background:#171717;
  color:#fff;
  border-radius:18px;
  margin-bottom:30px;
  padding:44px 46px 48px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:70px;
}

.footer h3 {
    margin: 0 0 10px;
    font-size: 22px
}

.footer div:not(:first-child){
  display:grid;
  gap:12px;
  align-content:start;
}

.footer b{
  margin-bottom:12px;
}

.footer p,
.footer a{
  line-height:1.8;
}

.social {
    letter-spacing: 12px
}

.navlinks.open {
    display: flex
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 420px)
    }

    .hero {
        min-height: 780px;
        border-bottom-left-radius: 26px
    }

    .nav {
        height: 62px;
        gap: 12px
    }

    .brand {
        font-size: 16px;
        margin-right: 0
    }

    .hamburger{
  display:flex;
  order:-1;
  width:32px;
  height:32px;
  align-items:center;
  justify-content:center;
  position:relative;
  padding:0;
  cursor:pointer;
}

.hamburger span{
  position:absolute;
  width:20px;
  height:2px;
  background:#fff;
  border-radius:999px;
  transition:
    transform .35s ease,
    opacity .25s ease,
    top .35s ease;
}

.hamburger span:nth-child(1){
  top:9px;
}

.hamburger span:nth-child(2){
  top:15px;
}

.hamburger span:nth-child(3){
  top:21px;
}

.hamburger.active span:nth-child(1){
  top:15px;
  transform:rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity:0;
  transform:translateX(-8px);
}

.hamburger.active span:nth-child(3){
  top:15px;
  transform:rotate(-45deg);
}

.navlinks{
  display:flex;
  position:absolute;
  top:62px;
  left:0;
  right:0;
  background:rgba(255,92,0,.98);
  padding:18px;
  border-radius:14px;
  flex-direction:column;
  gap:16px;
  opacity:0;
  visibility:hidden;
  transform:translateY(-10px) scale(.98);
  pointer-events:none;
  transition:
    opacity .3s ease,
    transform .3s ease,
    visibility .3s ease;
}

.navlinks.open{
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
  pointer-events:auto;
}

.navlinks a{
  opacity:0;
  transform:translateY(-6px);
  transition:
    opacity .28s ease,
    transform .28s ease;
}

.navlinks.open a{
  opacity:1;
  transform:translateY(0);
}

.navlinks.open a:nth-child(1){transition-delay:.05s;}
.navlinks.open a:nth-child(2){transition-delay:.09s;}
.navlinks.open a:nth-child(3){transition-delay:.13s;}
.navlinks.open a:nth-child(4){transition-delay:.17s;}
.navlinks.open a:nth-child(5){transition-delay:.21s;}
.navlinks.open a:nth-child(6){transition-delay:.25s;}

    .navbtn {
        margin-left: auto;
        padding: 10px 13px;
        font-size: 10px;
        border-radius: 7px
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 0 106px
    }

    .pill {
        font-size: 10px;
        padding: 10px 13px;
        border-radius: 8px
    }

    .hero h1 {
        font-size: 27px;
        margin: 17px 0 12px
    }

    .lead {
        font-size: 12px;
        line-height: 1.55
    }

    .badges {
        gap: 7px;
        margin: 16px 0
    }

    .badges span {
        font-size: 10px;
        padding: 8px 10px
    }

    .btn {
        width: 100%;
        padding: 13px 16px;
        border-radius: 9px;
        font-size: 13px
    }

    .actions {
        gap: 10px
    }

    .hero-visual {
        min-height: 260px
    }

    .hero-visual img {
        max-width: 260px
    }

    .hero-visual:before {
        width: 270px;
        height: 80px;
        bottom: 18px
    }

    .float {
        padding: 8px 10px;
        font-size: 11px;
        border-radius: 8px
    }

    .float small {
        font-size: 8px
    }

    .rating {
        right: 0;
        left: auto;
        top: 36px
    }

    .happy {
        right: 0;
        bottom: 38px
    }

    .stats {
        margin-top: -62px;
        grid-template-columns: repeat(4, 1fr);
        padding: 15px 6px;
        border-radius: 9px
    }

    .stats div {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4px
    }

    .stats i {
        font-size: 22px
    }

    .stats strong {
        font-size: 14px
    }

    .stats span {
        font-size: 8px
    }

    .section {
        padding: 38px 0 12px
    }

    .section h2 {
        font-size: 18px
    }

    .eyebrow {
        font-size: 9px
    }

    .sub {
        font-size: 10px
    }

    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
        overflow: hidden
    }

    .gallery-grid article:nth-child(6) {
        display: none
    }

    .gallery-grid img {
        height: 54px
    }

    .gallery-grid b {
        font-size: 8px;
        padding: 8px 2px
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 9px
    }

    .card {
        min-height: 100px;
        padding: 14px 7px
    }

    .card i {
        font-size: 23px;
        margin-bottom: 7px
    }

    .card b {
        font-size: 9px
    }

    .card p {
        display: none
    }

    .steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px
    }

    .steps span {
        display: none
    }

    .steps div{
    text-align:center;
    min-height:78px;
    padding:22px 6px 12px;
    position:relative;
    overflow:visible;
  }

  .steps em{
    top:6px;
    left:50%;
    right:auto;
    transform:translateX(-50%);
    width:18px;
    height:18px;
    font-size:9px;
    z-index:2;
  }

  .steps i{
    display:block;
    font-size:22px;
    margin-top:10px;
  }

  .steps b{
    display:block;
    font-size:9px;
    margin-top:5px;
  }

    .steps p {
        display: none
    }

    .promo {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 0
    }

    .promo div {
        min-height: 62px;
        display: flex;
        justify-content: space-between;
        border-radius: 9px
    }

    .promo small {
        font-size: 12px
    }

    .promo strong {
        font-size: 24px
    }

    .promo span {
        font-size: 9px
    }

    .affiliate-flow {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px
    }

    .affiliate-flow b {
        display: none
    }

    .affiliate-flow div {
        font-size: 24px;
        padding: 18px 4px
    }

    .affiliate-flow span {
        font-size: 8px
    }

    .affiliate-flow em {
        width: 18px;
        height: 18px;
        font-size: 9px;
        top: -8px;
        left: 6px
    }

    .testimonials{
  grid-template-columns:1fr;
  position:relative;
  min-height:135px;
}

.testimonials div{
  display:none;
}

.testimonials div.active{
  display:block;
  animation:testiFade .35s ease;
}


@keyframes testiFade{
  from{
    opacity:0;
    transform:translateX(10px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

    .faq {
        grid-template-columns: 1fr;
        padding-bottom: 24px
    }

    .faq details {
        padding: 13px 12px
    }

    .faq summary {
        font-size: 11px
    }

    .cta {
        padding: 22px 18px;
        display: grid;
        border-radius: 10px;
        margin-top: 12px
    }

    .cta h2 {
        font-size: 18px
    }

    .cta p {
        font-size: 11px
    }

    .footer {
        grid-template-columns: 1fr;
        border-radius: 0 0 12px 12px;
        padding: 26px 22px;
        gap: 16px
    }

    .footer div:not(:first-child) {
        display: none
    }
}
.testi-dots{
  display:none;
}

@media (max-width: 760px){
  .testi-dots{
    display:flex !important;
    justify-content:center;
    align-items:center;
    gap:7px;
    margin-top:14px;
    width:100%;
  }

  .testi-dots button{
  display:block;
  width:8px;
  height:8px;
  min-width:8px;
  min-height:8px;
  border:0;
  border-radius:999px;
  background:#d6d6d6;
  padding:0;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition:
    width .35s ease,
    background-color .35s ease,
    transform .35s ease,
    opacity .35s ease;
}

.testi-dots button::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  background:#ff5a00;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .35s ease;
}

.testi-dots button.active{
  width:22px;
  background:#ffd8c2;
  transform:scale(1.05);
}

.testi-dots button.active::after{
  transform:scaleX(1);
}

.testi-dots button:not(.active){
  opacity:.75;
}

.testi-dots button:not(.active):hover{
  opacity:1;
  transform:scale(1.15);
}
}
@media (min-width: 981px){
  .hamburger.active span:nth-child(1),
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3){
    transform:none;
    opacity:1;
  }

  .navlinks{
    opacity:1;
    visibility:visible;
    transform:none;
    pointer-events:auto;
  }

  .navlinks a{
    opacity:1;
    transform:none;
  }
}

@media (min-width: 761px) and (max-width: 980px){
  .nav{
    height:68px;
    gap:14px;
  }

  .brand{
    font-size:20px;
    margin-right:auto;
    white-space:nowrap;
  }

  .hamburger{
    display:flex;
    order:-1;
    width:34px;
    height:34px;
    align-items:center;
    justify-content:center;
    position:relative;
    padding:0;
    cursor:pointer;
  }

  .hamburger span{
    position:absolute;
    width:21px;
    height:2px;
    background:#fff;
    border-radius:999px;
    transition:
      transform .35s ease,
      opacity .25s ease,
      top .35s ease;
  }

  .hamburger span:nth-child(1){
    top:10px;
  }

  .hamburger span:nth-child(2){
    top:16px;
  }

  .hamburger span:nth-child(3){
    top:22px;
  }

  .hamburger.active span:nth-child(1){
    top:16px;
    transform:rotate(45deg);
  }

  .hamburger.active span:nth-child(2){
    opacity:0;
    transform:translateX(-8px);
  }

  .hamburger.active span:nth-child(3){
    top:16px;
    transform:rotate(-45deg);
  }

  .navlinks{
    display:flex;
    position:absolute;
    top:68px;
    left:0;
    right:0;
    background:rgba(255,92,0,.98);
    padding:18px;
    border-radius:14px;
    flex-direction:column;
    gap:16px;
    opacity:0;
    visibility:hidden;
    transform:translateY(-10px) scale(.98);
    pointer-events:none;
    transition:
      opacity .3s ease,
      transform .3s ease,
      visibility .3s ease;
    z-index:20;
  }

  .navlinks.open{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
    pointer-events:auto;
  }

  .navlinks a{
    opacity:0;
    transform:translateY(-6px);
    transition:
      opacity .28s ease,
      transform .28s ease;
  }

  .navlinks.open a{
    opacity:1;
    transform:translateY(0);
  }

  .navlinks.open a:nth-child(1){transition-delay:.05s;}
  .navlinks.open a:nth-child(2){transition-delay:.09s;}
  .navlinks.open a:nth-child(3){transition-delay:.13s;}
  .navlinks.open a:nth-child(4){transition-delay:.17s;}
  .navlinks.open a:nth-child(5){transition-delay:.21s;}
  .navlinks.open a:nth-child(6){transition-delay:.25s;}

  .navbtn{
    margin-left:0;
    padding:11px 16px;
    font-size:11px;
    border-radius:9px;
    white-space:nowrap;
  }
}