:root {
    --green-dark: #002910;
    --green-main: #0f5a3c;
    --green-accent: #1aa36f;
    --white: #ffffff;
    --gray: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    background: #fff;
    color: #111;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: clip;
  font-family: Inter, sans-serif;
}

.container {
    width: 100%;
    max-width: 2560px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 64px;
    padding-right: 64px;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 24px;
}

.mobile-br {
  display: inline;
}

/* ================= HEADER ================= */
.site-header {
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  /* align-items: center; */
}

.logo img {
  height: 40px;
  width: auto;
  max-width: 100%;
  display: block;
}

/* Right side */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-desktop {
  display: flex;
  gap: 1.4rem;
}

.nav-desktop a {
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  color: #000000;
}

.btn-primary {
  padding: 17px 23px;
  background: #012E12;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;

  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-icon {
  width: 18px;
  height: auto;
}

/* Mobile toggle button */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  padding: 24px;

  transform: translateX(100%);
  transition: transform 0.3s ease;
  will-change: transform;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1500;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.close-menu {
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 32px;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-mobile a {
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  color: #000000;
}

.mobile-btn {
  margin-top: 16px;
  text-align: center;
}

a.btn-primary.mobile-btn {
  color: white;
}

.nav-mobile .btn-primary {
  font-size: 15px;
  padding: 14px 18px;
}

/* ================= SLIDER ================= */
.slider-section {
  width: 100%;
  background: #000;
  position: relative;
  overflow: hidden;
}

.slider {
    width: 100%;
    aspect-ratio: 1440 / 672; 
    position: relative;
    overflow: hidden;
    touch-action: pan-y; 
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}


.slides {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1;
}

.slide.active {
    display: block;
    z-index: 10;
    transform: translateX(0);
}

.slide.incoming {
    display: block;
    z-index: 20; 
    will-change: transform; 
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none; 
    -webkit-user-drag: none;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 200;
  /* display: flex; */
  align-items: center;
  /* justify-content: center; */
}

.arrow.prev {
  left: 20px;
}

.arrow.next {
  right: 20px;
}

.arrow:hover {
  background: rgba(0,0,0,0.7);
}

.dots-wrapper {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF33;
  padding: 8px 12px;
  border-radius: 20px;
  z-index: 20;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
}

.slide-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* ================= CHART SECTION ================= */
.chart-section {
  padding-bottom: 100px;
  padding-top: 100px;
  text-align: center;
}

.chart-title  {
  font-size: 48px;
  line-height: 120%;
  font-weight: 600;
}

.subtitle {
  margin-top: 20px;
  font-size: 22px;
}

/* ================= CHART ================= */
.chart {
  display: flex;
  justify-content: center;
  gap: 6%;
  margin-top: 85px;
  position: relative;
}

.chart-baseline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.bar {
  width: 80px;
  flex-shrink: 0;
}

.stack {
  height: 240px;
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}

/* ================= POSITIVE ================= */
.pos {
  position: relative;
  flex: var(--pos);
  background: linear-gradient(180deg, #A4CA51 0%, #2F7B31 100%);
}

.pos-label {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #2F7B31;
}

/* ================= NEGATIVE ================= */
.neg {
  flex: var(--neg);
  background: linear-gradient(180deg, #BE893C 0%, #865216 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.neg span {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: #fff;
}

/* ================= FUTURE SPECIAL ================= */
.future-pos {
  background: linear-gradient(180deg, #FFFFFF 0%, #CFFF65 100%);
}

.future-neg {
  background: linear-gradient(180deg, #FFE0B2 0%, #BE893C 100%);
}

.projected {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: #2F7B31;
  text-align: center;
}

.small_projected {
position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 12px;
  line-height: 120%;
  color: #2F7B31;
  text-align: center;
}

.future-stack {
  position: relative;
}

.future-stack .pos-label {
  top: -93px;
}

.future-stack .tree {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translate(-50%, -100%);
  height: 60px;
}

/* ================= LABEL ================= */
.bar label {
  margin-top: 16px;
  display: block;
  font-size: 16px;
  line-height: 120%;
}

/* ================= HINT ================= */
.chart-hint {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.hint-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.chart_dot {
  width: 8px;
  height: 8px;
}

.chart_dot.paper {
  background: linear-gradient(180deg, #BE893C 0%, #865216 100%);
}

.chart_dot.digital {
  background: linear-gradient(180deg, #A4CA51 0%, #2F7B31 100%);
}

.chart-note {
  display: flex;
  justify-content: center;
}

.chart-note p {
  max-width: 720px;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  font-style: italic;
  margin-top: 24px;
  font-weight: 500;
}

/* ================= BRAND STORY ================= */
.brand-story {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: stretch;
}

/* ---------- TAG ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #033835;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  width: fit-content;
}

.tag i {
  font-size: 14px;
  color: #033835;
}

.tag img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}


/* ---------- TEXT ---------- */
.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text p {
  font-size: 19px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 30px;
  color: #212529;
}

.brand-text strong {
  font-weight: 700;
  font-size: 19px;
  color: #012e12;
}

/* ---------- BUTTON ---------- */
.btn-outline {
  margin-top: auto;
  width: 275px;
  height: 52px;
  border: 1.5px solid #003d17;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #003d17;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-outline i {
  font-size: 18px;
}

.btn-outline:hover {
  background: #003d17;
  color: #fff;
}

/* ---------- IMAGE ---------- */
.brand-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.brand-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}



/* ========== OFFER SECTION ========== */
.offer {
    background: linear-gradient(180deg, #F2F6EA 0%, #FFFFFF 100%);
    padding: 65px 0;
}

.offer-container {
  max-width: 2560px;
  margin: 0 auto;
  padding: 0 64px;

  display: grid;
  grid-template-columns: minmax(280px, 30%) 1fr;
  gap: 80px;
}


/* LEFT */
.offer-left {
    position: sticky !important;
    top: 30px;
    align-self: flex-start;
    max-width: 100%;
}

.offer-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 120%;
}

/* RIGHT */
.offer-right {
    display: flex;
    flex-direction: column;
}

.article-image img {
    width: 100%;
    border-radius: 12px;
}

.image-frame {
  width: 100%;
  height: 290px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  background-color: transparent;
}

.image-frame img {
  position: absolute;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.offer-article h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 16px;
    color: #212529;
    margin-top: 20px
}

.offer-article .offer_integration {
  margin-top: 0;
}

.offer-article .offer_dashboard {
    margin-top: 0;
}

.offer-article p {
    font-size: 17px;
    font-weight: 400;
    line-height: 150%;
    color: #212529;
    margin-bottom: 20px;
}

/* CHECK LIST */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    gap: 12px;
    font-size: 17px;
    line-height: 150%;
    color: #212529;
    margin-bottom: 12px;
}

.check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #003D17;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon i {
    color: #FFFFFF;
    font-size: 14px;
}

.divider {
    height: 1px;
    background: #ADB5BD;
    margin: 35px 0;
}

/* ============ WHY CHOOSE US ===============*/
.why-choose-us {
    padding: 60px 0 0 64px;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: visible;
    /* touch-action: pan-y; */
    /* cursor: grab; */
}
.carousel:active {
    cursor: grabbing;
}
.carousel-track {
    display: flex;
    gap: 24px;
    padding-left: 64px;
    margin-left: -64px;
    transition: transform 0.4s ease;
    will-change: transform;
    
}

.carousel-slide {
    flex: 0 0 95%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: clamp(460px, 38vh, 760px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide[data-id="0"] {
  background-image: linear-gradient(270deg, rgba(50, 67, 84, 0) 49.95%, #324354 100%),
    url('../assets/carosel1.png');
}

.carousel-slide[data-id="1"] {
  background-image: linear-gradient(270deg, rgba(69, 40, 27, 0) 49.96%, #45281B 100%),
    url('../assets/carosel2.png');
}

.carousel-slide[data-id="2"] {
  background-image: linear-gradient(270deg, rgba(130, 163, 182, 0) 50%, #82A3B6 100%),
    url('../assets/carosel3.png');
}


/* Overlay container */
.slide-overlay {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Pagination (Top Left) */
.slide-pagination {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* Text Content */
.slide-content {
    max-width: 520px;
}

.slide-content h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 130%;
    color: #fff;
    margin-bottom: 12px;
}

.slide-content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 150%;
    color: #E9ECEF;
}

/* Dots container (Bottom Left) */
.slide-dots {
    align-self: flex-start;
    display: flex;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #FFFFFF33;
    backdrop-filter: blur(8px);
    box-shadow: 0px 8px 16px 0px #00000008;
}



.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFFFFF80;
}

.dot.active {
    background: #FFFFFF;
}

[data-carousel="why"] .dot {
  cursor: pointer;
  pointer-events: auto;
  z-index: 10;
}

/* ================= OUR GLORY ================= */
.glory {
  padding-top: 100px;
  padding-bottom: 20px;
  text-align: center;
  overflow: hidden;
}

.glory-logos {
  margin-top: 48px;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  display: flex;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-slide {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-right: 60px; 
  animation: 60s slide infinite linear;
}

.logos-slide img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.glory-logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide img:hover {
  transform: scale(1.1);
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ================= CONTACT ================= */
.contact {
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-left img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.contact-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 19px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 32px;
  color: #343A40;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  color: #111;
}

.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  height: 48px;
  padding: 0 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}

.form-group textarea {
  height: 120px;
  padding-top: 16px;
  resize: none;
}

.contact_btn-primary {
  margin-top: 16px;
  width: fit-content;
  padding: 14px 28px;
  background-color: #012e12;
  color: #fff;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-icon {
  font-size: 18px;
}

#btn-backtotop {
  position: fixed;
  bottom: 90px;
  right: 30px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: none;
  transition: opacity 0.3s;
}

#btn-backtotop img {
  width: 50px;
  height: auto;
}

#btn-backtotop.show {
    display: block;
    opacity: 1;
}

#btn-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: rgb(37, 211, 102);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  opacity: 1;
  z-index: 999;
}

#btn-whatsapp i {
  color: white;
  font-size: 32px;
}

/* ================= FOOTER ================= */
footer {
    background: #002910;
    color: #ffffff;
    padding: 56px 64px;
}

/* ---------- FOOTER TOP ---------- */
.footer-top {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 6vw, 200px);
    margin-bottom: 48px;
}

.footer-text {
    max-width: 280px;
}

.footer-item {
    display: flex;
    gap: 10px;
}

.footer-icon-wrap {
    width: 48px;
    height: 48px;
    background: #004118;
    border-radius: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-icon-wrap img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* ---------- FOOTER ICON FONT ---------- */
.footer-text h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 150%;
}

.footer-text p {
    font-size: 17px;
    opacity: 0.6;
    line-height: 150%;
}

/* ---------- FOOTER MIDDLECTOP ---------- */
.footer-middle {
    display: grid;
    grid-template-columns: 2fr 1px 3fr;
    gap: 80px;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 40px 0;
    margin-bottom: 24px;
}

.footer-middle-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 29px;
}


.footer-divider {
    background: rgba(255,255,255,0.15);
    width: 1px;
}

.footer-brand img {
    width: 111px;
    height: 41px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 15px;
    opacity: 0.8;
    font-weight: 400;
    line-height: 150%;
    max-width: 433px;
    margin-bottom: 20px;
}

.footer-brand div {
  font-size: 20px;
  line-height: 130%;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: #004118;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
}

.footer-social img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* ---------- FOOTER COLUMNS ---------- */
.footer-col h5 {
    font-size: 17px;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 16px;
    opacity: 0.6;
}

.footer-col a {
    display: block;
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 16px;
    line-height: 150%;
}

.footer-col a:hover {
    opacity: 1;
}

/* ---------- FOOTER BOTTOM ---------- */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}


/* ================= RESPONSIVE ================= */
@media (min-width: 2001px) and (max-width: 2300px) {
  .image-frame {
      height: 493px !important;
  }
  .frame-dashboard {
    height: 430px !important;
  }
  .integration {
    height: 430px !important;
  }
}

@media (min-width: 2000px) {
  .image-frame {
      height: 575px;
  }
  .frame-dashboard {
    height: 490px;
  }
  .integration {
    height: 480px;
  }
}

@media (min-width: 1800px) {
  .offer-article .offer_integration {
    margin-top: 20px;
  }

  .offer-article .offer_dashboard {
      margin-top: 20px;
  }

  .brand-image img {
    max-width: 800px !important;
    height: auto;
  }
    .brand-story {
    grid-template-columns: 1fr 800px;
  }
}

@media (max-width: 1798px) and (min-width: 1530px){
  .offer-article .offer_dashboard,
  .offer-article .offer_integration {
    margin-top: 18px;
  }
}

@media (max-width: 1270px) and (min-width: 1101px){
  .offer-article .offer_nfc {
    margin-top: -3px;
  }
  .offer-article .offer_dashboard {
    margin-top: -23px;
  }
  .offer-article .offer_integration {
    margin-top: -18px;
  }
  .offer-article .offer_phone {
    margin-top: -5px;
  }
}

@media (max-width: 1100px) and (min-width: 1025px){
  .offer-article .offer_nfc {
    margin-top: -25px;
  }
  .offer-article .offer_dashboard {
    margin-top: -37px;
  }
  .offer-article .offer_integration {
    margin-top: -37px;
  }
  .offer-article .offer_phone {
    margin-top: -22px;
  }
}

@media (max-width: 1200px) {
  /* Footer */
  .footer-top {
      gap: clamp(24px, 4vw, 80px);
  }

  .footer-text h4 {
      font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding-left: 64px;
    padding-right: 64px;
  }

  .section-title {
    font-size: 34px;
    margin-top: 20px;
  }

  /* Chart */
  .chart {
    justify-content: center;
    gap: 32px;
    padding-top: 48px;
    margin-top: 48px;
  }

  .chart-title {
    font-size: 40px;
}

  .subtitle {
    font-size: 16px;
  }

  .stack {
    height: 200px;
  }

  .pos-label {
    font-size: 20px;
    top: -32px;
  }

  .bar label {
    font-size: 14px;
    margin-top: 10px;
  }

  .chart-baseline {
    bottom: 27px;
  }

  /* Slides */
  .why-choose-us {
    padding: 56px 0 0 40px;
  }

  .carousel-track {
    padding-left: 40px;
    margin-left: -40px;
  }

  .carousel-slide {
    flex: 0 0 92%;
    height: 360px;
  }

    .slide-content h3 {
        font-size: 26px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slide-overlay {
    padding: 28px;
  }

  /* Brand */
  .brand-image img {
    object-position: right;
    max-width: 440px;
  }

  .brand-story {
    grid-template-columns: 47% 50%;
    gap: 40px;
}

  /* Contact */
  .contact {
    gap: 48px;
  }

  .contact-right h3 {
    font-size: 26px;
  }

  .contact-desc {
    font-size: 17px;
  }

  .logos-slide {
     gap: 40px;
     padding-right: 40px;
  }

  /* Offers */
  .image-frame {
    height: 190px;
  }
}

@media (max-width: 1000px) {
  /* Header */
  .nav-desktop,
  .header-right {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .logo img {
    height: 36px;
  }

  .header-container {
    min-height: 56px;
  }

    /*Brand Story*/
   .brand-story {
    display: grid;
    grid-template-columns: 1fr;
  }

  .brand-text {
    display: contents;
  }

   .tag {
    grid-row: 2;
    margin-bottom: 0;
  }

  .brand-title {
    grid-row: 3;
    margin: 0;
  }

  .brand-image {
    grid-row: 1;
    display: flex;
    justify-content: center;
  }

  .brand-text p:nth-of-type(1) {
    grid-row: 4;
    margin-bottom: 0;
  }

  .brand-text p:nth-of-type(2) {
    grid-row: 5;
    margin-bottom: 0;
  }

  .brand-text p:nth-of-type(3) {
    grid-row: 6;
    margin-bottom: 0;
  }

  .btn-outline {
    grid-row: 7;
  }

  .brand-image {
    order: -1;
    justify-content: center;
  }

  .brand-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
  }

  /* Offers*/
  .offer-container {
      grid-template-columns: 1fr;
      gap: 48px;
      padding: 0 40px
  }

  .offer-left {
    top: unset;
    z-index: 20;
  }

  .image-frame {
    height: 320px;
  }


  /* Glory */
  .logos-slide {
     padding-right: 30px;
  }
  
  .logos-slide img {
    height: 48px;
  }

  .marquee-track {
    gap: 40px;
  }

    /* Contact */
  .contact {
    gap: 0px;
  }

  .contact {
    grid-template-columns: 1fr;
    padding: 64px 40px;
  }

  .contact-left img {
    height: auto;
  }

  .contact-right {
    margin-top: 32px;
  }

  .contact-right h3 {
    font-size: 25px;
  }

  .contact-desc {
    font-size: 16px;
  }

  .form-group textarea {
    height: 100px;
  }

  /* Footer */
  footer {
    padding: 48px 40px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    text-align: left;
    justify-items: stretch;
  }

  .footer-item {
    border-radius: 16px;
    align-items: flex-start;
  }

  .footer-text {
    max-width: none;
  }

  .footer-text h4 {
    font-size: 20px;
  }

  .footer-text p {
    font-size: 15px;
  }

  .footer-brand div {
    font-size: 18px;
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-col h5 {
    font-size: 15px;
  }

  .footer-col a {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .footer-social {
    flex-direction: row;
  }

  .footer-middle {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px 0;
  }

  .footer-middle-bottom {
    display: grid;
        grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-divider {
    display: none;
  }

  .footer-brand {
    text-align: left;
  }
}


@media (max-width: 878px) {
  /* Footer */
  .footer-top {
    gap: 30px;
  }

  .footer-item {
    gap: 12px;
  }

  .footer-text h4 {
    font-size: 17px;
    line-height: 1.4;
  }

  .footer-text p {
    font-size: 13px;
  }

  /* MIDDLE */
  .footer-middle {
    gap: 28px;
    padding: 28px 0;
  }

  .footer-brand div {
    font-size: 16px;
  }
  .footer-brand p {
    font-size: 13px;
    line-height: 1.6;
  }

  /* columns */
  .footer-col h5 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-col a {
    font-size: 13px;
    margin-bottom: 10px;
    padding: 0 10px 0 0;
  }

  /* social */
  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    font-size: 12px;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  /* Slider */
  .dots-wrapper {
    bottom: 10px;
    padding: 6px 10px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  /* Chart */
  .chart {
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    padding-top: 59px;
    margin-top: 38px;
  }
  .chart-baseline {
    bottom: 43px;
  }

  .chart-hint {
    margin-top: 5px;
  }

  .chart-note p {
    font-size: 15px;
  }

  .subtitle {
    font-size: 15px;
  }

  .stack {
    height: 160px;
  }

  .pos-label {
    font-size: 18px;
    top: -28px;
  }

  .projected {
    font-size: 16px;
  }

  .small_projected {
    font-size: 10px;
  }

  .bar label {
    font-size: 13px;
    margin-top: 8px;
    white-space: nowrap;
  }

  .bar {
    width: 64px;
  }

  .stack {
    height: 140px;
  }

  .pos-label {
    font-size: 16px;
    top: -24px;
  }

  .neg span {
    font-size: 14px;
  }

  .future-stack .tree {
    top: 16px;
    height: 50px;
  }

  .future-stack .pos-label {
    top: -75px;
  }

  /* Offers*/
  .offer {
    padding: 40px 0;
  }

  .offer-title {
    font-size: 32px;
  }

  .offer-article h3 {
    font-size: 24px;
    margin-top: 20px;
  }

  .offer-article .offer_integration {
    margin-top: 10px;
  }

  .image-frame {
    height: 245px;
  }

  /* Slides */
  .why-choose-us {
      padding: 40px 0 0 20px;
  }

  .carousel-track {
    padding-left: 20px;
    margin-left: -20px;
  }

  .carousel-slide {
    flex: 0 0 94%;
    height: 300px;
  }

  .slide-content {
    max-width: 100%;
  }

  .slide-content h3 {
    font-size: 22px;
  }

  .slide-content p {
    font-size: 14.5px;
  }

  .slide-overlay {
    padding: 16px;
  }

  .slide-content {
    padding: 5px;
  }
}

@media (max-width: 680px) and (min-width: 481px){
  .offer-article .offer_nfc {
    margin-top: -10px;
  }
  .offer-article .offer_dashboard {
    margin-top: -21px;
  }
  .offer-article .offer_integration {
    margin-top: -21px;
  }
  .offer-article .offer_phone {
    margin-top: -10px;
  }
}

@media (max-width:634px) {
  /* Chart */
  .chart {
    justify-content: flex-start;
  }

  .chart-section {
      padding-top: 50px;
      padding-bottom: 50px;
      text-align: center;
  }
}

@media (max-width: 600px) {
  /*Header*/
  .logo img {
    height: 32px;
  }

  .header-container {
    min-height: 56px;
  }

  /*Brand Story*/
  .brand-text p {
    font-size: 17px;
  }

  .btn-outline {
    width: 100%;
  }

  /* Offers*/
  .offer-container {
    padding: 20px 20px
  }


  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
  }
}



@media (max-width: 480px) {
  .container {
        padding-left: 20px;
        padding-right: 20px;
    }

  .section-title {
    font-size: 26px;
  }
  
  .chart-title {
    font-size: 27px;
  }

  .section-title br {
    display: none;
  }

  .offer-container {
    padding: 0 20px;
  }

  .offer-article p,
  .check-list li {
    font-size: 16px;
  }
    
  .offer-article h3 {
    font-size: 21px;
  }

  .image-frame {
    height: 160px;
  }

  .chart {
    margin-top: 25px;
  }

  .footer-bottom {
    text-align: left;
  }

  .logos-slide {
     gap: 14px;
  }

  .arrow {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}

@media (max-width: 426px) {
  /* Slides */
  .slide-content h3 {
    font-size: 18px;
  }

  .slide-content p {
    font-size: 14px;
  }

  /* Offer */
  .image-frame {
    height: 135px;
  }

  /* Footer */
      footer {
        padding: 48px 20px;
    }
}

@media (max-width: 350px){
  .mobile-br {
      display: block;
  }

.offer-article .offer_nfc {
    margin-top: 0px;
  }
  .offer-article .offer_dashboard {
    margin-top: -3px;
  }
  .offer-article .offer_integration {
    margin-top: -8px;
  }
  .offer-article .offer_phone {
    margin-top: 4px;
  }

}
/* Fade Animation */
.fade-section {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 1.2s ease-out,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;

}


.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  transform: translateY(32px);
}

@media (min-width: 320px){
  
}

