:root {

  --cream: #faf7f4;
  --white: #ffffff;

  --dark: #3b1f0e;
  --mid: #7b3f1e;
  --warm: #c07840;

  --pale: #f5e9d8;
  --text: #5c3d28;
  --text-mid: #6b4a33;
  --choc-mid: #7b3f1e;

}

.choco-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.choco-page .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

body {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--text);
  background: white;
  line-height: 1.6;
}



.header-main,
.navbar {
  background: #fff !important
}

.header-main a,
.navbar a,
header a {
  color: #0b1b2b !important
}


/* ------------ TICKER ---------------------- */
.ticker {
  background: var(--warm);
  color: white;
  padding: 8px 0;
  overflow: hidden;
  margin-top: 64px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}

.ticker-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scrollTicker 20s linear infinite;
}

.ticker-track span {
  position: relative;
  padding-left: 12px;
  white-space: nowrap;
}

/* dot before text */
.ticker-track span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* animation */
@keyframes scrollTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* hero */

.hero {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 80px);
  /* if header exists */
  display: flex;
  padding: 0;
}

.hero-desc {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-mid);
  max-width: 500px; 
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero h1 {
  font-size: 65px;
  font-weight: 800;
  font-family: 'Barlow Condensed', sans-serif;

}

.hero em {
  color: var(--mid);
}


.hero-points{
  padding: 8px;
}

.hero-points span{
  background-color: #5c3d28;
  color: white;
  font-size: small;
  padding: 7px;
}

@media(max-width:600px) {

  h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .label {
    font-size: 10px;
  }

}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


/* section */

.section {
  padding: 40px 0;
}

.alt {
  background: var(--pale);
padding: 40px 0;
}

.label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--warm);
  display: block;
  margin-bottom: 11px;
}

h2 {
  font-size: 56px;
  margin-bottom: 20px;
  color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

#what-is p {
  font-size: 1rem;
  line-height: 1.82;
  color: var(--text-mid);
  margin-bottom: 20px;
}


/* process */

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-template-rows: repeat(3, auto);   /* 3 rows */
    gap: 10px;
}

/* remove full width cards */
.process-grid .span {
    grid-column: auto;
}.span {
  grid-column: span 2;
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.step {
  background: var(--pale);
  border-left: 4px solid #c07840;
  padding: 25px;
}
.step h4{
  font-family: 'Barlow Condensed',sans-serif;
  color: #9c8e85;
}

.step-desc {
  font-size: 0.85rem;
  color: #9c8e85;
}

.step:hover {
  transform: translateY(5px);
}

.span {
  grid-column: span 2;
}

.step h5 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 8px 0 4px;
}
.step-title i{
   color:#c07840;
   margin-right:10px;
   font-size:30px;
   margin-bottom: 10px;
}


/* stats */

.stats {
  background: var(--mid);
  color: white;
  padding: 20px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stats h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 43px;
}

.label-stat {
  color: rgba(255, 255, 255, 0.466);
  letter-spacing: 0.16em;
  font-size: small;
}

.label {
  font-size: 12px;
  letter-spacing: 3px;
  color: #8d4600a8;
  display: block;
  margin-top: 10px;
}

/* process dark */

.process {
  background: var(--dark);
  color: white;
  padding: 40px 0;
}

.light {
  color: white;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
}

.card:hover {
  border-top: 2px solid #c07840;
  background: rgba(255, 255, 255, 0.08);
}

/* usecases */
.app {
  background-color: #faf7f4;
  padding: 40px 0;
}

/* USE CASES GRID */
.usecases-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}

.usecases-left h2 {
  font-size: 56px;
  line-height: 1.1;
}

.usecases-right{
  font-size: 0.96rem;
  color: #452712;
  
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #ffffff;
  /* border grid effect */
  margin-top: 50px;
}

/* CARD */
.usecase-card {
  background: #ffffff;
  padding: 40px 30px;
  transition: 0.3s ease;
  position: relative;
}

.usecase-card:hover {
    border-bottom: #c07840 4px solid;opacity: 1;
    background-color: #88502a5e;
}

/* ICON */
.usecase-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #efe3d6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--mid);
  margin-bottom: 20px;
}

/* TITLE */
.usecase-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--dark);
}

/* TEXT */
.usecase-card p {
  font-size: 14px;
  color: #6b4a33;
}




.icon {
  color: #efe3d6;
}

/* USE CASES GRID */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
 
}
.usecases-top{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:18px !important;
    margin-bottom:40px !important;
}

.usecases-right,
.usecases-right p{
    width:100% !important;
    max-width:100% !important;
    display:block !important;
}

.usecases-right p{
    font-size:16px !important;
    line-height:1.9 !important;
}

@media(max-width:1024px) {
  .usecases-top {
    grid-template-columns: 1fr;
  }
}

/* TABLET */
@media(max-width:1024px) {
  .usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media(max-width:600px) {
  .usecases-grid {
    grid-template-columns: 1fr;
  }

  .usecase-card {
    padding: 25px 20px;
  }
}

@media(max-width:1024px) {
  .usecases-top {
    grid-template-columns: 1fr;
  }
}

/* BENEFITS SECTION */
.benefits {
  padding: 40px 0;
  background: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: flex-start;
}

/* LEFT SIDE */
.benefits-left h2 {
  font-size: 56px;
  line-height: 1.1;
}

.benefits-left p {
  margin-top: 20px;
  max-width: 400px;
  font-size: 0.96rem;
}

/* RIGHT SIDE LIST */
.benefits-right {
  display: flex;
  flex-direction: column;
}

/* ITEM */
.benefit-item {
  display: flex;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid #e6d9cc;
}

.benefit-item:hover {
  transform: translateX(10px);
}

/* LAST BORDER */
.benefit-item:last-child {
  border-bottom: 1px solid #e6d9cc;
}

/* ICON */
.benefit-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #efe3d6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--mid);
  flex-shrink: 0;
  margin-top: 5px;
  font-weight: bold;
}

/* TEXT */
.benefit-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  color: #3b1f0e;
}

.benefit-item p {
  font-size: 14px;
  color: #6b4a33;
  line-height: 1.6;
}


.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

/* MATERIAL GRID */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* CARD */
.material-card {
  background: #f4efe8;
  padding: 35px;
  position: relative;
}

.material-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(59, 31, 14, 0.14);
}

/* TOP BORDER STRIP */
.material-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}
.choco-note{
  margin-top: 14px;
  padding: 12px 16px;
  background: #f5e9d8;
  border-left: 4px solid #c07840;
  color: #5c3d28;
  font-size: 15px;
  line-height: 1.7;
  max-width: 620px;
}

.choco-note strong{
  color:#3b1f0e;
}

@media(max-width:768px){
  .choco-note{
    font-size:14px;
    padding:10px 14px;
  }
}

/* COLORS */
.material-card.dark::before {
  background: #3b1f0e;
}

.material-card.milk::before {
  background: #c07840;
}

.material-card.white::before {
  background: #e6d9cc;
}

/* TITLE */
.material-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  color: #3b1f0e;
}


/* DESCRIPTION */
.material-card p {
  font-size: 14px;
  color: #6b4a33;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* MATERIAL GRID */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* TABLET */
@media(max-width:1024px) {
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media(max-width:600px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }

  .material-card {
    padding: 25px;
  }
}

/* TAGS */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  font-size: 11px;
  background: #e9dfd4;
  padding: 6px 10px;
  border-radius: 2px;
  color: #6b4a33;
}

/* FUTURE GRID */
.future-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* LEFT */
.future-left p {
  margin-top: 20px;
  max-width: 520px;
  font-size: 0.95rem;
}

/* QUOTE BOX */
.quote-box {
  background:#f5e9d8;
  padding: 30px;
  margin-top: 40px;
  border-left: 3px solid var(--warm);
}

.quote-box p {
  font-size: 18px;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
}

.quote-box span {
  font-size: 11px;
  letter-spacing: 2px;
  color: #7a5a45;
}

/* RIGHT SIDE */
.future-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.future-card {
  background: #faf7f4;
  padding: 25px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.future-card:hover {
  background-color: #f5e9d8;
}

/* DOT */
.future-card .dot {
  width: 8px;
  height: 8px;
  background: var(--warm);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* TEXT */
.future-card h4 {
  font-size: 20px;
  margin-bottom: 5px;
  font-family: 'Barlow Condensed', sans-serif;
}

.future-card p {
  font-size: 14px;
  color: #6b4a33;
}


.future-text{
  color:#6b4a33;
  font-size:15px;
  line-height:1.8;
  margin-bottom:15px;
}

.future-list{
  padding-left:20px;
}

.future-list li{
  margin-bottom:10px;
  color:#6b4a33;
  font-size:15px;
  line-height:1.7;
  list-style: disc;
}
/* responsive */

@media(max-width:1024px) {

  .hero-grid,
  .two-col,
  .benefits-grid,
  .future-grid {
    grid-template-columns: 1fr;
  }



  .process-cards {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media(max-width:600px) {

  .grid3,
  .process-cards {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }

}

/* =====================================
NEW REDESIGN - CLEAN PREMIUM LAYOUT
No new data added
===================================== */

.solutions-section{
    padding:40px 0;
    background:var(--cream);
}

.solutions-section .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* heading */

.section-heading{
    text-align:center;
    max-width:900px;
    margin:0 auto 18px;
}

.section-heading h2{
    font-size:60px;
    line-height:.95;
    color:var(--dark);
    font-family:'Barlow Condensed',sans-serif;
    margin:0;
}

/* main box */

.solutions-grid{
    display:grid;
    grid-template-columns:320px 1fr;
    background:#fff;
    border:1px solid #eadccc;
    min-height:520px;
    overflow:hidden;
}

/* left side */

.solution-left{
    background:#3b1f0e;
    color:#fff;
    padding:45px 35px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.card-tag{
    font-size:11px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#d9b59a;
    font-weight:700;
}

.solution-left h3{
    font-size:44px;
    line-height:.95;
    font-family:'Barlow Condensed',sans-serif;
    margin:18px 0;
}

.solution-left p{
    font-size:15px;
    line-height:1.8;
    color:rgba(255,255,255,.78);
}

/* right side */

.solution-right{
    padding:55px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.solution-right ul{
    list-style:none;
    padding:0;
    margin:0 0 35px;
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
}

.solution-right ul li{
    padding:18px 20px;
    border:1px solid #eadccc;
    font-size:15px;
    color:var(--dark);
    position:relative;
}

.solution-right ul li::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--warm);
    position:absolute;
    left:12px;
    top:24px;
}

.solution-right ul li{
    padding-left:34px;
}

/* buttons */

.solution-btns{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.btn-outline,
.btn-fill{
    padding:14px 8px;
    text-decoration:none;
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:700;
    transition:.3s ease;
}

.btn-outline{
    border:1px solid var(--dark);
    color:var(--dark);
    background:#fff;
}

.btn-outline:hover{
    background:var(--dark);
    color:#fff;
}

.btn-fill{
    background:var(--warm);
    border:1px solid var(--warm);
    color:#fff;
}

.btn-fill:hover{
    background:var(--dark);
    border-color:var(--dark);
}

/* responsive */

@media(max-width:992px){

    .solutions-grid{
        grid-template-columns:1fr;
    }

    .solution-left{
        padding:35px 25px;
    }

    .solution-right{
        padding:35px 25px;
    }
}

@media(max-width:768px){

    .solutions-section{
        padding:70px 0;
    }

    .section-heading h2{
        font-size:38px;
    }

    .solution-left h3{
        font-size:34px;
    }

    .solution-btns{
        flex-direction:column;
    }

    .btn-outline,
    .btn-fill{
        width:100%;
        text-align:center;
    }
}







/* =========================
   GALLERY WRAPPER (SIDE SPACE)
========================= */
.gallery-wrapper {
  position: relative;
  padding: 0 60px;
  /* desktop spacing */
}

/* =========================
   TRACK (SCROLL AREA)
========================= */
.gallery-track {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

/* =========================
   ROW
========================= */
.gallery-row {
  display: flex;
  gap: 24px;
}

/* =========================
   IMAGES (DESKTOP)
========================= */
.gallery-row img {
  width: 320px;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s;
}

.gallery-row img:hover {
  transform: scale(1.05);
}

.gallery-row {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}
/* =========================
   BUTTONS
========================= */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background:white;
  color: #4e3d03;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-weight: 500;

}

.gallery-btn.prev {
  left: 10px;
}

.gallery-btn.next {
  right: 10px;
}

.gallery-btn:hover {
  background: #c07840;
  color: white;
}

.gallery-btn {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* =========================
   TABLET (≤ 992px)
========================= */
@media (max-width: 992px) {

  .gallery-wrapper {
    padding: 0 40px;
  }

  .gallery-row img {
    width: 260px;
    height: 300px;
  }

  .gallery-btn {
    width: 38px;
    height: 38px;
  }
}


/* =========================
   SMALL MOBILE (≤ 480px)
========================= */
@media (max-width: 480px) {

  .gallery-wrapper {
    padding: 0 16px;
  }

  .gallery-row img {
    width: 180px;
    height: 240px;
  }

  /* cleaner UI */
  .gallery-btn {
    display: flex;
  }
}

.feat-card {
  min-height: 220px;
}

.gallery-track {
  align-items: stretch;
  /* instead of center */
}

.gallery-row img {
  height: 300px;
}

.gallery-track {
  scroll-snap-type: x mandatory;
}

.gallery-row img {
  scroll-snap-align: start;
}



@media (max-width: 480px) {

  .gallery-row img {
    height: 100%;
  }

  .gallery-btn.prev {
    left: 8px;
  }

  .gallery-btn.next {
    right: 8px;
  }
}

@media (max-width: 768px) {

  .gallery-wrapper {
    padding: 0 16px;
  }

  .gallery-track {
    overflow: hidden;
    position: relative;
  }

  .gallery-row {
    display: flex;
    gap: 0;
    transition: transform 0.4s ease;
  }

  .gallery-row img {
    width: 100%;
    height: max-content;
    object-fit: cover;
    flex-shrink: 0;
  }

  .gallery-btn {
    width: 34px;
    height: 34px;
    font-size: 18px;
    background: rgba(97, 58, 13, 0.9);
    color: white;
  }

  .gallery-btn.prev {
    left: 10px;
  }

  .gallery-btn.next {
    right: 10px;
  }
}

.faq{
padding:40px 0;
background:#ffffff;
}

.faq-container{
max-width:1200px;
margin:auto;
padding:0 40px;
}

.faq-layout{
display:grid;
grid-template-columns:1fr 1.3fr;
gap:80px;
}

/* left */

.sec-label{
font-size :0.95rem;
letter-spacing:.2em;
color:#c07840;
margin-bottom:12px;
}
.sec-label:hover{
    color: #2e1503;
}

.sec-title{
font-size:56px;
line-height:1.1;
color:#2b1204;
margin-bottom:25px;
font-family:'Barlow Condensed', sans-serif;

}

.sec-title em{
color:#c07840;
}

.faq-aside p{
font-size:16px;
line-height:1.7;
color:#6c5a49;
max-width:380px;
}

/* faq items */

.faq-item{
border-bottom:1px solid #e3d9cf;
padding:22px 0;
}

.faq-q{
display:flex;
justify-content:space-between;
align-items:center;
font-weight:600;
cursor:pointer;
color:#2b1204;
font-size: 0.95rem;
}
.faq-q:hover{
color: #c07840;
}

.faq-q-icon{
width:32px;
height:32px;
border:1px solid #d7c8b8;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

.faq-q-icon svg{
width:12px;
stroke:#c07840;
stroke-width:1.5;
}

.faq-a{
max-height:0;
overflow:hidden;
transition:max-height .35s ease;
font-size:14px;
line-height:1.7;
color:#6c5a49;
padding-right:40px;
font-weight: 400;
}

/* active */

.faq-item.active .faq-a{
max-height:300px;
margin-top:15px;
}

/* responsive */

@media(max-width:900px){

.faq-layout{
grid-template-columns:1fr;
gap:60px;
}

.sec-title{
font-size:38px;
}

}


/* =========================================
   FINAL RESPONSIVE FIX - ALL DEVICES
   Paste at END of CSS
========================================= */

/* smoother scaling */
html{
  scroll-behavior:smooth;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* container */
.choco-page .container{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* headings */
h1,h2,h3,h4{
  word-break:break-word;
}

/* =====================================
   LARGE DESKTOP
===================================== */
@media (min-width:1400px){

  .hero{
    min-height:92vh;
    padding:40px 0;
  }

  .hero h1{
    font-size:72px;
    line-height:1.05;
  }

  h2{
    font-size:60px;
  }

}

/* =====================================
   LAPTOP / SMALL DESKTOP
===================================== */
@media (max-width:1200px){

  .hero-grid,
  .two-col,
  .benefits-grid,
  .future-grid,
  .faq-layout,
  .usecases-top{
    gap:50px;
  }

  .hero h1{
    font-size:56px;
  }

  h2{
    font-size:48px;
  }

}

/* =====================================
   TABLET
===================================== */
@media (max-width:992px){

  .hero{
    min-height:auto;
    padding:60px 0;
  }

  .hero-grid,
  .two-col,
  .benefits-grid,
  .future-grid,
  .faq-layout,
  .usecases-top{
    grid-template-columns:1fr;
    gap:40px;
  }

  .hero-left{
    order:1;
    text-align:center;
  }

  .hero-right{
    order:2;
    justify-content:center;
    align-items:center;
  }

  .hero-right img{
    max-width:500px;
    margin:auto;
  }

  .hero-desc{
    max-width:100%;
    margin:auto;
  }

  .process-cards{
    grid-template-columns:repeat(2,1fr);
  }

  .stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }

  .usecases-grid,
  .materials-grid{
    grid-template-columns:repeat(2,1fr);
  }

  h2{
    font-size:42px;
    margin-bottom:20px;
  }

}

/* =====================================
   MOBILE
===================================== */
@media (max-width:768px){

  .ticker{
    margin-top:94px;
    font-size:10px;
    letter-spacing:1px;
  }

  .hero{
    padding:40px 0;
  }

  .hero-grid{
    gap:25px;
  }

  .hero h1{
    font-size:38px;
    line-height:1.1;
  }

  .hero-desc{
    font-size:15px;
    line-height:1.7;
  }

  .hero-right img{
    width:100%;
    max-width:340px;
  }

  h2{
    font-size:34px;
    line-height:1.15;
  }

  .section,
  .benefits,
  .faq,
  .process{
    padding:60px 0;
  }

  .process-cards,
  .usecases-grid,
  .materials-grid{
    grid-template-columns:1fr;
  }

  .stats-grid{
    grid-template-columns:1fr 1fr;
  }

  .solution-btns{
    flex-direction:column;
  }

  .btn,
  .btn-outline,
  .btn-fill{
    width:100%;
    text-align:center;
  }

  .faq-container{
    padding:0 20px;
  }

}

/* =====================================
   SMALL MOBILE
===================================== */
@media (max-width:480px){

  .hero h1{
    font-size:32px;
    padding-top: 0px;
  }

  h2{
    font-size:28px;
  }

  .stats-grid{
    grid-template-columns:1fr;
  }

  .step,
  .card,
  .usecase-card,
  .material-card,
  .future-card,
  .solution-card{
    padding:20px;
  }

  .gallery-wrapper{
    padding:0 12px;
  }

  .gallery-btn{
    width:32px;
    height:32px;
    font-size:14px;
  }

}

/* =====================================
   FIX OVERFLOW ISSUES
===================================== */
body,
.choco-page{
  overflow-x:hidden;
}
.gallery-row img{
  border-radius:14px;
}

/* MOBILE HERO EXACT ORDER */
@media (max-width:768px){

  .hero-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:10px;
  }

  .hero{
    padding: 0px;
  }
  .hero-left,
  .hero-right{
    display:contents !important;
  }

  .hero-left .label{
    order:1;
  }

  .hero-left h1{
    order:2;
  }

  .hero-right img{
    order:3;
    width:100%;
    max-width:320px;
    margin:0 auto;
    display:block;
  }

  .hero-left .hero-desc{
    order:4;
  }

  .hero-left .hero-points{
    order: 5;
  }
  .hero-left .btn{
    order:6;
  }

}

