/* -----------------------------
   AS SEEN ON SECTION
----------------------------- */
#asSeenOnText { display:block !important; white-space:normal !important; width:100% !important; }
#asSeenOnText span { white-space:normal !important; }
.as-seen-on-section { width:100%; display:flex; justify-content:center; align-items:center; padding:10% 0; }
.as-seen-on-text { font-size:3rem; line-height:1.3; text-align:left; color:white; max-width:1200px; margin:0 auto; padding:3% 5%; white-space:normal !important; word-break:normal; overflow-wrap:break-word; font-family: 'Inter', sans-serif; }
@media (max-width:992px) { .as-seen-on-text{font-size:2.8rem; line-height:1.35; padding:0 5%;} }
@media (max-width:768px) { .as-seen-on-text{font-size:2.3rem; line-height:1.2; padding:0 5%; text-align: center;} }
@media (max-width:480px) { .as-seen-on-text{font-size:1.8rem; line-height:1.2; padding:0 5%;} .as-seen-on-section{padding: 35% 0 50% 0;}}
.as-seen-line{display:block;opacity:0.2;transform:translateY(10px);transition:opacity 0.6s ease-out, transform 0.6s ease-out;color:white;}
.as-seen-line.visible{opacity:1;transform:translateY(0);}

/* -----------------------------
   OUR WORK SECTION
----------------------------- */
.our-work-section{width:100%; color:white; text-align:center;}
.our-work-title{font-family:"Passion One",sans-serif;font-size:5rem;margin-bottom:60px;font-weight:900;}
.our-work-grid{display:grid; grid-template-columns:repeat(12,1fr); gap:40px; width:90%; max-width:1200px; margin:0 auto; align-items:start; grid-auto-rows:auto; grid-auto-flow:dense;}
.our-work-item.grid-span-3{grid-column:span 3;}
.our-work-item.grid-span-4{grid-column:span 4;}
.our-work-item.grid-span-6{grid-column:span 6;}
.our-work-item.grid-span-9{grid-column:span 9;}
.our-work-item.grid-span-12{grid-column:span 12;}
@media (max-width:992px){.our-work-grid{grid-template-columns:repeat(6,1fr);}.our-work-item.grid-span-9,.our-work-item.grid-span-3{grid-column:span 6;}.our-work-item.grid-span-4{grid-column:span 2;}.our-work-item.grid-span-6{grid-column:span 3;}.our-work-item.grid-span-12{grid-column:span 6;}}
@media (max-width:600px){.our-work-grid{grid-template-columns:1fr; grid-auto-flow:row;}.our-work-item{grid-column:span 1 !important;}}

.our-work-item{text-decoration:none;color:white;position:relative;overflow:hidden;border-radius:12px;display:block;transition:transform 0.3s ease;min-width:0;}
.our-work-item:hover{transform:scale(1.04);}
.our-work-thumb{width:100%; height:450px; background-size:cover; background-position:center; border-radius:12px; position:relative; box-shadow:0 10px 25px rgba(0,0,0,0.35);}

.our-work-overlay {
    position:absolute; inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.1));
    display:flex; flex-direction:column; justify-content:flex-end;
    padding:30px;
    opacity:0;
    transform:translateY(20px);
    transition:all 0.45s ease;
}

.our-work-item:hover .our-work-overlay{
    opacity:1;
    transform:translateY(0);
}

.our-work-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.our-work-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.our-work-name{font-size:2rem;margin:0 0 10px 0;font-family:"Passion One",sans-serif;font-weight:900;}
.our-work-excerpt{font-size:1rem; line-height:1.35; margin:0; opacity:0.9; font-family:'Inter',sans-serif;}

/* -----------------------------
   OUR WORK — ALWAYS SHOW OVERLAY ON MOBILE
----------------------------- */
@media (max-width: 992px) {

    .our-work-overlay {
        opacity: 1 !important;
        transform: translateY(0) !important;
        background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.1)) !important;
    }

    .our-work-item:hover {
        transform: none !important;
    }

    .our-work-name {
        font-size: 1.8rem;
    }

    .our-work-excerpt {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* -----------------------------
   WHO WE WORK WITH — LOGO ORBIT
----------------------------- */
.logo-orbit-section{position:relative; overflow:hidden; width:100%;}
.logo-orbit{display:flex; flex-wrap:wrap; justify-content:center; gap:3rem; padding:60px 0;}
.logo-orbit-item{position:relative; width:140px; height:80px; display:flex; align-items:center; justify-content:center; transition:transform 0.3s ease; will-change:transform; animation:float-medium 5s ease-in-out infinite;}
.logo-img-wrap{position:relative; width:100%; height:100%;}
.logo-img-wrap img{width:100%; height:100%; object-fit:contain; display:block; z-index:3; transition:opacity 0.2s ease;}
.logo-img-wrap::before, .logo-img-wrap::after{content:''; position:absolute; inset:0; background-size:contain; background-repeat:no-repeat; background-position:center; opacity:0; z-index:2; mix-blend-mode:lighten; transition:opacity 0.15s ease, transform 0.15s ease;}
.logo-img-wrap::before{filter:hue-rotate(180deg) saturate(5) brightness(1.3); background-image:var(--glitch-img-blue);}
.logo-img-wrap::after{filter:hue-rotate(-50deg) saturate(5) brightness(1.3); background-image:var(--glitch-img-pink);}
.logo-orbit-item:hover img{opacity:0.9;}
.logo-orbit-item:hover .logo-img-wrap::before{opacity:0.8; transform:translate(-3px,-2px);}
.logo-orbit-item:hover .logo-img-wrap::after{opacity:0.8; transform:translate(3px,2px);}

@keyframes float-medium{0%,100%{transform:translateY(0);}50%{transform:translateY(-14px);}}

/* -----------------------------
   IMAGE DIVIDER
----------------------------- */
.image-divider-section { position: relative; width: 100%; height: 110vh; min-height: 600px; overflow: hidden; z-index: 2; }
.image-divider-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; will-change: transform; z-index: 1; }
.image-divider-bg .bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 130%; background-size: cover; background-position: center; background-repeat: no-repeat; will-change: transform; }

/* -----------------------------
   NEWS SECTION
----------------------------- */
.news-section { padding: 10% 5%; background: #d81e5b; }
.news-container { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; max-width: 1600px; margin: 0 auto; }
.news-left { position: sticky; top: 120px; height: fit-content; }
.news-description { color: #fff; margin: 20px 0 40px; }
.news-right { display: flex; flex-direction: column; gap: 40px; padding-right: 10px; }
.news-right::-webkit-scrollbar { width: 0; }
.news-right { scrollbar-width: none; }
.news-card { border-radius: 22px; overflow: hidden; padding: 20px; display: flex; flex-direction: column; gap: 20px; position: relative; background: white; transform: translateY(40px); opacity: 0; transition: transform 0.6s ease-out, opacity 0.6s ease-out; }
.news-card:nth-child(1) { z-index: 8; }
.news-card:nth-child(2) { z-index: 9; }
.news-card:nth-child(3) { z-index: 10; }
.news-bg-1 { background: #5603ad; color: white; }
.news-bg-2 { background: #f3fb00; color: #111; }
.news-bg-3 { background: #f1f7ed; color: #111; }
.news-thumb { width: 100%; border-radius: 12px; overflow: hidden; }
.news-thumb img { width: 100%; height: auto; display: block; }
.news-content { display: flex; flex-direction: column; gap: 10px; }
.news-categories a { display: inline-block; padding: 4px 10px; border-radius: 25px; margin-right: 8px; font-size: 0.9rem; text-decoration: none; background: rgba(0,0,0,0.15); color: #111; transition: background 0.3s ease, color 0.3s ease; }
.news-categories a:hover { background: rgba(0,0,0,0.8); color: #fff; }
.news-bg-1 .news-categories a { background: rgba(255,255,255,0.15); color: #fff; }
.news-bg-1 .news-categories a:hover { background: rgba(255,255,255,0.8); color: #000; }
.news-title { font-family: "Passion One", sans-serif; font-weight: 900;; font-size: 2rem; margin: 18px 0 10px; }
.news-excerpt { font-family: 'Inter', sans-serif; font-size: 1.1rem; line-height: 1.5; opacity: 0.9; }
.news-read-more { display: inline-block; font-size: 0.95rem; padding: 10px 22px; border-radius: 25px; text-decoration: none; text-align: center; color: #fff; background-color: #111; transition: 0.25s; }
.news-read-more:hover { color: #111; background-color: #fff; transform: translateY(-3px); }
.news-card.visible { transform: translateY(0); opacity: 1; }
.btn-dark-bg { color: white; border-color: white; }
.btn-light-bg { color: #111; border-color: #111; }

@media (max-width: 992px) { 
    .news-container { grid-template-columns: 1fr; } 
    .news-left { position: relative; top: 0; margin-bottom: 40px; } 
    .news-right { height: auto; overflow: visible; } 
}

/* -----------------------------
   CTA SECTION
----------------------------- */
.cta-section {
  background: #f1f7ed;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  margin-top: -60px;
  position: relative;
  z-index: 5;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  box-shadow: 0 -6px 30px rgba(0,0,0,0.08);
  transition: transform 0.6s ease-out; 
}

@keyframes ctaFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

#ctaSection {
  transform: translateY(50px); 
  transition: transform 0.6s ease-out;
}

#ctaSection.visible {
  transform: translateY(0);
}

#ctaSection {
	color: #000;
}

@media (max-width: 768px) {
  .cta-section { 
    padding-top: 3rem; 
    padding-bottom: 3rem; 
    margin-top: -40px; 
    border-top-left-radius: 40px; 
    border-top-right-radius: 40px; 
    animation-duration: 10s; 
  }
}

.cta-section h2 {	
	font-family: "Passion One", sans-serif;
    font-weight: 900;
    position: relative;
    display: inline-block;
    font-size: 5rem;
    text-transform: uppercase;
    line-height: 1;
}

.cta-section a.btn, .news-left a.btn {
    border-radius: 50px;
    transition: 0.25s;
}

.cta-section a.btn:hover, .news-left a.btn:hover {
    transform: translateY(-3px);
}