html,body{
    background-color: #fff !important;
    /* background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 70%, rgba(238,238,238,1) 100%) !important; */
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px !important;
    overflow-x: hidden;
    font-family: "Inter", Arial, sans-serif !important;
  }

  body {
    padding-bottom: 0;
    overflow-y: scroll;
  }




  br {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  





  
/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    outline: 2px solid transparent;
    white-space: nowrap;
}

.button-primary {
    /* background: linear-gradient(135deg, darkgreen 0%, rgb(0, 63, 0) 100%); */
    background: linear-gradient(180deg, #444 0%, #000 60%);
    /* border: 2px solid rgb(0, 63, 0); */
    color: white;
    /* box-shadow: 0 4px 15px rgba(235, 16, 0, 0.4); */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    user-select: none;
}

.button-primary:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 8px 25px rgba(235, 16, 0, 0.6); */
    box-shadow: 0 4px 16px rgba(16, 16, 16, 0.3);
    text-decoration: none;
    color: #fff;
}

.button-secondary {
    background-color: #222;
    background: linear-gradient(180deg, #444 0%, #000 80%);
    color: #fff;
    border: 2px solid #000;
    font-weight: 600;
    padding: 10px 24px;
}

.button-secondary:hover {
    background: linear-gradient(180deg, #333 0%, #000 100%);
    transform: translateY(-1px);
    text-decoration: none;
    color: #fff;
}

.button:focus {
    text-decoration: none;
    color: #fff;
}

.button-outline {
    background: transparent;
    color: #EB1000;
    border: 2px solid #EB1000;
}

.button-outline:hover {
    background: #EB1000;
    color: white;
    transform: translateY(-1px);
}

.button-large {
    padding: 16px 32px;
    font-size: 18px;
}

.button-full {
    width: 100%;
}

.header .header_top .button-primary {
    position: absolute;
    top: 13px;
    right: 10px;
    padding: 6px 18px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: none;
    background: linear-gradient(176deg, #444 0%, #000 70%);
}


  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 16px;
    min-height: 68px;
    padding-bottom: 0px;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    transition: top 0.5s ease-in-out;
    -webkit-transition: top 0.5s ease-in-out;
    z-index: 99999;
    background-color: #F5F5EE;
  }
  
  .header .header_top {
    position: relative;
    display: block;
    width: calc(100% - 32px);
    height: 60px;
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
    background-color: #F5F5EE;
  }
  
  
  .logo {
    position: relative;
    top: 14px;
    left: 0px;
    display: inline-block;
    background: url('../../assets/farebin_em.png');
    background-size: 38px;
    background-repeat: no-repeat;
    background-position: left center;
    min-width: 100px;
    padding: 8px 0 8px 40px;
    color: #000;
    font-weight: bold;
  }
  
  .logo:hover, .logo:focus {
    text-decoration: none;
    color: #000;
  }
  
  
  .log_in, .sign_up {
    position: absolute;
    top: 12px;
    right: 139px;
    padding: 6px 16px;
    border: 1px solid #000;
    border-radius: 4px 0 0 4px;
    color: #000;
    text-align: center;
    /* font-weight: bold; */
    text-decoration: none;
    cursor: pointer;
    background: #fff;
    /* background: #000 url("../../assets/chevron-right-light-24px.png");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: calc(100% - 8px) 49%; */
    opacity: 0.95;
  }
  
  .log_in:hover {
    color: #000;
    opacity: 1;
    box-shadow: 0 3px 8px -3px #0002;
    text-decoration: none;
  }
  
  
  .sign_up {
    right: 32px;
    color: #fff;
    background: #000;
    opacity: 0.9;
    border-radius: 0 4px 4px 0;
  }
  
  .sign_up:hover {
    color: #fff;
    opacity: 1;
    box-shadow: 0 3px 8px -3px #0002;
    text-decoration: none;
  }
  
  
  .log_in:focus {
    color: #000;
    text-decoration: none;
  }
  
  .sign_up:focus {
    color: #fff;
    text-decoration: none;
  }
  
  
  
  
  .header .header_bottom {
    background-color: #FDFDF8;
    position: relative;
    display: block;
    width: 100% ;
    padding: 0 32px;
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
  }
  
  
  .nav_ul {
    display: inline-block;
    padding: 16px 0;
    list-style: none;
    margin: 0;
  }
  
  .nav_ul .nav_icon {
    height: 10px;
    margin: 0 -8px !important;
    background: url("../assets/chevron-right-dark-24px.png");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .nav_ul li {
    display: inline-block;
    margin: 0;
    padding: 2px 8px;
    font-weight: bold;
  
    cursor: pointer;
  }
  
  .nav_ul li a {
    text-decoration: none !important;
    color: #666;
    font-weight: bold;
    cursor: pointer;
  }
  
  .nav_ul li a:hover {
    text-decoration: none !important;
    color: #268BD2;
    /* color: #000; */
    cursor: pointer;
  }
  
  .nav_ul .dropdown {
    padding-right: 12px;
    background: url("../../assets/dropdown_dark.png");
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: calc(100% - 0px) center;
  }
  
  .nav_ul .dropdown:hover {
    color: #268BD2;
    filter: invert(50%) sepia(19%) saturate(3123%) hue-rotate(172deg) brightness(89%) contrast(84%);
  }
  
  
  .header .dropdown_div {
    display: block;
    position: absolute;
    left: 2.5%;
    width: 95%;
    min-height: 300px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: normal;
    /* color: #999; */
    background: #FDFDF8;
    border: 1px solid #ccc;
    border-color: transparent #ccc #ccc #ccc;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 3px 12px -3px #0002;
    z-index: 9999999999999;
    opacity: 0.95;
  }
  
  

  
  
  .border_div {
    position: relative;
  }
  
  .border_div svg {
    position: absolute;
    z-index: 100;
    display: block;
    height: 48px;
    bottom: -45px;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
  }  



  
/* Hero Section */
.hero {
    margin-top: 118px;
    padding: 40px 0 48px 0;
    background: #F5F5EE;
    /* background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%); */
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
    /* overflow: hidden; */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}


.hero_border_div {
    bottom: -48px;
    left: 0;
    height: 48px;
}


.hero_border_div svg {
    position: absolute;
    z-index: 100;
    display: block;
    height: 48px;
    bottom: -48px;
    right: 0;
    left: auto;
    transform: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    /* line-height: 1.1; */
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    /* background: linear-gradient(172deg, #872504 0%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
}

.gradient-text {
    /* background: linear-gradient(150deg, #E9721F 0%, #8B260E 100%);
    background: linear-gradient(150deg, #000 0%, #872504 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
}

.gradient-text-okaysend {
    /* color: #872504;
    color: #000; */
    display: block;
    margin-top: 6px;
    font-weight: bolder;
}

.hero-subtitle {
    font-size: 3rem;
    color: #000;
    margin-top: 12px;
    margin-bottom: 4rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-actions p {
    display: inline-block;
    margin-top: 1rem;
    font-size: 13px;
    color: #999;
}


.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #EB1000;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
}

.hero-visual {
    position: relative;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* pointer-events: none; */
}

.main-image-container {
    border-radius: 16px;
    /* border: 2px solid #EB1000; */
    padding: 10px 10px 2px 10px;
    background: transparent;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.main-image {
    width: 400px;
    max-width: 400px;
    height: auto;
    margin: 0;
    border-radius: 10px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    /* border-left: 3px dashed #EB1000;
    border-right: 3px dashed #754642;
    border-top: 3px dashed #EB1000;
    border-bottom: 3px dashed #754642; */
    background: transparent !important;
    pointer-events: none;
    user-select: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    
}

.card-1 {
    top: 24%;
    left: 24px;
    animation-delay: 0s;
    background: transparent;
    /* background: linear-gradient(180deg, #fff 0%, #E9ECEF 30%); */
    /* background: #FDFDF8; */
    /* background: #E9ECEF url('../assets/signature_light.png');
    background-size: 32px;
    background-repeat: no-repeat;
    background-position: 12px center; */
    padding-left: 60px !important;
    /* color: #F16726; */
    /* border: 2px solid #F16726; */
    animation: hero_float 2.5s ease-in-out infinite;
    box-shadow: none;
    /* box-shadow: 12px 10px 24px rgba(20, 20, 20, 0.2); */
    font-weight: 650;
    pointer-events: none;
}

.card-1 .card-icon {
    position: absolute;
    top: -8px;
    left: 10px;
    width: 80px;;
    height: 80px;;
    background: url('../assets/fan.png') no-repeat center center;
    background-size: 100%;
    border-radius: 50%;
    /* animation: hero_float 6s ease-in-out infinite; */
    animation: doc-1-animation 1s ease-in-out infinite alternate;

    /* border: 1px solid #4b0500; */
}

.card-1 span {
    /* background: linear-gradient(80deg, #fff 0%, #FBB805 100%);
    animation: gradient-move 2s linear infinite alternate;
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    font-weight: 650;
    color: #CF522A;
    /* color: #fff; */
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* .card-2 {
    bottom: -8%;
    left: -20px;
    animation-delay: 1.5s;
    padding: 2px 0;
    background: transparent;
    border: 2px solid #EB1000;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
    box-shadow: none;
    transform: translateY(-10px);
    animation: hero_float 3s ease-in-out infinite;
    pointer-events: none;
}

.card-2 .card-icon {
    width: 98px;
    height: 98px;
    margin: 0;
    border-radius: 12px;
    box-shadow: none;
    background: transparent url('../assets/victory_money.png') no-repeat center center;
    background-size: 100%;
} */

.card-4 {
    bottom: 0%;
    right: -8px;
    animation-delay: 1.5s;
    padding: 0;
    border-bottom: 4px solid #3b0e05;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px);
    animation: hero_float2 2s ease-in-out infinite;
    pointer-events: none;
}

.card-4 .card-icon {
    width: 164px;
    height: 164px;
    margin: 0;
    border-radius: 50%;
    background: url('../assets/coin_single.png') no-repeat center center;
    background-size: 100%;
}

/* .card-6 {
    bottom: calc(0% - 64px);
    right: 150px;
    animation-delay: 1.5s;
    padding: 0;
    border: none;
    border-radius: none;
    box-shadow: none;
    animation: hero_float2 3s ease-in-out infinite;
    background: transparent;
}

.card-6 .card-icon {
    width: 96px;
    height: 64px;
    margin: 0;
    border-radius: 0;
    background: url('../assets/sign_dp3.png') no-repeat center center;
    background-size: 100%;
    transition: transform 0.75s ease;
}

.card-6 .card-icon:hover {
    transform: scale(1.1);
} */

/* .sparkle_div {
    padding: 0;
    margin: 0;
    display: block;
    position: absolute;
    top: -49px;
    right: -16px;
    z-index: 99999;
} */

.card-3 {
    bottom: 224px;
    right: 24px;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    display: block;
    transform: rotate(0deg);
}

.card-3 .sparkle {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 48px;
    height: 48px;
    margin: 0;
    /* float: left; */
  }


  .card-5 {
    top: -0%;
    left: 88px;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    display: block;
    transform: rotate(180deg);
}

.card-5 .sparkle {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    margin: 0;
    /* float: left; */
  }
  
  .sparkle path:first-child {
    animation: sparkleLarge 3.75s linear infinite;
    -webkit-animation: sparkleLarge 3.75s linear infinite;
    fill: #c90 !important;
  }
  
  .sparkle path:last-child {
    animation: sparkle 3.75s linear infinite;
    -webkit-animation: sparkle 3.75s linear infinite;
    fill: #fc8719 !important;
  }

  .card-5 .sparkle path:first-child {
    animation: sparkleLarge 2.75s linear infinite;
    -webkit-animation: sparkleLarge 2.75s linear infinite;
    fill: #800900 !important;
  }

  .card-5 .sparkle path:last-child {
    animation: sparkle 2.75s linear infinite;
    -webkit-animation: sparkle 2.75s linear infinite;
    fill: #fc8719 !important;
  }


  .sparkle path {
    animation-play-state: running;
  }

  .sparkle path:hover {
    /* Stop all previous animations */
    animation: none !important;
    animation-delay: 0.1s;
    /* Start spinAndReturn animation on hover */
    animation: spinAndReturn 0.5s linear;
  }

  @keyframes spinAndReturn {
    0% {
      transform: rotate(45deg);
    }
    99% {
      transform: rotate(405deg);
    }
    100% {
      transform: rotate(45deg);
    }
  }
  
  /* also need keyframes and -moz-keyframes */
  @keyframes sparkle {
    8%, 41% {
        transform: translateX(-4px);
        -webkit-transform: translateX(-4px);
    }
    25%, 58% {
        transform: translateX(4px);
        -webkit-transform: translateX(4px);
    }
    75% {
        transform: translateX(-2px);
        -webkit-transform: translateX(-2px);
    }
    92% {
        transform: translateX(2px);
        -webkit-transform: translateX(2px);
    }
    0%, 100% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
  }
  
  
  @keyframes sparkleLarge {
    8%, 41% {
        transform: translateX(4px);
        -webkit-transform: translateX(4px);
    }
    25%, 58% {
        transform: translateX(-4px);
        -webkit-transform: translateX(-4px);
    }
    75% {
        transform: translateX(2px);
        -webkit-transform: translateX(2px);
    }
    92% {
        transform: translateX(-2px);
        -webkit-transform: translateX(-2px);
    }
    0%, 100% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
  }
  
  
  

.card-icon {
    font-size: 16px;
}

@keyframes hero_float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes hero_float2 {
    0%, 100% { transform: translateY(-10px); }
    50% { transform: translateY(0px); }
}






.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-title-large {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle-small {
    font-size: 14px;
    color: #EB1000;
    max-width: 600px;
    margin: -1rem auto 0 auto;
}


.testimonial {
    max-width: 1000px;
    margin: 100px auto 0 auto;
    text-align: center;
}

.senja-embed {
    min-height: 350px;
    min-width: 100%;
    background-color: #eee;
}

.testimonial .testimonial-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.testimonial .testimonial-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    outline: 1px solid #000;
    user-select: none;
    pointer-events: none;
}
.testimonial .testimonial-profile div {
    vertical-align: middle;
    justify-content: center;
}

.testimonial .testimonial-profile h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    width: 100%;
    text-align: left;
    margin: 0;
}
.testimonial .testimonial-profile p {
    font-size: 16px;
    color: #555;
    width: 100%;
    text-align: left;
    margin: 0;
}



/* How it works Section */
.how-it-works-section {
    padding: 80px 0;
    background: transparent;
}

.how-it-works-section .section-subtitle-small {
    margin: 0 auto 0 auto;
}


.how-it-works-container {
    max-width: 1100px;
    text-align: center;
    padding: 0 4rem;
    margin: 0 auto;
}


.how-it-works-row {
    min-height: 400px;
    /* max-width: 600px; */
    border-top: 2px dashed #ccc;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* grid-template-columns: 1fr 1fr; */
    gap: 0rem;
    margin: 0 auto;
}

.how-it-works-row.step3 {
    border-bottom: 2px dashed #ccc;
}


.how-it-works-row .how-it-works-col:first-child {
    border-right: 2px dashed #ccc;
}


.how-it-works-row .how-it-works-col {
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: transparent;
}


.how-it-works-row .how-it-works-col.text-col .text-col-inner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
}

.how-it-works-row .how-it-works-col:last-child .text-col-inner {
    right: 0;
    text-align: right;
}

.how-it-works-row .how-it-works-col.text-col {
    align-items: left;
    text-align: left;
}

.how-it-works-row .how-it-works-col.text-col h4 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    text-align: left;
}

.how-it-works-row .how-it-works-col.text-col p {
    font-size: 2.5rem;
    color: #555;
    text-align: left;
    margin-bottom: 24px;
}


.how-it-works-row .how-it-works-col .step-number {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #E9721F;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #ca4b10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}


.how-it-works-row.step1 .how-it-works-col.img-col .img-col-inner {
    display: block;
    margin: 0 auto;
    height: 400px;
    width: 400px;
    border-radius: 16px;
    border: 2px solid #000;
    background: url('../assets/join.jpg') no-repeat center center;
    background-size: contain;
}


.how-it-works-row.step2 .how-it-works-col.img-col .img-col-inner {
    display: block;
    margin: 0 auto;
    height: 400px;
    width: 400px;
    border-radius: 16px;
    border: 2px solid #000;
    background: url('../assets/promote.jpg') no-repeat center center;
    background-size: contain;
}


.how-it-works-row.step3 .how-it-works-col.img-col .img-col-inner {
    display: block;
    margin: 0 auto;
    height: 400px;
    width: 400px;
    border-radius: 16px;
    border: 2px solid #000;
    background: url('../assets/reward.jpg') no-repeat center center;
    background-size: contain;
}


/* Benjamin Section */
.benjamin {
    display: block;
    padding: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    pointer-events: none;
}


.benjamin .benjamin-inner {
    position: relative;
    display: block;
    margin: 0 auto;
    height: 254px;
    width: 209px;
}

.benjamin .benjamin-inner-eyes {
    display: block;
    position: absolute;
    width: 44px;
    height: 11px;
    top: 85px;
    right: 62px;
    z-index: 0;
    transform: rotate(2deg);
}


.benjamin .benjamin-inner-eyes .benjamin-eye {
    display: inline-block;
    border-radius: 50%;
    background: #e4faec;
    width: 9px;
    height: 9px;
    margin: 0;
}

.benjamin .benjamin-inner-eyes .benjamin-eye.eye-left {
    float: left;
}

.benjamin .benjamin-inner-eyes .benjamin-eye.eye-right {
    float: right;
    /* background: #b9e9cb; */
}


.benjamin .benjamin-inner-eyes .benjamin-eye .eye-ball {
    position: relative;
    display: block;
    background: #034124;
    width: 6px;
    height: 5px;
    border-radius: 50%;
    outline: 1px solid #01311b;
    /* border-bottom: 1px solid darkgreen; */
}

.benjamin .benjamin-inner-eyes .benjamin-eye.eye-right .eye-ball {
   
}


.benjamin .benjamin-inner-eyes .benjamin-eye .eye-ball:after { /*pupil*/
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 1px;
    height: 3px;
    background: #00301a;
    border-radius: 50%;
    content: " ";
  }

.benjamin .benjamin-inner .benjamin-img {
    display: block;
    position: relative;
    opacity: 1;
    margin: 0;
    background: url('../assets/benjamin.png') no-repeat center center;
    background-size: 100%;
    height: 100%;
    z-index: 2;
}



/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 0rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 0;
    /* background: #f8f9fa; */
    background: transparent;
    /* border: 1px solid #e9ecef; */
    border-right: 2px dashed #ccc;
    transition: all 0.3s ease;
}

.features .features-button {
    display: block;
    text-align: center;
    margin: 4rem auto 0 auto;
}

.feature-card:nth-child(1), .feature-card:nth-child(2), .feature-card:nth-child(3) {
    border-bottom: 2px dashed #ccc;
}

.feature-card:nth-child(3) {
    border-right: none;
}

.feature-card:last-child {
    border-right: none;
}

.feature-card:hover {
    /* transform: translateY(-4px); */
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    /* border: none; */
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    width: 32px;
    height: 32px;
    transition: transform 0.5s ease;
}

.feature-icon.integrations {
    background: url('../assets/invite.png') no-repeat center center;
    background-size: 100%;
}

.feature-icon.blogging {
    background: url('../assets/blogging.png') no-repeat center center;
    background-size: 98%;
}

.feature-icon.socials {
    background: url('../assets/socials.png') no-repeat center center;
    background-size: 96%;
}

.feature-icon.video {
    background: url('../assets/video.png') no-repeat center center;
    background-size: 98%;
}

.feature-icon.auto {
    background: url('../assets/team1.png') no-repeat center center;
    background-size: 90%;
}

.feature-icon.seal {
    background: url('../assets/url.png') no-repeat center center;
    background-size: 100%;
}

.feature-card:hover .feature-icon {
    /* transform: scale(1.1); */
}

.feature-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.feature-description {
    color: #666;
    line-height: 1.5;
    font-size: 1.75rem;
}





/* USE CASE */

.use-case-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    border-radius: 16px;
    background: #F5F5EE;
}

.use-case-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    text-align: left;
}

.use-case-text p {
    font-size: 2rem;
    line-height: 1.5;
    color: #555;
    text-align: left;
    margin-top: 24px;
}

.use-case-text p b {
    font-weight: normal;
    color: #000;
}


.use-case-image {
    width: 100%;
    height: 100%;
}

.use-case-image-sm {
    display: none;
}


.use-case-image-lg {
    display: block;
}


.use-case-image-inner {
    background: url('../assets/ok.png') no-repeat center center;
    background-size: contain;
    width: 100%;
    height: 100%;
    background-size: contain;
    animation: doc-1-animation 1s ease-in-out infinite alternate;
}

@keyframes doc-1-animation {
    from {
        transform: rotate(-8deg);
    }
    to {
        transform: rotate(0deg);
    }
}











.faq {
    position: relative;
    display: block;
    margin: 130px auto 0 auto;
    padding: 0;
    width: 85%;
    text-align: left;
  }
  
  .faq h2 {
    color: #000;
    font-weight: bolder;
    margin: 8px 0;
    font-size: 38px;
    line-height: 50px;
  }
  
  .collapsible {
    position: relative;
    background-color: transparent;
    cursor: pointer;
    padding: 16px 24px 16px 0px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 19px;
    color: #000;
  }
  
  .collapsible span {
    position: absolute;
    top: calc(50% - 6px);
    right: 8px;
    width: 12px;
    height: 12px;
    background: url("../../assets/dropdown_dark.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(0deg);
  }
  
  .collapsible.active span {
    transform: rotate(180deg);
  }
  
  .content {
    padding: 0 2px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: transparent;
      font-size: 15px;
    color: #444;
  }









  
.footer {
    position: relative;
    top: 28px;
    display: block;
    /* border-top: 1px solid #ccc; */
    background: #fff;
    margin: 150px 0 0 0;
    padding: 26px 16px 16px 16px;
    border-top: 3px solid #eee;
    /* background-color: #222; */
    /* background-image: linear-gradient(#292929 1px, transparent 1px),
      linear-gradient(90deg, #333 1px, transparent 1px),
      linear-gradient(#292929 1px, transparent 1px),
      linear-gradient(90deg, #292929 1px, transparent 1px);
    background-size:50px 50px, 50px 50px, 10px 10px, 10px 10px;
    background-position:-2px -2px, -2px -2px, -1px -1px, -1px -1px; */
    /* color: #fff; */
  
  }
  
  
  .footer hr {
    /* border-color: #e14f25; */
    border-color: #F26522;
    border-width: 3px;
    margin: 0;
  }
  
  .footer .border_div svg {
    left: 5%;
    transform: translateX(-5%);
    height: 48px;
    bottom: -45px;
  }
  
  .footer .footer_border_div svg {
    bottom: -19px;
  }
  
  
  .footer .logo_div .logo {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    background: url('../../assets/farebin_em.png');
    background-size: 38px;
    background-repeat: no-repeat;
    background-position: left center;
    min-width: 100px;
    padding: 8px 0 8px 40px;
    color: #000;
    /* color: #fff; */
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
  }
  
  .footer .logo_div .logo:hover {
    text-decoration: none;
    color: #000;
    /* color: #fff; */
  }
  
  .footer .logo_div .desc {
    margin: 8px 0 32px 8px;
    line-height: 22px;
    max-width: 300px;
  }
  
  .footer .logo_div .socials {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0 0 0 8px;
  }
  
  .footer .logo_div .socials li {
    display: inline-block;
    margin: 0 4px;
  }
  
  .footer .logo_div .socials li svg {
    color: #999;
  }
  
  .footer .logo_div .socials li svg:hover {
    color: #268BD2;
  }
  
  
  .footer .footer_styling {
    overflow: hidden;
  }
  
  
  
  
  
  
  /* Footer Links */
  
  .footer .footer_divs ul {
    list-style: none;
    padding: 0;
    margin: 9px 0 16px 0;
  }
  
  
  .footer .footer_divs ul li {
    margin: 6px 0;
    font-size: 15px;
  }
  
  .footer .footer_divs ul li:first-child {
    margin: 0 0 14px 0;
    color: #F26522;
  }
  
  .footer .footer_divs ul li a {
    color: #000;
    text-decoration: none;
    /* color: #fff; */
  }
  
  
  .footer .footer_divs ul li a:hover, .footer .footer_divs ul li a:focus {
    color: #268BD2;
    text-decoration: none;
  }
  
  
  
  
  /* footer bottom */
  
  .footer .footer_bottom {
    margin-top: 100px;
    padding-top: 16px;
    border-top: 1px solid #ddd;
  }
  
  .footer .footer_bottom .location {
    display: inline-block;
    /* float: right; */
    /* background: red; */
    margin: 0;
  }
  
  .footer .footer_bottom .location * {
    display: inline-block;
    color: #888;
    font-size: 12px;
  }
  
  .footer .footer_bottom .flag {
    width: 14px;
    height: 14px;
    margin-top: -2px;
    margin-left: 12px;
    border-radius: 50%;
    object-position: 50% 50%;
    object-fit: cover;
  }
  
  .footer .footer_bottom .copyright {
    display: inline-block;
    color: #888;
    font-size: 12px;
    margin: 0 0 0 8px;
  }
  
  
  
  
  
  
  
  
  
    .hamburger_icon, .hamburger_icon svg {
      display: none;
    }
  
    .nav_ul li.signin {
      display: none;
    }





/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}





@media (max-width: 1180px) {
   
    .hero {
        padding: 40px 48px 48px 48px;
    }

    .benefits_div h4 {
      color: #000;
      min-height: 116px;
      line-height: 28px;
      margin-top: 0;
      padding: 0 8px 0 0;
    }

    .benefits_div_second h4 {
      min-height: 148px;
    }

    .custom_pricing, .enterprise_div, .cta_div {
      min-height: 350px;
      width: 95% !important;
    }

    .custom_pricing .row .right_custom_div div {
    }

    .enterprise_div .row .right_enterprise_div div {
    }

    .template_div {
      width: 95% !important;
    }



  }





  @media (max-width: 950px) {

    .header {
      width: 100%;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-visual {
        order: -1; /* Move visual to top on mobile */
        width: 100%;
      }

      .hero-content {
        padding-top: 24px;
      }

      .card-1 {
        top: 24%;
        left: 16px;
      }

      .card-4 {
        bottom: 0%;
        right: 64px;
    }


    .how-it-works-row {
        min-height: 300px;
    }

    .how-it-works-row .how-it-works-col.text-col .text-col-inner {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 89%;
    }

    .how-it-works-row .how-it-works-col.img-col {
        vertical-align: middle;
        align-items: center;
        justify-content: center;
    }


    .how-it-works-row.step1 .how-it-works-col.img-col .img-col-inner {
        display: block;
        margin: 0 auto;
        height: 300px;
        width: 300px;
        border-radius: 16px;
        border: 2px solid #000;
        background: url('../assets/join.jpg') no-repeat center center;
        background-size: contain;
    }
    
    
    .how-it-works-row.step2 .how-it-works-col.img-col .img-col-inner {
        display: block;
        margin: 0 auto;
        height: 300px;
        width: 300px;
        border-radius: 16px;
        border: 2px solid #000;
        background: url('../assets/promote.jpg') no-repeat center center;
        background-size: contain;
    }
    
    
    .how-it-works-row.step3 .how-it-works-col.img-col .img-col-inner {
        display: block;
        margin: 0 auto;
        height: 300px;
        width: 300px;
        border-radius: 16px;
        border: 2px solid #000;
        background: url('../assets/reward.jpg') no-repeat center center;
        background-size: contain;
    }

    .testimonial {
        max-width: 1000px;
        margin: 80px auto 0 auto;
        padding: 0 24px;
    }
    
      
  }





  @media (max-width: 995px) {
    .footer .logo_div {
      padding-bottom: 32px;
      margin-bottom: 7px;
      /* border-bottom: 3px dashed #ccc; */
    }

    .footer .footer_divs ul {
      list-style: none;
      padding: 0 0 0 10px;
      margin: 32px 0 0 0;
    }
  }





  

/* Hero section responsive design */
@media (max-width: 768px) {
    .hero {
      margin-top: 118px;
      padding: 30px 0 40px 0;
    }
    
    .hero-container {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 0 20px;
      text-align: center;
    }
    
    .hero-title {
      font-size: 5rem;
      font-weight: bolder !important;
      margin-bottom: 1rem;
    }
    
    .hero-subtitle {
      /* font-size: 1.8rem; */
      /* margin-bottom: 2rem; */
    }
    
    .hero-actions {
      justify-content: center;
      margin-bottom: 2rem;
    }
    
    .hero-visual {
      order: -1; /* Move visual to top on mobile */
    }
    
    .main-image {
      width: 300px;
      max-width: 300px;
    }
    
    .floating-card {
      display: none; /* Hide floating cards on mobile for cleaner look */
    }
    
    .section-title-large {
      /* font-size: 3.5rem; */
    }
    
    
    .step-card,
    .strategy-card,
    .benefit-card {
      margin-bottom: 20px;
    }
    
    .cta-button {
      padding: 12px 30px;
      font-size: 1rem;
    }

  
    .how-it-works-row .how-it-works-col .step-number {
        position: absolute;
        top: -0px;
        width: 40px;
        height: 40px;
        background: #E9721F;
        color: #fff;
        border-radius: 50%;
        border: 2px solid #ca4b10;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 700;
        margin: 0 0 20px 0;
    }

    .hero .border_div {
      display: none;
    }
  
    
    .step-card,
    .strategy-card,
    .benefit-card {
      margin-bottom: 20px;
    }
    
    .cta-button {
      padding: 12px 30px;
      font-size: 1rem;
    }
  }

  




  @media (max-width: 480px) {
    .hero {
      margin-top: 70px;
      padding: 20px 0 30px 0;
    }
    
    .hero-container {
      padding: 0 15px;
      gap: 1.5rem;
    }
    
  
    
    .main-image {
      width: 250px;
      max-width: 250px;
    }
    
    .section-title {
      /* font-size: 2rem; */
    }
    
    .section-title-large {
      /* font-size: 2.8rem; */
    }
    
    .section-subtitle {
      /* font-size: 1.2rem; */
    }
    
    .button {
      /* padding: 10px 20px; */
      font-size: 14px;
    }
    
    .button-large {
      padding: 12px 24px;
      font-size: 16px;
    }
  
    .header .button {
        display: none;
    }

  .hero-section {
    padding: 100px 0 60px;
  }

  .hero .button {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
  }
  
  
  .how-it-works-section,
  .how-to-succeed-section,
  .why-promote-section,
  .join-program-section {
    padding: 60px 0;
  }
  
  .step-card,
  .strategy-card,
  .benefit-card {
    padding: 25px 15px;
  }
  


  .how-it-works-container {
    padding: 0 2rem;
  }
  
  .how-it-works-row {
    min-height: 590px;
    grid-template-columns: 1fr;
    min-height: auto;
    border-top: none;
    border-bottom: 2px dashed #ccc;
    padding: 2rem 0;
  }
  
  .how-it-works-row:first-child {
    border-top: 2px dashed #ccc;
  }
  
  .how-it-works-row .how-it-works-col:first-child {
    border: none;
    /* padding-bottom: 2rem;
    margin-bottom: 2rem; */
  }
  
  .how-it-works-row .how-it-works-col.img-col {
    order: -1; /* Move image to top */
    padding: 0;
  }

  .how-it-works-row.step2 .how-it-works-col.img-col {
    padding: 0;
    margin: 0;
    height: auto !important;
  }

  .how-it-works-row .how-it-works-col.img-col .img-col-inner {
    height: 250px;
    width: 250px;
    margin: 0 auto !important;
  }
  
  .how-it-works-row .how-it-works-col.text-col {
    order: 1; /* Move text to bottom */
  }
  
  .how-it-works-row .how-it-works-col .step-number {
    position: relative;
    top: 12px;
    right: auto;
    left: auto;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    display: none;
  }


  .how-it-works-row .how-it-works-col.text-col .text-col-inner {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
    right: auto;
  }
  
  .how-it-works-row .how-it-works-col.text-col h4 {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .how-it-works-row .how-it-works-col.text-col p {
    /* font-size: 1.8rem; */
    text-align: center;
  }
  
  .how-it-works-row.step1 .how-it-works-col.img-col .img-col-inner,
  .how-it-works-row.step2 .how-it-works-col.img-col .img-col-inner,
  .how-it-works-row.step3 .how-it-works-col.img-col .img-col-inner {
    height: 300px;
    width: 300px;
  }


  .how-it-works-container {
    padding: 0 1rem;
  }
  
  .how-it-works-row .how-it-works-col.text-col h4 {
    font-size: 2rem;
  }
  
  .how-it-works-row .how-it-works-col.text-col p {
    /* font-size: 1.5rem; */
  }
  
  .how-it-works-row.step1 .how-it-works-col.img-col .img-col-inner,
  .how-it-works-row.step2 .how-it-works-col.img-col .img-col-inner,
  .how-it-works-row.step3 .how-it-works-col.img-col .img-col-inner {
    height: 250px;
    width: 250px;
  }

  .feature-card {
    border: none;
    border-bottom: 2px dashed #ccc;
  }

  .feature-card:last-child {
    border: none;
  }

}



  @media (max-width: 450px) {

    .hero .border_div {
      display: none;
    }

    .faq {
      width: 90%;
    }

    .collapsible {
      padding: 16px 32px 16px 0px;
    }


    .header {
      width: 100%;
    }

    .header .header_top {
      width: 100%;
    }

    .logo {
      left: 0px;
    }

    .log_in, .sign_up {
      display: none;
    }

    .hamburger_icon {
      display: block;
      position: absolute;
      top: 12px;
      right: 0;
      padding: 6px 16px;
    }

    .hamburger_icon #open-menu-svg {
      display: block;
    }

    .header .header_bottom {
      padding: 0px 8px 0 8px;
      background-color: #F5F5EE;
      background-color: #FDFDF8;
      box-shadow: 0 5px 10px -3px #0005;
      height: 990px;
      top: 60px;
      right: -110%;
      position: absolute;
      -webkit-transition: right 0.45s;
      -moz-transition:    right 0.45s;
      -ms-transition:     right 0.45s;
      -o-transition:      right 0.45s;
      transition:         right 0.45s;
    }

    .nav_ul {
      /* display: none; */
      text-align: center;
      width: 100%;
      padding: 0 8px;
      margin: 0;
    }

    .nav_ul li.signin {
      display: block;
      /* border-top: 1px solid #ddd; */
    }

    .nav_ul li {
      display: block;
      margin: 0 0 0 0;
      padding: 0;
      font-weight: bold;
      font-size: 18px;
      width: 100%;
      text-align: left;
      background: url('../../assets/chevron-right-dark-24px.png');
      background-size: 20px;
      background-repeat: no-repeat;
      background-position: 98% center;
      border-bottom: 1px solid #ddd;
    }

    .nav_ul li a {
      display: block;
      padding: 24px 8px !important;
      color: #444;
      width: 100%;
    }


    .use-case-image-sm {
      display: block;
      height: 200px;
    }

    .use-case-text {
      display: block;
    }

    .use-case-image-lg {
      display: none;
    }

    .use-case-container {
        max-width: 1200px;
        padding: 32px 40px;
        display: block;
    }

    .use-case-text p {
        font-size: 2rem;
        line-height: 1.6;
        color: #555;
        text-align: left;
        margin-top: 24px;
    }

    .footer .logo_div {
      margin-bottom: 24px;
    }

    .footer .logo_div .desc {
      margin: 8px 0 16px 8px;
      max-width: 95%;
      font-size: 16px;
      color: #999;
    }

    .footer .footer_divs ul {
      list-style: none;
      padding: 0 0 0 10px;
      margin: 32px 0 16px 0;
    }

    .footer .org_unit {
      display: none;
    }

    .carousel-container h2 {
      font-size: 24px;
    }

    .logo-item {
      width: 116px;
      margin: 0 16px;
    }

  }




  @media (max-width: 300px) {
    .footer .logo_div {
      margin-bottom: 24px;
    }

    .footer .logo_div .desc {
      margin: 8px 0 16px 8px;
      max-width: 95%;
      font-size: 16px;
      color: #999;
    }

    .footer .footer_divs ul {
      list-style: none;
      padding: 0 0 0 10px;
      margin: 32px 0 16px 0;
    }
  }
