/* RESET & GLOBAL STYLES */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/helvetica-neue-55');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a{
	font-family: 'Helvetica Neue', sans-serif;
	font-weight: 400;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #122023;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
}

.max-w { max-width: 700px; margin: 0 auto; }
.max-w-md { max-width: 850px; margin: 0 auto; }
.text-center { text-align: center; }

/* GLOBAL HEADING RULE (As specified: 50px, controllable from here) */
h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    color: #202550;
    margin-bottom: 20px;
}
h2 {
	font-size: clamp(30px, 2.22vw, 40px);
}

p.subtitle {
    font-size: 18px;
    color: #000;
    margin-bottom: 40px;
}
p{font-size: 18px;
	}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-primary {
    background-color:#FC0;
    color: #122023;
}

.btn-dark {
    background-color: #202550;
    color: #ffffff;
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

/* ----------Padding Responsive--------- */
.ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
/* ----Responsive--- */
@media (max-width: 1699px) {
.ptb-80 {
    padding-top: 60px;
    padding-bottom: 60px;
}
}

@media (max-width:767px) {
.ptb-80 {
    padding-top: 40px;
    padding-bottom: 40px;
}
}
/* ----------Padding Responsive Style End--------- */

/* HEADER STYLE */
.site-header {
    background-color: #ffffff;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: fixed;
    z-index: 1000;
    width: 100%;
    top: 20px;
    max-width: 1560px;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-radius: 8px;
}
.header-btn a.btn {
    text-transform: uppercase;
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}
.main-menu ul {
    display: flex;
    list-style: none;
    gap: 55px;
}
.main-menu ul>li {
    margin: 0 0;
}
.main-menu ul li a {
    text-decoration: none;
    color: #122023;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}
.main-menu ul .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 7px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23122023' d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

@media (max-width: 1199px) {
	.header-wrapper .main-menu ul li:hover a {
    background: #FFF9ED;
    border-radius: 0;
    color: #202550;
}
.header-wrapper .mobile-nav-toggle {
    display: flex;
    background: #202550;
    border: 1px solid #202550;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 8px;
    z-index: 1001;
    gap: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.header-wrapper .mobile-nav-toggle:hover, .header-wrapper .mobile-nav-toggle:focus {
    background: #202550;
    outline: none;
}
.header-wrapper .mobile-nav-toggle .hamburger-bar {
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6), 
                    opacity 0.3s ease, 
                    width 0.3s ease;
}
    

    .header-wrapper .mobile-nav-toggle .hamburger-bar:nth-child(2) {
        width: 14px;
        align-self: flex-start;
        margin-left: 11px;
    }


.header-wrapper .main-nav {
    position: absolute;
    top: calc(100% - -10px);
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(28, 28, 30, 0.08);
    border-radius: 8px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    align-items: flex-start;
    padding: 5px 15px 15px 15px;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                    visibility 0.4s ease;
    z-index: 1000;
	    font-family: 'Inter', sans-serif;
}

    .header-wrapper .main-menu {
        width: 100%;
    }

    .header-wrapper .main-menu ul {
        flex-direction: column;
        width: 100%;
        gap: 0; 
    }

    .header-wrapper .main-menu ul li {
        width: 100%;
        border-bottom: 1px solid rgba(28, 28, 30, 0.06);
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .header-wrapper .main-menu ul li:last-child {
        border-bottom: none;
    }

    .header-wrapper .main-menu ul li a {
        display: block;
        width: 100%;
        padding: 14px 12px;
        font-size: 1.05rem;
        font-weight: 500;
        color: #1c1c1e;
        text-decoration: none;
        border-radius: 8px;
        transition: background-color 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
		    font-family: 'Inter', sans-serif;
    }

    .header-wrapper .main-menu ul li a:hover,
    .header-wrapper .main-menu ul li a:focus {
        background-color: rgba(28, 28, 30, 0.03);
        color: #0288d1; 
        padding-left: 18px;
    }

    .header-wrapper .header-btn {
        width: 100%;
        padding-top: 16px;
        border-top: 1px solid rgba(28, 28, 30, 0.08);
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        transition-delay: 0.25s; 
    }

    .header-wrapper .btn-dark {
        display: block;
        text-align: center;
        padding: 14px 24px;
        font-weight: 400;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(28, 28, 30, 0.15);
    }

    
    .header-wrapper .main-nav.nav-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .header-wrapper .main-nav.nav-open .main-menu ul li {
        opacity: 1;
        transform: translateY(0);
    }

    .header-wrapper .main-nav.nav-open .main-menu ul li:nth-child(1) { transition-delay: 0.04s; }
    .header-wrapper .main-nav.nav-open .main-menu ul li:nth-child(2) { transition-delay: 0.08s; }
    .header-wrapper .main-nav.nav-open .main-menu ul li:nth-child(3) { transition-delay: 0.12s; }
    .header-wrapper .main-nav.nav-open .main-menu ul li:nth-child(4) { transition-delay: 0.16s; }
    .header-wrapper .main-nav.nav-open .main-menu ul li:nth-child(5) { transition-delay: 0.20s; }
    .header-wrapper .main-nav.nav-open .main-menu ul li:nth-child(6) { transition-delay: 0.24s; }
    .header-wrapper .main-nav.nav-open .main-menu ul li:nth-child(7) { transition-delay: 0.28s; }

    .header-wrapper .main-nav.nav-open .header-btn {
        opacity: 1;
        transform: translateY(0);
    }

 .header-wrapper .mobile-nav-toggle.active {
    background-color: #202550;
}
    
    .header-wrapper .mobile-nav-toggle.active .hamburger-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header-wrapper .mobile-nav-toggle.active .hamburger-bar:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .header-wrapper .mobile-nav-toggle.active .hamburger-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        width: 20px;
    }
	.header-wrapper .main-menu ul.sub-menu {
    position: static;
    background: transparent;
}
}


/* HERO SECTION */
.hero-section {
    color: #ffffff;
    width: 100%;
    background-size: cover;
    background-image: url("../images/banner.png");
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: end;
    padding-bottom: 90px;
	position:relative;
}
.hero_video_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero_video_wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-section:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background: linear-gradient(0deg, rgb(0 0 0 / 35%) 0%, rgb(0 0 0 / 58%) 30%, rgb(0 0 0 / 22%) 60%, rgb(0 0 0 / 0%) 100%);
    z-index: 11;
}
.hero-section h1 {
    color: #ffffff;
    max-width: 825px;
    font-weight: 700;
    font-size: clamp(32px, 3.78vw, 68px);
}
.hero-content {
    flex: 1;
}
.hero-section h1 span {
    color: #FC0;
}

.hero-container {
    display: flex;
    align-items: flex-end;
    gap: 70px;
    position: relative;
    z-index: 11;
}

.hero-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin-top: 35px;
}

.hero-cta-box {
    padding: 0;
    border-radius: 12px;
    color: #ffffff;
    max-width: 390px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.hero-btns a.btn.btn-primary {
    color: #202550;
    background: #fff;
}

.hero-btns a.btn.btn-primary:hover {
    background: #202550;
    color: #fff;
}

.hero-btns a.btn.btn-outline:hover {
    background: #FC0;
    border-color: #FC0;
}
.hero-btns a.btn {
    text-transform: uppercase;
    padding-inline: 20px;
    line-height: 56px;
    height: 56px;
    padding-block: 0;
    display: flex;
    align-items: center;
}
.hero-feat-item {
    padding: 0px;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    width: calc(27% - 10px);
    border-right: 1px solid #fff;
    border-radius: 0;
}
.hero-feat-item:nth-child(2) {
    width: calc(23% - 10px);
}
.hero-feat-item span {
    font-size: 15px;
    font-weight: 400;
   padding-right: 10px;
}

.hero-feat-item:last-child {
    border-right: none;
}

/* TRUSTED SECTION */
.trusted-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.logo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

/* DASHBOARD & PROCESS */

/* ============ AI KITCHEN ACTION STYLE ============ */
.ai_kitchen_action {
    position: relative;
    width: 100%;
    min-height: 380px;
    overflow: hidden;
    background: #202653;
    box-sizing: border-box;
}
.ai_kitchen_action:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url('http://staging.metafoodx.com/wp-content/uploads/2026/08/slad03.png');
    background-repeat: no-repeat;
	background-size: contain;
    background-position: left;
    width: 100%;
    max-width: 160px;
    height: 236px;
}
.ai_kitchen_action:after {
    content: '';
    position: absolute;
    top: 43px;
    right: 0;
    background-image: url('http://staging.metafoodx.com/wp-content/uploads/2026/08/slad01.png');
    background-repeat: no-repeat;
	background-size: contain;
    background-position: right;
    width: 100%;
    max-width: 140px;
    height: 240px;
}
.ai_kitchen_action .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.ai_kitchen_action__content {
    width: 600px;
    flex-shrink: 0;
}

.ai_kitchen_action__content h2 {
    margin: 0 0 10px;
    color: #ffffff;
}

.ai_kitchen_action__content p {
    margin: 0 0 40px;
    color: #FFFFFF;
}

.ai_kitchen_action__features {
    display: grid;
    grid-template-columns: repeat(2, 220px);
    gap: 15px;
}

.ai_kitchen_action__feature {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
    min-height: 53px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    background: #5C619140;
    box-shadow: 0px 4px 12px 0px #00000033;
    box-sizing: border-box;
}

.ai_kitchen_action__feature_icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 25px;
}

.ai_kitchen_action__feature_icon--red {
    background: #ff5b68;
}

.ai_kitchen_action__feature_icon--blue {
    background: #00a9dc;
}

.ai_kitchen_action__feature_icon--yellow {
    background: #ffc400;
}

.ai_kitchen_action__feature_icon--green {
    background: #00ca83;
}

.ai_kitchen_action__feature p {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.ai_kitchen_action__visual {
    position: relative;
    width: 100%;
    max-width: 800px;
}
.ai_kitchen_action__laptop_screen img {
    width:100%;
}
@media (max-width: 16699px) {}
@media (max-width: 1399px) {
	.ai_kitchen_action .container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
}
@media (max-width: 1140px) {
	.ai_kitchen_action .container {
    grid-template-columns: 1fr;
    gap: 30px;
}
.ai_kitchen_action__content {
    width: 100%;
}	
.ai_kitchen_action__features {
    grid-template-columns: repeat(2, 1fr);
}	
}
@media (max-width: 767px) {

.ai_kitchen_action__features {
    grid-template-columns: 1fr;
}	
.ai_kitchen_action__content p {
    margin: 0 0 24px;
}
.ai_kitchen_action:after,	
.ai_kitchen_action:before {
    max-width: 100px;
    height: 150px;
}	
}

  /* ============ AI KITCHEN ACTION STYLE END============ */


/********/


.mannual-tracking {
    padding: 80px 0;
}
.tracking-cta a.btn {
    margin-top: 60px;
}
.tracking-cta a.btn {
    margin-top: 60px;
    text-transform: uppercase;
    padding-inline: 20px;
    line-height: 56px;
    height: 56px;
    padding-block: 0;
}
.btn-dark:hover {
    background: #FC0;
}

/* MANAGEMENT SECTION STYLES */
.management-section {
    width: 100%;
    background-color: #FFFBE9;
    overflow: hidden;
}

.management-wrapper {
    display: flex;
    min-height: 600px; 
}


.management-image-col {
    width: 50%;
    position: relative;
}

.management-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.management-content-col {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 80px 60px 80px 80px; 
}

.management-content-col .content-inner {
    max-width: 660px;
}

.management-content-col h2 {

    color: #202550;
    line-height: 1.2;
}

.management-content-col .description {
    line-height: 1.6;
    color: #000;
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text {
    font-size: 18px;
    color: #000;
    font-weight: 400;
}

@media (max-width: 991px) {
    .management-wrapper {
        flex-direction: column;
    }
    .management-image-col, 
    .management-content-col {
        width: 100%;
    }
    .management-image-col {
        height: 400px;
    }
    .management-content-col {
        padding: 50px 20px;
    }
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
    padding: 100px 0 0px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}
.works-grid-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
    flex-wrap: wrap;
}
.steps-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
    width: calc(60% - 80px);
    padding-left: 0px;
    padding-right: 100px;
    padding-bottom: 100px;
}
.step-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 50px 60px 30px 40px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
}
.step-card:first-child:before {
    position: absolute;
    content: "";
    background: url("http://staging.metafoodx.com/wp-content/uploads/2026/07/arrow-l.png");
    width: 11vw;
    height: 14vw;
    background-size: contain;
    background-repeat: no-repeat;
    left: -5.5vw;
    z-index: 1;
    top: 5vw;
}
.step-card:nth-child(2):after {
    position: absolute;
    content: "";
    background: url("http://staging.metafoodx.com/wp-content/uploads/2026/07/arrow-r.png");
    width: 11vw;
    height: 14vw;
    background-size: contain;
    background-repeat: no-repeat;
    right: -11vw;
    z-index: 1;
    top: 4vw;
}
.step-badge {
    position: absolute;
    top: -1px;
    left: -1px;
    background-color: #FEEECD;
    color: #202550;
    padding: 0;
    border-radius: 20px 0 20px 0px;
    letter-spacing: 0.5px;
    width: 86px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
}

.step-card-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-text-block h3 {
    font-size: 20px !important;
    color: #202550;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}
.step-text-block p {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
}

.hardware-image-column {
    width: calc(40% - 10px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.circle-bg-accent {
    position: absolute;
    width: 450px;
    height: 450px;
    background-color: #FFFBE9;
    border-radius: 50%;
    z-index: 1;
}

.hardware-device-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    display: block;
}

/* RESPONSIVE CONTROL CODE */
@media (max-width: 991px) {
    .works-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    .circle-bg-accent {
        width: 320px;
        height: 320px;
    }
}

/* SOLUTIONS SLIDER */
.solutions-section {
    background-color: #202550;
    color: #ffffff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.solutions-section .swiper {
    overflow: visible;
}

.solutions-section .header-content {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 50px auto;
}

.solutions-section .header-content h2 {
    color: #fff;
}

.solutions-section .header-content p {
    color: #fff;
    line-height: 1.6;
}

.solutions-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* ==========================================================================
   Card Container & Smooth Slide-Up Transition Logic
   ========================================================================== */
.solution-card {
  position: relative;
  height: 380px;
  border-radius: 16px;
  overflow: hidden; /* Crucial: hides the back card while it's waiting below */
  cursor: pointer;
}

/* Front State (Image view) */
.card-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); 
  z-index: 1;
}

.card-front h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0;
}

.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FEEECD;
    color: #1a224c;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e2e8f0;
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.back-content h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}
.back-content p {
    color: #000;
    font-weight: 400;
}

/* Explore Action Text */
.explore-btn {
  text-decoration: none;
  color: #FC0;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: gap 0.2s ease;
	text-transform:uppercase;
}

.explore-btn:hover {
  gap: 12px;
}

/* ==========================================================================
   Hover Triggers (Slide Action)
   ========================================================================== */
.solution-card:hover .card-back {
  /* Slides perfectly up into view */
  transform: translateY(0); 
}

.solution-card:hover .card-front {
  /* Optional: slightly nudges the image up for parallax depth */
  transform: translateY(-10px); 
}




Here is your updated CSS with a parent class scoping every single rule.

For this setup, I have used `.challenges-section` as the explicit parent prefix. This ensures your component's styles remain completely isolated and won't leak into or conflict with other parts of your website.

```css
/* ==========================================================================
   Scoped Components: .challenges-section Parent Prefix
   ========================================================================== */

/* Core Styling Reset applied locally within section */
.challenges-section * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.challenges-section {
  background-color: #ffffff;
  color: #1e293b;
  padding: 80px 0px;
}

.challenges-section .tab-panels .accordion-item.active span.plus-minus::after {
    opacity: 0;
}
.challenges-section .section-header {
    text-align: center;
    margin: 0 auto 40px auto;
}

.challenges-section .section-header h2 {
  margin-bottom: 16px;
}

.challenges-section .section-header p {
    color: #000;
}

/* Hide Radio Controllers completely */
.challenges-section input[type="radio"][name="kitchen-tabs"] {
  display: none;
}

/* Pill Navigation Bar Layout */
.challenges-section .tab-nav-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.challenges-section .tab-nav {
    display: inline-flex;
    background-color: #FFF8E9;
    padding: 6px;
    border-radius: 50px;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.challenges-section .tab-label {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #122023;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

/* Tab Selection Logic via scoped CSS selectors */
.challenges-section #tab-waste:checked ~ .tab-nav-wrapper .label-waste,
.challenges-section #tab-cost:checked ~ .tab-nav-wrapper .label-cost,
.challenges-section #tab-safety:checked ~ .tab-nav-wrapper .label-safety,
.challenges-section #tab-ops:checked ~ .tab-nav-wrapper .label-ops {
  background-color: #1e254c;
  color: #ffffff;
}

/* Panels Visibility Logic */
.challenges-section .tab-panels {
  position: relative;
}

.challenges-section .panel-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.challenges-section #tab-waste:checked ~ .tab-panels .content-waste,
.challenges-section #tab-cost:checked ~ .tab-panels .content-cost,
.challenges-section #tab-safety:checked ~ .tab-panels .content-safety,
.challenges-section #tab-ops:checked ~ .tab-panels .content-ops {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Layout Content Grid */
.challenges-section .panel-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: start;
}

.challenges-section .panel-image img {
    width: 100%;
    border-radius: 20px;
}

.challenges-section .panel-details h3 {
    font-size: 24px;
    color: #1e254c;
    margin-bottom: 15px;
}

.challenges-section .panel-desc {
    color: #000;
    line-height: 1.6;
    margin-bottom: 32px;
}
.challenges-section .accordion-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.challenges-section .accordion-item {
    padding: 8px 20px;
    transition: box-shadow 0.2s ease;
    border-radius: 20px;
    border: 1px solid #F2E8C0;
    background: #FFF;
}
.challenges-section .accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.challenges-section .accordion-header {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  cursor: pointer;
}
.challenges-section .accordion-header span.icon {
    width: 60px;
    height: 60px;
    background-color: #FEEECD;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.challenges-section .accordion-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1e254c;
  flex-grow: 1;
}



.challenges-section .plus-minus {
  position: relative;
  width: 14px;
  height: 14px;
}

.challenges-section .plus-minus::before, 
.challenges-section .plus-minus::after {
  content: '';
  position: absolute;
  background-color: #64748b;
  transition: transform 0.25s ease;
}

/* Horizontal Line */
.challenges-section .plus-minus::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

/* Vertical Line */
.challenges-section .plus-minus::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

/* Responsive Scaling Overrides */
@media (max-width: 999px) {
  .challenges-section .panel-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

}




/* ==========================================================================
   FAQ SECTION SCOPED STYLES
   ========================================================================== */
.faq-section {
  background-color: #ffffff;
  padding: 80px 0px;
      font-family: 'Inter', sans-serif;

}

.faq-section .faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    color: #1e254c;
    margin-bottom: 48px;
}
.faq-section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-section .faq-item {
  border: 1px solid #fbcfe8; /* Soft golden/pink stroke border styling */
  border-color: #fef08a; /* Golden tone border matches layout */
  border-radius: 12px;
  background-color: #ffffff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-section .faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: 'Inter', sans-serif;
}

.faq-section .faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Creating the cross with CSS pseudo-elements */
.faq-section .faq-icon::before,
.faq-section .faq-icon::after {
  content: '';
  position: absolute;
  background-color: #475569;
  transition: transform 0.25s ease;
}

/* Horizontal line */
.faq-section .faq-icon::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

/* Vertical line */
.faq-section .faq-icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

/* Inner Description Panel */
.faq-section .faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 28px;
}

.faq-section .faq-panel p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-bottom: 22px;
}

/* Active State Styles */
.faq-section .faq-item.active {
  box-shadow: 0 4px 20px rgba(234, 179, 8, 0.06);
}

.faq-section .faq-item.active .faq-panel {
  max-height: 1000px; /* Expands smoothly */
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-section .faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0; /* Hides vertical line to form minus sign */
}


/* ==========================================================================
   1. REAL RESULTS SECTION SCOPED STYLES
   ========================================================================== */
.results-section {
    background-color: #ffffff;
    padding: 80px 0px;
    overflow: hidden;
}

.results-section .results-container {
  max-width: 1200px;
  margin: 0 auto;
}

.results-section .results-header {
  text-align: center;
  margin: 0 auto 50px auto;
}

.results-section .results-header h2 {
    margin-bottom: 16px;
}

.results-section .results-header p {
  line-height: 1.6;
}

.results-section .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 44px;
    overflow: visible;
}
.results-section .case-card {
    background-color: #ffffff;
    border: 1px solid #CDB892;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

/* Framing images & overlay alignment badges */
.results-section .card-image-wrapper {
  position: relative;
  height: 200px;
  width: 100%;
}

.results-section .card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results-section .brand-badge {
    position: absolute;
    bottom: 0;
    left: 30px;
    background-color: #ffffff;
    padding: 6px 14px;
    border-radius: 8px 8px 0px 0px;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 120px;
}

.results-section .badge-text {
  font-weight: 700;
  font-size: 0.85rem;
  color: #1e254c;
}

/* Inner Text Segment & Pills */
.results-section .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.results-section .card-body h3 {
    font-size: 22px;
    color: #202550;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.results-section .card-desc {
    color: #000;
    margin-bottom: 20px;
}

.results-section .metric-pill {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    border-radius: 15px;
    background: #FFFBE9;
}
.results-section .metric-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.results-section .metric-row .metric-pill {
  margin-bottom: 0;
}

.results-section .metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FEEECD;
    width: 40px;
    height: 40px;
	border-radius:50px;
}
.results-section .metric-pill p {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 7px;
}
.results-section .metric-pill strong {
    font-size: 22px;
    color: #202550;
}

/* CTA Arrow Link */
.results-section .case-link {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.40);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: auto;
    padding-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease, color 0.2s ease;
}
.results-section .case-link span.arrow {
    display: flex;
    align-items: center;
}

.results-section .case-link:hover {
  color: #1e254c;
  gap: 10px;
}


/* ==========================================================================
   2. WHY CHOOSE METAFOODX SECTION SCOPED STYLES
   ========================================================================== */
.features-section {
    background-color: #ffffff;
    padding: 0px 0px 80px;
}

.features-section .features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-section .features-header {
    text-align: center;
    margin: 0 auto 60px auto;
    max-width: 1030px;
}
.features-section .features-header h2 {
  margin-bottom: 16px;
}

.features-section .features-header p {
    color: #000;
}

/* Flex Row Separated by Borders */
.features-section .features-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: start;
}

.features-section .feature-item {
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 0;
}

.features-section .feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 128px;
    background-image: url("https://staging.metafoodx.com/wp-content/uploads/2026/07/Vector-25.png");
    background-repeat: no-repeat;
}

.features-section .feature-icon-box {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.features-section .feature-item h4 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

/* ==========================================================================
   RESPONSIVE LAYOUT CONFIGURATIONS
   ========================================================================== */
@media (max-width: 1699px) {
.challenges-section .accordion-header span.icon {
    width: 50px;
    height: 50px;
}	
}
@media (max-width: 1024px) {
  .features-section .features-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
  }
  /* Clear borders on mid-tier wrapping points */
  .features-section .feature-item::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .features-section .features-row {
    grid-template-columns: 1fr;
    gap: 48px 0;
  }
  .results-section .metric-row {
    grid-template-columns: 1fr;
  }
.challenges-section .accordion-header span.icon {
    width: 40px;
    height: 40px;
}		
}


.waste-management-hero {
    background-color: #1a224c;
    padding-top: 50px;
}
.analytics-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.marketing-pitch-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.value-prop-heading {
    margin-bottom: 20px;
color:#fff;
}
.marketing-pitch-block-hero {
    display: flex;
    align-items: center;
}
.benefits-summary-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}
/* Button Styles */
.cta-demo-button {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-demo-button:hover {
    background-color: #FC0;
    color: #fff;
    border-color: #FC0;
}


.hardware-showcase-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.scanner-device-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: -110px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .analytics-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .marketing-pitch-block {
        align-items: center;
    }

    .value-prop-heading {
        font-size: 1.85rem;
    }

    .benefits-summary-text {
        margin-left: auto;
        margin-right: auto;
    }
}


.social-proof-section {
    background-color: #fefaf0;
    padding: 80px 0px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proof-header-block {
    text-align: center;
    max-width: 1020px;
    margin-bottom: 50px;
}

.proof-main-heading {
    margin-bottom: 20px;
}

.proof-subheading-text {
    color: #000;
}

.testimonial-showcase-card {
    background-color: #ffffff;
    width: 100%;
    border-radius: 20px 20px 0 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 60px 50px 150px 60px;
    gap: 20px;
}
.quote-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.quote-content-wrapper p.wp-block-paragraph {
    min-height: 110px;
}

.small-quote-icon {
    width: 74px;
    height: 74px;
    background-color: #ffebaa; /* Soft yellow circle */
    color: #f5b041;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: Georgia, serif;
    margin-bottom: 24px;
}

.client-quote-text {
    font-size: 18px;
    color: #000;
    margin-bottom: 100px;
    font-weight: 400;
}
.author-separator-line {
    border: none;
    border-top: 1px solid #F2E8C0;
    margin-bottom: 24px;
    width: 100%;
}

.author-name {
    font-size: 24px;
    color: #202550;
    font-weight: 600;
    margin-bottom: 6px;
}

.author-job-title {
    font-size: 18px;
    color: #000;
}

.portrait-display-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex: 1;
}

.giant-bg-quote {
    position: absolute;
    right: 30px;
    top: 20px;
    font-size: 14rem;
    font-family: Georgia, serif;
    font-weight: bold;
    color: #fff9e6;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.author-portrait-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    z-index: 2;
    border-bottom-right-radius: 0px;
    width: 80%;
    margin-bottom: -150px;
}
.portrait-display-wrapper:before {
    position: absolute;
    content: "";
    width: 300px;
    height: 300px;
    right: 0;
    top: 0;
    border-radius: 50%;
    background: rgba(248, 180, 0, 0.25);
    filter: blur(100px);
    left: 0;
    margin: 0 auto;
    z-index: 2;
}
.social-proof-section .staff-wrapper {
    position: relative;
    padding-bottom: 0px !important;
    background: #fff;
    border-radius: 15px 15px 0 0;
}

.social-proof-section .swiper-button-prev, .social-proof-section .swiper-button-next {
    top: auto !important;
    bottom: 55px !important;
    transform: none !important;
    margin: 0 !important;
    border: 1px solid #202550;
    border-radius: 6px;
    background: #fff;
}
.social-proof-section .swiper-button-next, .social-proof-section .swiper-button-prev {
    position: static !important;
}
.swiper_slider_nav_wrap {
    position: absolute;
    bottom: 60px;
    z-index: 1;
    display: flex;
    gap: 10px;
    left: 55px;
}
.swiper_slider_nav_wrap .swiper-button-prev:hover, .swiper_slider_nav_wrap .swiper-button-next:hover {
    background: #202550;
}

.swiper_slider_nav_wrap .swiper-button-prev:hover svg.swiper-navigation-icon path, .swiper_slider_nav_wrap .swiper-button-next:hover svg.swiper-navigation-icon path {
    fill: #fff !important;
}
.social-proof-section .swiper-button-prev {
    left: 55px !important;
    right: auto !important;
}
.social-proof-section svg.swiper-navigation-icon {
    width: 18px;
    height: 18px;
    fill: #202550;
}
.social-proof-section .swiper-button-next {
    left: 110px !important;
    right: auto !important;
}
.social-proof-section svg.swiper-navigation-icon path {
    fill: #202550;
}
/* Responsive Media Queries */
@media (max-width: 900px) {
    .testimonial-showcase-card {
        grid-template-columns: 1fr;
    }

   

    .portrait-display-wrapper {
        padding-top: 20px;
        background: linear-gradient(to bottom, #ffffff, #fffdf8);
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .author-portrait-image {
        max-width: 80%;
    }
    
    .giant-bg-quote {
        font-size: 0rem;
    }
}



/*******************Footer css starts from here****************/
.site-footer {
    background-color: #1e254b;
    color: #ffffff;
    padding: 60px 0 25px 0;
    font-family: "Inter", sans-serif;
}


.footer_wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.first_row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.first_row h2 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    min-height: 40px;
}

.logo_description {
    flex: 0 0 32%;
    padding-right: 70px;
}
.site-footer li a:hover {
    opacity: 0.7;
}
.logo_description img {
  max-height: 40px;
  margin-bottom: 20px;
}

.footer-description p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.quick_link_nav {
    flex: 0 0 18%;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s;
    font-family: "Inter", sans-serif;
}
.footer-menu li a:hover {
  color: #ffffff;
}

.social-address_wrap {
    flex: 0 0 28%;
    padding-right: 60px;
}
.icon_info a:hover {
    opacity: 0.6;
}
.footer-contact-item {
  display: flex;
  align-items:center;
  margin-bottom: 20px;
}
.footer-contact-item:last-child {
  align-items: flex-start;
}
.footer-contact-item .icon_wrap {
    flex-shrink: 0;
    margin-right: 15px;
    background: #FFFBE9;
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.footer-contact-item .icon_wrap img {
  width: 25px;
  height: 25px;
}

.icon_info {
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
}

.icon_info a {
    color: #fff;
    text-decoration: none;
    font-family: "Inter", sans-serif;
}

.icon_info p {
  margin: 0;
}


.social_media_wrap {
    flex: 0 0 22%;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  align-items: center;
}

.footer-social-icons a img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s;
}

.footer-social-icons a:hover img {
  transform: scale(1.1);
}

.btn_Wrap a {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 4px;
  background-color: transparent;
  transition: background-color 0.2s, border-color 0.2s;
	font-family: 'Helvetica Neue', sans-serif;
	font-weight:400;
}

.btn_Wrap a:hover {
    background-color: #FC0;
    border-color:#FC0;
}
.partners_logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    gap: 4vw;
}

.partners_logos .wp-block-image {
  margin: 10px 0;
}

.urls_copy {
  padding-top: 25px;
}

.copy_wr_prv_trm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.copy-right {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.privacy_menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy_menu li {
  position: relative;
  margin-left: 15px;
  padding-left: 15px;
}

/* Creates the vertical line separation "|" between bottom links */
.privacy_menu li:not(:first-child)::before {
  content: "|";
  position: absolute;
  left: -4px;
  color: #fff;
}

.privacy_menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

.privacy_menu li a:hover {
  color: #ffffff;
}

/* --- Responsive Adaptability --- */
@media (max-width: 991px) {
.first_row h2 {
    font-size: 18px !important;
    margin-bottom: 10px;
    min-height: 30px;
}
	.footer-contact-item .icon_wrap {
    width: 40px;
    height: 40px;
}
	.partners_logos img {
    width: 60px;
}
	.footer-contact-item .icon_wrap img {
    width: 17px;
    height: 17px;
}
	.icon_info p {
    font-size: 15px !important;
}
	.footer-menu li a {
    font-size: 15px;
}
	.icon_info {
    font-size: 15px;
}
  .logo_description, .quick_link_nav, .social-address_wrap, .social_media_wrap {
    flex: 0 0 100%;
  }
  .partners_logos {
    justify-content: center;
    gap: 20px;
  }
.copy_wr_prv_trm {
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
  .privacy_menu {
    flex-wrap: wrap;
  }
  .privacy_menu li:first-child {
    margin-left: 0;
    padding-left: 0;
  }
	.copy-right {
    font-size: 14px;
}
	.privacy_menu li a {
    font-size: 14px;
}
	.first_row {
    gap: 20px;
}
	.footer-menu li {
    margin-bottom: 6px;
}
	.footer-contact-item {
    margin-bottom: 15px;
}
	.urls_copy {
    padding-top: 15px;
}
}



@media (max-width: 1699px) {
	
	.faq-section, .results-section {
    padding: 60px 0;
}
	.faq-section .faq-container {
    max-width: 100%;
    width: 90%;
}
	.step-badge {
    width: 70px;
    height: 36px;
    font-size: 12px;
}
	.steps-column {
    padding-left: 50px;
    padding-right: 50px;
}
.results-section .card-body {
    padding: 15px;
}
.features-section .feature-icon-box {
    margin-bottom: 10px;
}
.results-section .card-image-wrapper  span.badge-icon img {
    width: 70px;
}
.giant-bg-quote img {
    width: 150px;
}
.results-section .metric-pill p {
    font-size: 15px !important;
}
.results-section .metric-pill strong {
    font-size: 18px;
}
.features-section .feature-icon-box img {
    width: 60px;
}
.results-section .results-grid {
    gap: 25px;
}
.results-section .card-body h3 {
    font-size: 20px;
}
.results-section .metric-pill {
    width: 100%;
}
.results-section .metric-row {                                                             
    flex-wrap: wrap;
}
.card-front {
    padding: 15px;
}
.challenges-section {
    padding: 60px 0px;
}
.challenges-section span.icon img {
    width: 50px;
}
.challenges-section .accordion-item {
    border-radius: 10px;
}
.features-section .feature-item h4 {
    font-size: 16px;
}
.social-proof-section {
    padding: 60px 0px 0;
}
.challenges-section .accordion-item {
    padding: 10px 15px;
}
.challenges-section .panel-grid {
    gap: 40px;
}
.solutions-section {
    padding: 60px 0;
}
.card-front h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.step-icon-box img {
    width: 60px;
    height: 60px;
}
.step-text-block h3 {
    font-size: 18px !important;
}
.step-text-block p {
    font-size: 16px;
}
.steps-column {
    padding-bottom: 60px;
}
.card-back {
    padding: 20px 15px;
}
.back-content h3 {
    font-size: 24px;
}
.step-card {
    padding: 45px 30px 30px 30px;
}
	.trusted-section {
    padding: 60px 0;
}
.how-it-works-section {
    padding: 60px 0 0px;
}
	.mannual-tracking {
    padding: 60px 0;
}
.dashboard-section {
    padding: 60px 0 0;
}
.dashboard-section:after {
    width: 100px;
    height: 180px;
}
.dashboard-section:before {
    width: 200px;
    height: 170px;
}
.feature-item {
    gap: 15px;
}
.management-content-col .description {
    margin-bottom: 30px;
}
.feature-text {
    font-size: 16px;
}
.management-content-col {
    padding: 60px 40px 60px 60px;
}
.feature-list {
    gap: 15px;
}
.icon-box img {
    width: 60px;
}
.tracking-cta a.btn {
    margin-top: 40px;
    line-height: 50px;
    height: 50px;
}
	.container, .site-header {
    width: 90%;
    max-width: 100%;
}
.site-header {
    padding: 20px 20px;
}
header.site-header .container {
    width: 100%;
}
.hero-container {
    gap: 20px;
}
.main-menu ul {
    gap: 20px;
}
.main-nav {
    gap: 30px;
}
.hero-features {
    flex-wrap: wrap;
}
.hero-feat-item {
    width: calc(50% - 8px) !important;
}
.hero-feat-item:nth-child(2) {
    border-right: none;
}
.hero-feat-item span br {
    display: none;
}
p {
    font-size: 16px !important;
}
.hero-btns a.btn {
    padding-inline: 15px;
    line-height: 50px;
    height: 50px;
    font-size: 14px;
}
.hero-feat-item span {
    padding-right: 10px;
}
	.features-section {
    padding: 0px 0px 60px;
}
}
@media (max-width: 1499px) {
	.results-section .brand-badge {
    max-width: 100px;
}
.awards-partners-item img {
    width: 150px;
    object-fit: contain;
}
	.logo-grid {
    margin-top: 40px;
}
	.step-card:nth-child(2):after {
    top: 6vw;
}
	.step-card:first-child:before {
    top: 8vw;
}
	.step-card {
    padding: 45px 15px 20px 16px;
}
	.step-card-content {
    gap: 15px;
}
	.steps-column {
    gap: 25px;
}
	.logo img {
    max-height: 30px;
}
	.header-btn a.btn {
    text-transform: uppercase;
    padding: 12px 20px;
    font-size: 14px;
}
	.author-portrait-image {

    width: 100%;
    margin-bottom: -150px;
}

}
@media (max-width: 1299px) {
	.swiper_slider_nav_wrap {
    left: 40px;
}
	.client-quote-text {
    margin-bottom: 40px;
}
	.social-proof-section .swiper-button-prev {
    left: 40px !important;
}
	.icon-box img {
    width: 50px;
}
	.main-menu ul li a {
    font-size: 14px;
}
	.management-content-col {
    padding: 40px 40px 40px 40px;
}
	.logo-grid {
    justify-content: center;
}
	.site-header .logo img {
    max-width: 170px;
}
.author-name {
    font-size: 20px;
}
.author-job-title {
    font-size: 16px;    margin-bottom: 50px;
}
.small-quote-icon {
    width: 60px;
    height: 60px;
}
.dashboard-section p {
    max-width: 765px;
    margin: 0 auto 40px;
}
.testimonial-showcase-card {
    padding: 40px 40px 80px 40px;
}
.client-quote-text {
    font-size: 16px;
}
.hero-btns a.btn {
    line-height: 46px;
    height: 46px;
    flex: 1;
    text-align: center;
    justify-content: center;
}
.site-header {
    padding: 15px;
}
.hero-section {
    padding-bottom: 50px;
}
.hero-btns a.btn {
    line-height: 46px;
    height: 46px;
}
	.step-card:first-child:before {
    top: 13vw;
}
	.step-card:nth-child(2):after {
    top: 12vw;
}
	.step-text-block p {
    font-size: 14px !important;
}
	.steps-column {
    gap: 20px;
		padding-bottom: 30px;
}
	.partners_logos {
    gap: 30px;
}
	.partners_logos img {
    width: 90px;
}
.logo_description {
        flex: auto !important;
        width: 100% !important;
    padding-right: 0;
    margin-bottom: 30px;
}
.first_row .col {
    flex: auto;
    width: calc(33.33% - 14px);
}
.social-address_wrap {
    padding-right: 0;
}
	.faq-section h2 {
    margin-bottom: 30px;
}
	.social-proof-section .swiper-button-next {
    left: 100px !important;
}
}

@media (max-width: 1199px) {
	.challenges-section .tab-nav-wrapper {
    margin-bottom: 20px;
}
	.social-proof-section {
    padding: 40px 0px 0;
}
	.site-footer {
    padding: 40px 0 20px 0;
}
.urls_copy {
    padding-top: 20px;
}
	.step-card:nth-child(2):after {
    top: 16vw;
}
	.step-card:first-child:before {
    top: 17vw;
}
	.challenges-section .tab-label {
    font-size: 14px;
		padding: 12px 20px;
}
		.challenges-section .panel-grid {
    grid-template-columns: 1fr;gap: 30px;
}
	.card-front h3 {
    font-size: 16px;
    margin-bottom: 0px;
}
	.back-content h3 {
    font-size: 20px;
}
	.back-content p{
		font-size: 14px;
	}
	.mannual-tracking h3 br {
    display: none;
}
	.author-portrait-image {
    margin-bottom: -40px;
}
	.challenges-section .tab-nav {
    justify-content: space-between;
    width: 100%;
}
		.hero-section:before {
    background: linear-gradient(0deg, rgb(0 0 0 / 62%) 0%, rgb(0 0 0 / 85%) 30%, rgb(0 0 0 / 59%) 60%, rgb(0 0 0 / 0%) 100%);
}
}

@media (max-width: 1023px) {
.quote-content-wrapper p.wp-block-paragraph {
    min-height: inherit;
}
.swiper_slider_nav_wrap {
    left: 20px;
	bottom: 30px;
}
.author-portrait-image {
    max-height: 580px;
	 margin-bottom: 0;
}
	.challenges-section .tab-label {
    font-size: 12px;
    padding: 12px 14px;
}
	.results-section .brand-badge img {
    max-width: 70px;
}
	.partners_logos {
    gap: 20px;
}
	.partners_logos img {
    width: 80px;
}
	.testimonial-showcase-card {
    padding: 20px 20px 80px 20px;
}
	.social-proof-section .swiper-button-prev {
    left: 20px !important;
}
	.social-proof-section .swiper-button-next {
    left: 70px !important;
}
	
	.giant-bg-quote {
    right: 0;
    top: 0;
     height: 50px;
}
	.giant-bg-quote img {
    width: 60px;
}
.social-proof-section .swiper-button-prev, .social-proof-section .swiper-button-next {
    bottom: 30px !important;
}
	.author-job-title {
    margin-bottom: 20px;
}
	.small-quote-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 15px;
    margin-top: 20px;
}
	.client-quote-text {
    margin-bottom: 20px;
}
	.author-separator-line {
    margin-bottom: 15px;
}
	.portrait-display-wrapper:before {
    width: 200px;
    height: 200px;
}
	.quote-content-wrapper, .portrait-display-wrapper {
    flex: auto;
}
	.quote-content-wrapper {
    order: 1;
}

	
	.proof-header-block {
    max-width: 100%;
    margin-bottom: 20px;
    padding: 0 30px;
}
.marketing-pitch-block-hero {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    gap: 20px;
}
	.faq-section {
padding-left:0;
		padding-right:0;
}
	.waste-management-hero {
    padding-bottom: 50px;
}
	.benefits-summary-text {
    margin-left: 0;
    margin-right: 0;
	margin-bottom: 20px;
}
	.scanner-device-image {
    margin-top: 0;
}
	.marketing-pitch-block {
    align-items: flex-start;
}
	.marketing-pitch-block {
    margin-bottom: 0;
}
.hardware-image-column {
    width: 100%;
}
	.features-section .features-header {
    margin: 0 auto 40px auto;
}
	.step-card:first-child:before, .step-card:nth-child(2):after{
		display:none;
	}
	.works-grid-wrapper {
    gap: 30px;
    margin-top: 30px;
}
.steps-column {
    gap: 20px;
    padding-left: 0px;
    padding-right: 0;
    width: 100%;
    order: 1;
}
	.hero-container {
    flex-wrap: wrap;
}
.hero-cta-box {
    max-width: inherit;
}
.hero-content {
    flex: auto;
}
.site-header {
    top: 10px;
}
.hero-features {
    margin-top: 15px;
}
	.dashboard-section:after, .dashboard-section:before{
		display:none;
	}
.dashboard-container .info-card {
    position: static;
    width: calc(50% - 10px);
    margin-top: 0;
}
	.dashboard-container {
    display: flex;
    flex-wrap: wrap;
		gap: 20px;
}
.dashboard-section {
    padding: 60px 0 60px;
}
	.dashboard-mockup img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
}
}


@media (max-width: 767px) {
	.small-quote-icon {
    margin-top: 0;
}
	.author-portrait-image {
    margin-bottom: 0;
    max-height: inherit;
    max-width: 100%;
}
	.results-section .case-link {
    font-size: 14px;
}
	.cta-demo-button {
    padding: 0px 20px;
    font-size: 12px;
    height: 45px;
    line-height: 45px;
}
	.hero-btns a.btn {
    font-size: 12px;
}
	.hero-feat-item img {
    max-width: 35px;
}
	.header-wrapper .main-menu ul {
    max-height: 450px;
    overflow: auto;
}
	.social-proof-section .swiper-button-next {
    left: 60px !important;
}
	.features-section .feature-item h4 {
    font-size: 13px;
}
	.faq-section .faq-panel {
    padding: 0 18px;
}
	.features-section .features-header {
    margin: 0 auto 20px auto;
}
.features-section .features-row {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
	.features-section .features-row {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
}
.features-section .feature-item {
    background: #FFF8E9;
    padding: 10px 10px;
    width: calc(50% - 5px);
    height: auto;
    display: block;
}
	.results-section .brand-badge img {
    max-width: 60px;
}
	.results-section .brand-badge {
    left: 10px;
}
.social-proof-section svg.swiper-navigation-icon {
    width: 14px;
    height: 14px;
}
	.social-proof-section .swiper-button-prev, .social-proof-section .swiper-button-next {
    width: 35px;
    height: 35px;
}
	.portrait-display-wrapper:before {
    width: 130px;
    height: 130px;
}
		.proof-header-block {
    padding: 0 15px;
}
.management-content-col .description {
    margin-bottom: 20px;
    font-size: 14px;
}
	.feature-text {
    font-size: 14px;
}
	.icon-box img {
    width: 50px;
}
	.dashboard-section p {
    margin: 0 auto 20px;
}
	.dashboard-container .info-card {
    position: static;
    width: calc(50% - 5px);
    margin-top: 0;
    padding: 8px 10px 8px;
    border-radius: 8px;
}
	.dashboard-container {
    gap: 10px;
}
	.dashboard-section {
    padding: 40px 0 40px;
}
	p {
    font-size: 14px !important;
}
	.hero-feat-item span {
    font-size: 14px;
}
	.header-wrapper .header-btn {
    padding-top: 0;
}
.header-wrapper .btn-dark {
    line-height: inherit !important;
    margin: 15px 10px 0;
}
	.logo-grid {
    margin-top: 20px;
}
.header-wrapper .main-nav {
    gap: 0px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    top: calc(100% - -5px);
}
	h1.hero_heading {
    margin: 0;
}
	.site-header {
    top: 0;
    border-radius: 0 0 10px 10px;
		padding: 7px 15px;
}
	header.site-header .container {
    padding: 0;
}
.results-section .metric-pill {
    border-radius: 8px;
    padding: 10px 8px;
	margin-bottom: 7px;
}
	.results-section .metric-icon {
    width: 35px;
    height: 35px;
}
.hero-section {
    padding-bottom: 40px;
    height: auto;
    padding-top: 80px;
}
	.results-section .metric-pill strong {
    font-size: 14px;
}
.results-section .metric-pill p {
    font-size: 13px !important;

}
	.results-section .metric-row{
		gap:7px;
	}
	.btn_Wrap a {
    padding: 10px 20px;
}
	.challenges-section .panel-grid {
    gap: 20px;
}
	.results-section .results-header {
    text-align: left;
    margin: 0 auto 20px auto;
}
.features-section .feature-icon-box img {
    width: 40px;
}
	.challenges-section .accordion-group {
    gap: 10px;
}
	.challenges-section .accordion-group {
    margin-top: 20px;
}
	.challenges-section .accordion-header h4 {
    font-size: 16px;
}
	.challenges-section .accordion-item {
    padding: 10px 10px;
}
	.challenges-section span.icon img {
    width: 40px;
}
	.solutions-section .header-content {
    margin: 0 auto 20px auto;
}
.challenges-section .tab-label {
    padding: 9px 15px;
    font-size: 14px;
}
	.challenges-section .tab-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    white-space: nowrap;
    overflow: auto;
}
	.steps-column {
    padding-bottom: 40px;
}
	.solutions-section {
    padding: 40px 0;
}
	.how-it-works-section {
    padding: 40px 0 0px;
}
.step-badge {
    width: 65px;
    height: 25px;
    font-size: 10px;
    border-radius: 10px 0 10px 0px;
}
	.challenges-section .tab-panels .accordion-answer {
    font-size: 14px;
}
	.works-grid-wrapper {
    gap: 20px;
    margin-top: 0;
}
	.challenges-section .section-header {
    margin: 0 auto 20px auto;
}
	.management-content-col {
    padding: 40px 15px 40px 15px;
}
	.how-it-works-section p.subtitle {
    margin-bottom: 20px;
}
	.step-icon-box img {
    width: 40px;
    height: 40px;
}
	.step-card-content {
    gap: 10px;
}
	.tracking-cta a.btn {
    margin-top: 20px;
}
	.management-image-col {
    height: auto;
}
	.tracking-cta h3 {
    font-size: 26px;
}
	.btn {
    font-size: 12px;
    line-height: 45px !important;
    height: 45px !important;
}
	.challenges-section .tab-nav-wrapper {
    margin-bottom: 20px;
}
.faq-section, .waste-management-hero, .results-section, .challenges-section, .trusted-section, .mannual-tracking{
    padding: 40px 0;
}
	.features-section {
    padding: 0px 0px 40px;
}
	
.faq-section h2 {
    margin-bottom: 20px;
    text-align: left;
}
	.faq-section .faq-item {

    border-radius: 7px;
}
	.faq-section .faq-trigger {
    padding: 15px 15px;
    font-size: 16px;
    gap: 10px;
}
	.faq-section .faq-list {
    gap: 10px;
}
	h2 {
    font-size: 26px !important;
}
	.faq-section .faq-container {
    padding: 0 15px;width: 100%;
}
	.partners_logos img {
    width: 40px;
}
	.privacy_menu li:not(:first-child)::before {
    left: -1px;
    color: #fff;
    font-size: 10px;
    top: 6px;
}
	.privacy_menu li {
    margin-left: 8px;
    padding-left: 8px;
}
	.privacy_menu {
    justify-content: center;
}
	.copy-right {
    font-size: 11px;
}
	.privacy_menu li a {
    font-size: 11px;
}
.copy_wr_prv_trm {
    justify-content: flex-start;
    align-items: center;
    flex-direction: column-reverse;
}
	.urls_copy {
    padding-top: 10px;
}
	.btn_Wrap a {
    font-size: 12px;
}
	.partners_logos {
    padding: 5px 0;
}
	.icon_info p, .icon_info, .footer-menu li a {
    font-size: 14px !important;
}
	.footer-social-icons {
    margin-bottom: 10px;
}
	.footer-contact-item:last-child {
    margin-bottom: 0;
}
.partners_logos {
    gap: 10px;
    justify-content: flex-start;
}
	.logo_description img {
    max-height: 30px;
}
	
	.first_row .col {
    width: 100%;
}
	.logo_description {
    margin-bottom: 0;
}
.container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
}
	.site-header{
		    width: 100%;
    max-width: 100%;
	}
.hero-features {
    gap: 5px;
}
.hero-feat-item {
    width: calc(100% - 0px) !important;
    border: none !important;
}
}