*{
margin:0;
padding:0;
box-sizing:border-box;
}





/* HIDE SCROLLBAR - KEEP SCROLL WORKING */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  display: none;
}

/* Firefox */
html {
  scrollbar-width: none;
}

/* IE / old Edge */
body {
  -ms-overflow-style: none;
}






/* SPINNER */
.spinner{
  position:relative;
  width:60px;
  height:60px;

  /* smoother rotation */
  animation: spin 1.8s cubic-bezier(.4,0,.2,1) infinite;
}

/* DOT BASE */
.spinner span{
  position:absolute;
  width:6px;
  height:6px;
  border-radius:50%;

  top:50%;
  left:50%;

  background:#e53935;

  /* smoother fade */
  animation: fade 1.8s cubic-bezier(.4,0,.2,1) infinite;
}

/* DEPTH (IMPORTANT 🔥) */
.spinner span:nth-child(1){ transform: translate(-50%, -50%) rotate(0deg) translateY(-20px) scale(1); }
.spinner span:nth-child(2){ transform: translate(-50%, -50%) rotate(45deg) translateY(-20px) scale(0.9); }
.spinner span:nth-child(3){ transform: translate(-50%, -50%) rotate(90deg) translateY(-20px) scale(0.8); }
.spinner span:nth-child(4){ transform: translate(-50%, -50%) rotate(135deg) translateY(-20px) scale(0.7); }
.spinner span:nth-child(5){ transform: translate(-50%, -50%) rotate(180deg) translateY(-20px) scale(0.6); }
.spinner span:nth-child(6){ transform: translate(-50%, -50%) rotate(225deg) translateY(-20px) scale(0.7); }
.spinner span:nth-child(7){ transform: translate(-50%, -50%) rotate(270deg) translateY(-20px) scale(0.8); }
.spinner span:nth-child(8){ transform: translate(-50%, -50%) rotate(315deg) translateY(-20px) scale(0.9); }

/* DELAYS */
.spinner span:nth-child(1){ animation-delay:-1.6s; }
.spinner span:nth-child(2){ animation-delay:-1.4s; }
.spinner span:nth-child(3){ animation-delay:-1.2s; }
.spinner span:nth-child(4){ animation-delay:-1.0s; }
.spinner span:nth-child(5){ animation-delay:-0.8s; }
.spinner span:nth-child(6){ animation-delay:-0.6s; }
.spinner span:nth-child(7){ animation-delay:-0.4s; }
.spinner span:nth-child(8){ animation-delay:-0.2s; }

/* ROTATION */
@keyframes spin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* FADE */
@keyframes fade{
  0%{ opacity:1; }
  50%{ opacity:0.3; }
  100%{ opacity:1; }
}



#loader{
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;

  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility .5s ease;
}

#loader.hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}







body{
background:#000;
color:white;
font-family:'Poppins',sans-serif;
line-height:1.5;
padding-top: 5rem;
}


/* GLOBAL CONTAINER */

.container{
width:min(1200px,92%);
margin:auto;
}





/* ===============================
   PREMIUM HEADER REPLACE
=============================== */
.nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;

  display: flex;
  justify-content: center;

  padding: 14px 0;

  transition: transform .35s ease, opacity .35s ease;
  will-change: transform;
}

.nav.hide{
  transform: translateY(-110%);
  opacity: .2;
}

.nav.show{
  transform: translateY(0);
  opacity: 1;
}

.nav-inner{
  width:min(1200px,92%);
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:14px 24px;
  border-radius:26px;

  /* LIGHT PREMIUM GLASS */
  background: linear-gradient(
    145deg,
    rgba(245,245,245,.95),
    rgba(220,220,220,.88)
  );

  border: 1px solid rgba(255,255,255,.7);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  position:relative;
  overflow:hidden;

  /* 3D DEPTH */
  box-shadow:
    inset 0 2px 8px rgba(255,255,255,.9),
    inset 0 -6px 12px rgba(0,0,0,.08),
    0 10px 25px rgba(0,0,0,.18),
    0 18px 40px rgba(0,0,0,.12);
}





/* SHINY EFFECT */
.nav-inner::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:50%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.25),
    transparent
  );
  transform:skewX(-25deg);
  animation:navShine 6s linear infinite;
}

@keyframes navShine{
  100%{ left:140%; }
}

.logo img{
  height:42px;
  position:relative;
  z-index:2;
}

.menu{
  display:flex;
  gap:28px;
  position:relative;
  z-index:2;
}

.menu a{
  color:#000000;
  text-decoration:none;
  font-weight:500;
  position:relative;
  transition:.3s;
}

.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#e53935;
  transition:.3s;
}

.menu a:hover{
  color:#e53935;
}

.menu a:hover::after{
  width:100%;
}

.menu-toggle{
  width:42px;
  height:42px;
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  cursor:pointer;
  position:relative;
  z-index:2;
}

.menu-toggle span{
  width:24px;
  height:2px;
  background:#fff;
  margin:auto;
  transition:.35s ease;
}

.menu-toggle.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}


/* ===============================
   FINAL CREATIVE MOBILE PILLS
=============================== */
.mobile-menu{
  position: fixed;
  top: 88px;
  right: 18px;
  z-index: 99998;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;

  pointer-events: none;
}

.mobile-menu a{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  max-width: 88vw;

  /* TIGHTER FIT */
  padding: 12px 20px;

  /* LESS ROUNDED */
  border-radius: 18px;

  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;

  /* SOLID PREMIUM RED */
  background: #9f1111;

  border: 1px solid rgba(255,255,255,.08);

  box-shadow:
    0 10px 22px rgba(0,0,0,.22),
    0 0 14px rgba(229,57,53,.12);

  opacity: 0;
  visibility: hidden;
  transform: translateX(40px) scale(.94);

  transition:
    opacity .4s ease,
    transform .4s cubic-bezier(.22,1,.36,1),
    visibility .4s ease;
}

/* ONLY SHOW WHEN ACTIVE */
.mobile-menu.active{
  pointer-events: auto;
}

.mobile-menu a.show{
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.menu a.active{
  color:#e53935;
}

.menu a.active::after{
  width:100%;
}

.mobile-menu a.active{
  background:#e53935;
}







@media(max-width:900px){
  .menu{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .nav{
    padding:10px 0;
  }

  .nav-inner{
    width:94%;
    border-radius:18px;
    padding:12px 16px;
  }

  .logo img{
    height:36px;
  }
}








/* ===================================
   HERO SECTION
=================================== */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    background:#050505;
    padding:20px 0 70px;
}




/* ===================================
   LAYOUT
=================================== */

.hero-inner{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
    position:relative;
    z-index:2;
}


/* ===================================
   LEFT CONTENT
=================================== */

.hero-content{
    max-width:560px;
}

.hero-tag{
    display:inline-block;
    font-size:0.8rem;
    letter-spacing:2px;
    color:#e53935;
    margin-bottom:1rem;
    font-weight:600;
    text-align: left;
    width: 100%;
}

.hero-title{
    font-size:clamp(3rem,5vw,3.5rem);
    line-height:1.2;
    font-weight:800;
    color:#fff;
    margin-bottom:1.5rem;
    text-align: left;
}

.hero-title span{
    color:#e53935;
}

.hero-description{
    font-size:1.05rem;
    line-height:1.8;
    color:#b8b8b8;
    max-width:500px;
    margin-bottom:2.2rem;
    text-align: left;
}


/* ===================================
   BUTTONS
=================================== */

.hero-buttons{
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:1rem 2rem;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
    font-size:0.95rem;
}

.btn-primary{
    background:#e53935;
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(229,57,53,0.35);
}

.btn-secondary{
    border:1px solid #2c2c2c;
    color:#fff;
    background:#111;
}

.btn-secondary:hover{
    background:#1a1a1a;
}







.hero-visual{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.hero-showcase{
    position:relative;
    width:100%;
    max-width:420px;
    height:480px;
}

.hero-slide{
    position:absolute;
    inset:0;

    opacity:0;
    transform:scale(.96);

    transition:
        opacity .8s ease,
        transform .8s ease;

    overflow:hidden;
    border-radius:24px;
}

.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;

    transform:scale(1);
    transition:transform 6s ease;
}

.hero-slide.active{
    opacity:1;
    transform:scale(1);
}

.hero-slide.active img{
    transform:scale(1.08);
}

.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}



.hero-slide{
    box-shadow:
        0 20px 50px rgba(0,0,0,.4),
        0 0 40px rgba(229,57,53,.08);
}




/* ===================================
   RESPONSIVE HERO
=================================== */

@media (max-width: 992px){

    .hero-inner{
        display:grid;
        grid-template-columns:1fr;
        gap:60px;
        text-align:center;
    }

    .hero-content{
        max-width:700px;
        margin:auto;
    }

    .hero-description{
        margin-inline:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-visual{
        display:flex;
        justify-content:center;
        align-items:center;
        height:auto;
    }

    .hero-showcase{
        width:100%;
        max-width:500px;
        height:550px;
    }

}



@media (max-width:768px){

    .hero{
        padding-top:120px;
        padding-bottom:80px;
    }

    .hero-title{
        font-size:3rem;
        line-height:1.1;
    }

    .hero-description{
        font-size:1rem;
        line-height:1.8;
    }

    .hero-showcase{
        max-width:420px;
        height:480px;
    }

}



@media (max-width:520px){

    .hero{
        padding-top:110px;
        padding-bottom:60px;
    }

    .hero-title{
        font-size:2.3rem;
        line-height:1.1;
    }

    .hero-description{
        font-size:1rem;
    }

    .hero-buttons{
        flex-direction:column;
        gap:16px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

    .hero-showcase{
        width:100%;
        max-width:100%;
        height:380px;
    }

    .hero-slide{
        border-radius:20px;
    }

}











.who-3d-section{
  background:#f5f5f5;
  padding:140px 0;
  text-align:center;
}

/* HEADING */
.who-heading{
  font-size:3.5rem;
  margin-bottom:100px;
}

.red{
  color:#e53935;
}

/* CONTAINER */
.who-3d-container{
  display:flex;
  justify-content:center;
  gap:50px;
  perspective:1200px;
  flex-wrap:wrap; /* 🔥 important */
}

/* CARD */
.who-card{
  width:320px;
  padding:40px;
  background:#111;
  color:#fff;
  border-radius:18px;
  position:relative;
  overflow:hidden;

  transform-style:preserve-3d;
  transition:transform 0.25s ease;

  box-shadow:0 30px 60px rgba(0,0,0,0.35);
  will-change:transform;
}

/* TEXT BIGGER */
.who-card h3{

    font-size:2rem;

    color:#fff;

    margin-bottom:0;
}

.who-card p{
  font-size:1.05rem;
  color:#aaa;
}

/* LIGHT */
.card-light{
  position:absolute;
  inset:0;
  border-radius:18px;
  pointer-events:none;
  opacity:0;
  transition:0.3s;
}


.who-3d-section{
  background:#f6f5f5;
  padding:140px 0;
  text-align:center;
}

.red{
  color:#e53935;
}

/* CONTAINER */
.who-3d-container{
  display:flex;
  justify-content:center;
  gap:50px;
  perspective:1200px;
  flex-wrap:wrap; /* 🔥 important */
}

/* CARD */
.who-card{
  width:320px; /* 🔥 BIGGER */
  padding:40px;
  background:#111;
  color:#fff;
  border-radius:18px;

  transform-style:preserve-3d;
  transition:0.3s ease;
  position:relative;

  box-shadow:0 30px 60px rgba(0,0,0,0.35);

  z-index:1;
}

/* TEXT BIGGER */
.who-card h3{
  font-size:1.6rem;
  margin-bottom:12px;
}

.who-card p{
  font-size:1.05rem;
  color:#aaa;
}

/* LIGHT */
.card-light{
  position:absolute;
  inset:0;
  border-radius:18px;
  pointer-events:none;
  opacity:0;
  transition:0.3s;
}


@media(max-width:768px){

  .who-card{
    transform:none !important;
    width:90%;
  }

}


.about-cta{
  text-align:center;
  margin-top:60px;
}

/* BUTTON BASE */
.pro-btn{
  display:inline-block;
  position:relative;

  padding:16px 42px;

  background:#000;
  color:#fff;

  font-size:1rem;
  font-weight:600;
  letter-spacing:0.5px;

  border-radius:50px;
  text-decoration:none;

  overflow:hidden;
  transition:all 0.35s ease;

  border:2px solid #000;
}

/* REMOVE DEFAULT LINK STYLE (FORCE) */
.pro-btn,
.pro-btn:link,
.pro-btn:visited{
  color:#fff;
  text-decoration:none;
}

/* HOVER EFFECT */
.pro-btn:hover{
  background:#fff;
  color:#000;
  transform:translateY(-4px);
  box-shadow:0 12px 25px rgba(0,0,0,0.25);
}

/* TEXT LAYER FIX */
.pro-btn span{
  position:relative;
  z-index:2;
}

/* OPTIONAL GLOW SWEEP (PREMIUM) */
.pro-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );

  transition:0.5s;
}

.pro-btn:hover::before{
  left:100%;
}



.service-divider{
    width:80px;
    height:3px;

    margin:18px auto 25px;

    border-radius:999px;

    background:
    linear-gradient(
        90deg,
        #ff2d2d,
        #ff6b6b
    );
}

.service-list{
    list-style:none;
    padding:0;
    margin:0;

    display:flex;
    flex-direction:column;
    gap:18px;
}

.service-list li{

    font-size:1.35rem;
    color:#bfbfbf;

    line-height:1.8;

    transition:.3s ease;
}

.service-list li:hover{
    color:#fff;
}


.service-list a{

    color:#bdbdbd;

    text-decoration:none;

    transition:all .3s ease;

    display:inline-block;

}

.service-list a:hover{

    color:#ffffff;

    transform:translateX(8px);

}


.service-list a{

    color:#bdbdbd;

    text-decoration:none;

    transition:all .3s ease;

    display:inline-block;

}

.service-list a:hover{

    color:#ffffff;

    transform:translateX(8px);

}














.home-services{
  background:#0d0d0d;
  color:#fff;
  padding:120px 20px;
  position:relative;
  overflow:hidden;
}

.home-services::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(229,57,53,.08), transparent 40%);
  pointer-events:none;
}

.container{
  width:min(1180px, 92%);
  margin:auto;
}

.service-eyebrow{
  color:#e53935;
  font-weight:700;
  letter-spacing:2px;
  font-size:.85rem;
  margin-bottom:12px;
  text-align:center;
}

.home-services h2{
  font-size:clamp(2rem, 5vw, 3.8rem);
  line-height:1.1;
  max-width:950px;
  margin:0 auto 20px;
  text-align:center;
}

.service-sub{
  max-width:760px;
  color:#bbb;
  line-height:1.8;
  margin:0 auto 60px;
  text-align:center;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  perspective:1000px;
}

.service-card{
  position:relative;
  background:linear-gradient(145deg,#111,#1b1b1b);
  border:1px solid rgba(255,255,255,.05);
  border-radius:20px;
  padding:35px;
  min-height:240px;
  box-shadow:0 20px 40px rgba(0,0,0,.35);
  transform-style:preserve-3d;
  transition:transform .35s ease, box-shadow .35s ease;
}

.service-card:hover{
  box-shadow:0 25px 60px rgba(0,0,0,.45);
}

.accent-line{
  display:block;
  width:60px;
  height:3px;
  background:#e53935;
  border-radius:20px;
  margin-bottom:25px;
}

.service-card h3{
  font-size:1.4rem;
  margin-bottom:15px;
}

.service-card p{
  color:#aaa;
  line-height:1.7;
}

/* reveal */
.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:.8s ease;
}
.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* mobile */
@media(max-width:900px){
  .service-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .service-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    min-height:auto;
  }
}



.service-link{
  text-decoration:none;
  color:inherit;
  display:block;
}

.service-link:hover .service-card{
  border-color:rgba(229,57,53,.35);
}





.portfolio-bento{
  padding:120px 0;
  background:#000000;
}

.container{
  width:min(1200px,92%);
  margin:auto;
}

.portfolio-head{
  text-align:center;
  max-width:850px;
  margin:0 auto 70px;
}

.eyebrow{
  color:#e53935;
  font-weight:700;
  letter-spacing:2px;
  font-size:.85rem;
  margin-bottom:14px;
}

.portfolio-head h2{
  font-size:clamp(1rem,5vw,3rem);
  line-height:1.1;
  margin-bottom:18px;
  color:#ffffff;
}

.sub{
  color:#ffffff;
  line-height:1.8;
  font-size:1rem;
}

/* GRID */
.bento-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:220px;
  gap:24px;
}

.bento-item{
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  transform:translateY(60px);
  opacity:0;
  transition:.8s ease;
}

.bento-item.show{
  transform:translateY(0);
  opacity:1;
}

.bento-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}

/* custom sizes */
.large{
  grid-column:span 2;
  grid-row:span 2;
}

.tall{
  grid-row:span 2;
}

.wide{
  grid-column:span 2;
}

/* CTA */
.portfolio-cta{
  text-align:center;
  margin-top:50px;
}

.portfolio-cta a{
  display:inline-block;
  padding:15px 34px;
  background:#ffffff;
  color:#000000;
  border-radius:40px;
  text-decoration:none;
  font-weight:700;
  transition:.3s ease;
}

.portfolio-cta a:hover{
  background:#e53935;
  color: white;
}

/* MOBILE */
@media(max-width:900px){
  .bento-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .bento-grid{
    grid-template-columns:1fr;

  }

  .large,
  .tall,
  .wide{
    grid-column:span 1;
    grid-row:span 1;
  }
}







/* ===================================
   PRINT STUDIO SUPPORT
=================================== */

.print-support{

    background:#ffffff;

    padding:140px 13%;

}

.support-wrapper{

    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:120px;

    align-items:center;

}

.support-tag{

    display:inline-block;

    color:#ff3b3b;

    font-size:.9rem;

    font-weight:700;

    letter-spacing:4px;

    margin-bottom:20px;

}

.support-title{

    font-size:clamp(3rem,5vw,4rem);

    line-height:1.05;

    color:#111;

    margin-bottom:30px;

}

.support-text{

    font-size:1.15rem;

    line-height:1.9;

    color:#666;

    max-width:650px;

    margin-bottom:40px;

}

.support-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 36px;

    background:#ff3b3b;

    color:#fff;

    text-decoration:none;

    border-radius:999px;

    font-weight:600;

    transition:.3s;

}

.support-btn:hover{

    transform:translateY(-3px);

}

/* RIGHT SIDE */

.support-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px 60px;

}

.support-item{

    display:flex;

    align-items:center;

    gap:16px;

    font-size:1.15rem;

    font-weight:500;

    color:#111;

}

.tick{

    color:#ff3b3b;

    font-size:1.4rem;

    font-weight:700;

}



@media(max-width:992px){

    .support-wrapper{

        grid-template-columns:1fr;

        gap:60px;

    }

    .support-left{

        text-align:center;

    }

    .support-text{

        margin:auto auto 40px;

    }

}

@media(max-width:768px){

    .support-list{

        grid-template-columns:1fr;

        gap:25px;

    }

}










/* ==========================
   MARKETING SHOWCASE
========================== */

.marketing-showcase{

    background:#fff;
    padding:140px 8%;

}

.marketing-header{

    text-align:center;
    max-width:900px;
    margin:auto;

}

.marketing-label{

    display:block;
    color:#ff3b3b;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:5px;
    margin-bottom:20px;

}

.marketing-header h2{

    font-size:clamp(3rem,6vw,4rem);
    line-height:1.05;
    color:#111;
    margin-bottom:30px;

}

.marketing-header p{

    font-size:1.15rem;
    line-height:1.9;
    color:#666;
    max-width:800px;
    margin:auto;

}

/* GRID */

.marketing-grid{

    margin-top:100px;

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:50px;

}

.marketing-item{

    text-align:center;

}

.marketing-image{

    background:#f5f5f5;
    border-radius:30px;
    overflow:hidden;

}

.marketing-image img{

    width:100%;
    display:block;

    transition:.6s ease;

}

.marketing-item:hover img{

    transform:scale(1.04);

}

.marketing-item h3{

    margin-top:30px;
    margin-bottom:15px;

    font-size:2rem;
    color:#111;

}

.marketing-item p{

    color:#666;
    line-height:1.8;
    max-width:500px;
    margin:auto;

}

/* FOOTER */

.marketing-footer{

    text-align:center;
    max-width:900px;
    margin:120px auto 0;

}

.marketing-footer h3{

    font-size:clamp(2rem,4vw,3.5rem);
    color:#111;
    margin-bottom:20px;

}

.marketing-footer p{

    color:#666;
    font-size:1.15rem;
    line-height:1.8;

}


.marketing-btn{

    position:relative;
    overflow:hidden;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:40px;

    padding:18px 40px;

    background:#111;
    color:#fff;

    text-decoration:none;

    border-radius:999px;

    font-weight:600;

    transition:.3s;

      box-shadow:
    0 10px 30px rgba(0,0,0,.12);


}

/* SILVER SHINE */

.marketing-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.15),
        rgba(255,255,255,.55),
        rgba(255,255,255,.15),
        transparent
    );

    transform:skewX(-25deg);

}

.marketing-btn:hover::before{

    animation:shine .9s ease forwards;

}

.marketing-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.18);


}

@keyframes shine{

    100%{

        left:160%;

    }

}




@media(max-width:768px){

    .marketing-grid{

        grid-template-columns:1fr;

    }

    .marketing-showcase{

        padding:100px 6%;

    }

}








.prepress-section{
    padding:120px 8%;
    background:#000000;
    text-align:center;
}

.prepress-label{
    color:#ff3b3b;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:6px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.prepress-title{
    font-size:clamp(3rem,6vw,4rem);
    line-height:1.05;
    font-weight:800;
    color:#ffffff;
    margin-bottom:30px;
}

.prepress-intro{
    max-width:800px;
    margin:0 auto 90px;
    font-size:1.35rem;
    line-height:1.8;
    color:#666;
}

.prepress-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:70px 60px;
}

.prepress-item{
    text-align:center;
    max-width:320px;
    margin:auto;
}

.prepress-item .number{
    display:block;
    font-size:4rem;
    font-weight:800;
    color:rgba(255,59,59,.12);
    line-height:1;
    margin-bottom:15px;
}

.prepress-item span{
    display:inline-block;
    color:#ff3b3b;
    font-size:2rem;
    font-weight:700;
    margin-bottom:20px;
}

.prepress-item h3{
    font-size:1.8rem;
    color:#ffffff;
    margin-bottom:15px;
    font-weight:700;
}

.prepress-item p{
    color:#666;
    font-size:1.1rem;
    line-height:1.8;
}

@media(max-width:900px){

    .prepress-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .prepress-item{
        text-align:center;
    }

}
















.event-section{

    background:#fff;
    padding:140px 8%;

}

.event-label{

    text-align:center;
    color:#ff3b3b;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:6px;
    text-transform:uppercase;
    margin-bottom:25px;

}

.event-title{

    text-align:center;
    font-size:clamp(3rem,7vw,4rem);
    line-height:1;
    font-weight:800;
    color:#000;
    margin-bottom:35px;

}

.event-intro{

    max-width:850px;
    margin:0 auto 120px;
    text-align:center;
    font-size:1.35rem;
    line-height:1.8;
    color:#666;

}

/* ROW */

.event-row{

    display:grid;
    grid-template-columns:1.4fr .9fr;
    gap:70px;
    align-items:center;
    margin-bottom:90px;

}

/* IMAGE */

.event-image{

    background:#f5f5f5;
    border-radius:30px;
    overflow:hidden;
    aspect-ratio:16/7;

}

.event-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

}

/* CONTENT */

.event-content{

    max-width:420px;

}

.event-number{

    display:block;
    font-size:4.5rem;
    font-weight:800;
    color:rgba(255,59,59,.12);
    line-height:1;
    margin-bottom:10px;

}

.event-content h3{

    font-size:2.5rem;
    font-weight:800;
    color:#000;
    margin-bottom:15px;

}

.event-content p{

    font-size:1.2rem;
    line-height:1.8;
    color:#666;

}

/* CLOSING */

.event-closing{

    text-align:center;
    margin-top:120px;

}

.event-closing h3{

    font-size:clamp(3rem,6vw,5rem);
    line-height:1.1;
    font-weight:800;
    color:#000;
    margin-bottom:20px;

}

.event-closing p{

    color:#ff3b3b;
    font-size:1.4rem;
    font-weight:600;

}


.event-image img{

    transition:.6s ease;

}

.event-row:hover .event-image img{

    transform:scale(1.05);

}

/* MOBILE */

@media(max-width:991px){

    .event-row{

        grid-template-columns:1fr;
        gap:35px;

    }

    .event-content{

        max-width:100%;
        text-align:center;

    }

}









.event-btn{

    position:relative;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:20px 45px;

    background:#000;
    color:#fff;

    border:2px solid #000;

    border-radius:60px;

    text-decoration:none;

    font-size:1rem;
    font-weight:600;

    overflow:hidden;

    transition:.35s ease;

}


.event-cta{
    text-align:center;
    margin-top:80px;
}

/* SILVER SHINE */

.event-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-150%;

    width:50%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.8),
        rgba(220,220,220,.9),
        rgba(255,255,255,.8),
        transparent
    );

    transform:skewX(-25deg);

    z-index:1;

}

/* HOVER */

.event-btn:hover{

    background:#fff;
    color:#000;
    border:2px solid #000;

    transform:translateY(-3px);
     box-shadow:
    0 10px 25px rgba(0,0,0,.08);

}

/* SHINE ANIMATION */

.event-btn:hover::before{

    left:180%;
    transition:.9s ease;

}

/* KEEP TEXT ABOVE SHINE */

.event-btn{

    z-index:1;
}

.event-btn span{

    position:relative;
    z-index:2;
}












/* =====================================
   PRODUCTION ARTWORK
===================================== */

.production-artwork{

    background:#fff;
    padding:120px 0;

}

.section-heading{

    text-align:center;
    max-width:1000px;
    margin:0 auto 90px;

}

.section-heading span{

    display:block;
    color:#ff3d3d;
    font-size:14px;
    font-weight:700;
    letter-spacing:6px;
    margin-bottom:25px;

}

.section-heading h2{

    font-size:68px;
    line-height:1.05;
    font-weight:800;
    color:#000;
    margin-bottom:30px;

}

.section-heading p{

    max-width:900px;
    margin:auto;

    font-size:21px;
    line-height:1.8;
    color:#666;

}

/* =====================================
   GRID
===================================== */

.production-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;

}

/* =====================================
   DASHBOARD CARD
===================================== */

.production-dashboard{

    border:1px solid #e8e8e8;
    border-radius:30px;
    overflow:hidden;

    background:#fafafa;

    box-shadow:0 20px 50px rgba(0,0,0,.04);

}

.dashboard-header{

    display:flex;
    align-items:center;
    gap:10px;

    padding:25px 30px;

    border-bottom:1px solid #ececec;

    background:#fff;

}

.dot{

    width:10px;
    height:10px;
    border-radius:50%;

    background:#d7d7d7;

}

.dashboard-header span{

    margin-left:10px;

    font-size:16px;
    font-weight:700;
    color:#444;

}

.dashboard-body{

    padding:25px 35px;

}

.check-item{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 0;

    border-bottom:1px solid #ececec;

}

.check-item:last-child{

    border:none;

}

.check-item span{

    font-size:18px;
    color:#333;

}

.check-item strong{

    color:#00b15d;
    font-size:22px;

}

.dashboard-footer{

    background:#000;
    color:#fff;

    text-align:center;

    padding:22px;

    font-size:14px;
    font-weight:700;

    letter-spacing:2px;

}

/* =====================================
   BUTTON
===================================== */

.production-button{

    text-align:center;
    margin-top:70px;

}

.production-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:70px;
    padding:0 45px;

    background:#000;
    color:#fff;

    border:2px solid #000;
    border-radius:100px;

    text-decoration:none;

    font-size:18px;
    font-weight:700;

    position:relative;
    overflow:hidden;

    transition:.4s ease;

}

.production-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.9),
        transparent
    );

    transition:.7s;

}

.production-btn:hover{

    background:#fff;
    color:#000;

}

.production-btn:hover::before{

    left:140%;

}

/* =====================================
   MOBILE
===================================== */

@media(max-width:991px){

    .production-grid{

        grid-template-columns:1fr;

    }

    .section-heading h2{

        font-size:48px;

    }

    .section-heading p{

        font-size:20px;

    }

}











.final-cta{

    padding:140px 0;
    text-align:center;
    background:#fff;

    border-top:1px solid #ececec;

}

.cta-label{

    display:block;

    color:#ff3d3d;

    font-size:14px;
    font-weight:700;

    letter-spacing:6px;

    margin-bottom:25px;

}

.final-cta h2{

    font-size:60px;
    line-height:1.05;

    font-weight:800;

    color:#000;

    margin-bottom:50px;

}

.cta-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:72px;
    padding:0 50px;

    background:#000;
    color:#fff;

    border:2px solid #000;
    border-radius:100px;

    text-decoration:none;

    font-size:18px;
    font-weight:700;

    position:relative;
    overflow:hidden;

    transition:.4s ease;

}

.cta-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.9),
        transparent
    );

    transition:.7s;

}

.cta-btn:hover{

    background:#fff;
    color:#000;

}

.cta-btn:hover::before{

    left:140%;

}











.site-footer{
  background:#000;
  color:#fff;
  padding:clamp(4rem,8vw,6rem) 0 2rem;
}

/* CONTAINER */
.footer-container{
  width:min(1100px,92%);
  margin:auto;

  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:2rem;
}

/* LOGO */
.footer-logo{
  font-size:1.8rem;
  font-weight:800;
  margin-bottom:1rem;
}

/* TEXT */
.footer-brand p{
  color:#aaa;
  max-width:300px;
  line-height:1.6;
}

/* LINKS */
.footer-links h4,
.footer-contact h4{
  margin-bottom:1rem;
}

.footer-links a{
  display:block;
  color:#aaa;
  text-decoration:none;
  margin-bottom:0.5rem;
  transition:0.3s;
}

.footer-links a:hover{
  color:#fff;
}

/* CONTACT */
.footer-contact p{
  color:#aaa;
  margin-bottom:0.5rem;
}

/* SOCIAL */
.footer-social{
  margin-top:1rem;
  display:flex;
  gap:12px;
}

.footer-social a{
  width:35px;
  height:35px;
  border:1px solid #333;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}

.footer-social a:hover{
  background:#c62828;
  border-color:#c62828;
}

/* CTA */
.footer-cta{
  text-align:center;
  margin-top:4rem;
}

.footer-cta h3{
  font-size:2rem;
  margin-bottom:1rem;
}

.footer-btn{
  display:inline-block;
  padding:12px 28px;
  background:#c62828;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.footer-btn:hover{
  background:#e53935;
  transform:translateY(-2px);
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  margin-top:3rem;
  color:#666;
  font-size:0.9rem;
}


@media (max-width:768px){

  .footer-container{
    grid-template-columns:1fr;
    text-align:left;
  }

  .footer-cta h3{
    font-size:1.5rem;
  }

}



