* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 393px;
  background: #000;
  z-index: 2000;
  padding: 24px 16px 12px;
}

.nav-toggle {
  display: none;
}

.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 37px;
  width: auto;
}

.burger {
  cursor: pointer;
}
.burger-icon {
  width: 21.5px;
}

.menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 393px;
  height: 100vh;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1500;
}

.nav-toggle:checked ~ .menu {
  opacity: 1;
  pointer-events: auto;
}

.menu-wrap {
  height: 100%;
  padding: 24px 16px 32px;
  display: flex;
  flex-direction: column;
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close {
  cursor: pointer;
}
.close-icon {
  width: 32px;
  height: 32px;
}

.menu-main {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 58px;
  width: 100%;
  padding: 0 24px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  font-family: Monda;
  letter-spacing: 0.08em;
  color: #fff;
  border-radius: 19.5px;
  border: 1px solid #fff;
  background: linear-gradient(90deg, #FE6911 0%, #FE1F1E 100%);
  box-shadow: 0px 4px 4px #00000040;
}

.btn-services {
  justify-content: space-between;
}

/* services-menu-toggle  */
.services-menu-toggle {
  display: none;
}
.btn-text-link {
  color: #ffffff;
  text-decoration: none;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.btn-icon img {
  width: 36px;
  height: 36px;
  display: block;
  transition: transform 0.2s ease;
}
.services-menu-toggle:checked + .btn.btn-services .btn-icon img {
  transform: rotate(45deg);
}
.services-submenu {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}

/* submenu open */
.services-menu-toggle:checked ~ .services-submenu {
  max-height: 600px;     
  margin-top: 16px;
}

/* submenu buttons */
.services-sub-btn {
  font-size: 16px;
  letter-spacing: 0.08em;
}

.btn-icon img {
  width: 36px;
  height: 36px;
  top: 228px;
  left: 323px;
}

.menu-bottom {
  margin-top: auto;
  text-align: center;
}

.social {
  display: flex;
  justify-content: center;
  margin-top: 20px;;
  gap: 20px;
}

.social img {
  width: 32px;
  height: 32px;
}

.contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.line {
  display: flex;
  justify-content: center;
}

.line-link {
  display: flex;
  align-items: center;
  text-decoration: none;  
  color: inherit;       
}

.email-icon {
  width: 29px;
}

.phone-icon {
  width: 34px;
}

.line-text {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: Monda;
  letter-spacing: .03em;
  color: #fff;
}

.page-frame {
  width: 100%;
  max-width: 393px;
  margin: 0 auto;
  padding-top: 72px;
  background: #000;
}
.page-wrapper{
  width:100%;
  max-width:393px;      
  margin:0 auto;       
  background:#000000;   
  overflow:hidden;     
}
/* hero */
.hero {
  position: relative;
  width: 100%;
  height: 589px;          
  overflow: hidden;
}

/* hero video */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* overlay gradient */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.36);
  z-index: 2;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(180deg,#000000 21.63%,rgba(0,0,0,0) 100%);
  z-index: 3;
  pointer-events: none;
}

.hero::before { top: 0; }
.hero::after  { bottom: 0; transform: rotate(180deg); }


.hero__tagline {
  position: absolute;
  top: 24px;              
  left: 50%;
  transform: translateX(-50%);
  width: 341px;
  z-index: 10;
}

.hero__tagline img {
  width: 100%;
  display: block;
}

.hero__title {
  position: absolute;
  left: 24px;
  bottom: 90px;   
  width: 264px;
  height: auto;
  font-family: Monda;
  font-size: 50px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  z-index: 10;
}

.hero-cta {
  background: #000000;
}

.hero-cta__inner {
  padding: 22px 0 28px;
  text-align: center;
}

.hero-cta__button img {
  width: 260px;
  max-width: 80%;
  display: block;
  margin: 0 auto;
}
/* Who we are */
.who {
  width: 100%;
  max-width: 393px;       
  margin: 0 auto;
  background: #000000;
  box-sizing: border-box;
}
.who__img {
  position: relative;
  width: 100%;            
  overflow: hidden;
}

.who__img img {
  display: block;
  width: 100%;           
  height: auto;
}
.who__img::before,
.who__img::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 180px;
  pointer-events: none;
}
.who__img::before {
  bottom: 0;
  background: linear-gradient(0deg, #000 0%, rgba(0,0,0,0) 100%);
}

.who__img::after {
  top: 0;
  background: linear-gradient(180deg, #000 0%, rgba(0,0,0,0) 100%);
}
.who__body {
  padding: 45px 16px 48px;
}
.who__title {
  font-family: Monda;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  margin: 0 0 14px 0;
  background: linear-gradient(135deg, #FF6A12 50%, #FF1E1E 81.77%),
  linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.who__paragraph {
  font-family: Arial;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
  color: #ffffff;
}
/* Creative evolution */
.creative-block {
  width: 100%;
  max-width: 393px;
  margin: 0 auto;
  background: #000;
  padding: 0;
}
.creative-title {
  margin: 0;
  padding: 16px 12px 0;   
  margin-bottom: 50px;   
  font-family: Monda;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-transform: uppercase;
  background: linear-gradient(135deg, #FF6A12 50%, #FF1E1E 81.77%),
  linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.creative-slider-wrapper {
  width: 393px;         
  height: 603px;        
  overflow: hidden;
  background: #000;
  margin: 0 auto;       
}
.creative-slider {
  width: 100%;
  height: 100%;
}
.creative-slide {
  width: 393px;
  height: 603px;        
}
.creative-slide img {
  width: 393px;         
  height: 603px;        
  object-fit: cover;    
  display: block;
}
/* Our services */
.services-block {
  width: 100%;
  max-width: 393px;        
  margin: 0 auto;
  background: #000000;
  padding: 40px 16px 48px; 
  box-sizing: border-box;
}
.services-heading {
  margin: 0 0 40px 0;      
  font-family: Monda;
  font-weight: 700;        
  font-size: 40px;
  line-height: 120%;
  text-transform: uppercase;
  background: linear-gradient(135deg, #FF6A12 50%, #FF1E1E 81.77%),
  linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.services-text {
  margin: 0;
  font-family: Arial;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: #ffffff;
}
/* work-category */
.work-category{
  max-width:393px;
  width:100%;
  margin:0 auto;
  background:#000;
  padding:8px 0 40px;
  font-family:Monda;
  color:#fff;
  box-sizing:border-box;
}

.work-category-item{
  position:relative;
  margin-bottom:40px;
  padding:0;
}
.work-category-item input[type="radio"]{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.work-category-bar{
  width:100%;
  min-height:58px;
  padding:12px 16px;
  display:flex;
  align-items:center;
  gap:10px;
  border-radius:19.5px;
  border:1px solid #fff;
  background: linear-gradient(90deg, #FE6911 0%, #FE1F1E 100%);
  box-shadow:0 6px 7.4px #FFFFFF40,0 4px 4px #0004;
  cursor:pointer;
  position:relative;
  z-index:2;
}
.work-category-dot{
  width:3px;
  height:3px;
  border-radius:50%;
  background:#fff;
}

.work-category-title{
  flex:1;
  font-size:20px;
  font-weight:700;
  line-height:120%;
  text-transform:uppercase;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.work-category-arrow{
  width:22px;
  height:22px;
  filter:brightness(0) invert(1);
  object-fit:contain;
  transition:transform .10s ease;
}

.work-category-item input[type="radio"]:checked + .work-category-bar .work-category-arrow{
  transform:rotate(180deg);
}

.work-category-panel{
  width:100%;
  background:#fff;
  color:#000;
  border-radius:14px;
  border-top-left-radius:0;
  border-top-right-radius:0;
  max-height:0;
  overflow:hidden;
  padding:0 16px;
  margin-top:0;
  box-shadow:0 6px 7.4px #FFFFFF40,0 4px 4px #0004;
  position:relative;
  z-index:1;
  transition:max-height .3s ease,padding .3s ease,margin-top .3s ease;
}

.work-category-item input[type="radio"]:checked + .work-category-bar + .work-category-panel{
  max-height:1200px;
  padding:42px 16px 18px;
  margin-top:-26px;
}
.work-category-text{
  font-family:Arial;
  font-size:14px;
  font-weight:400;
  line-height:120%;
  margin:0 auto 16px;
  max-width:330px;
}
.work-category-slider{
  display:flex;
  gap:12px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:6px;
  -webkit-overflow-scrolling:touch;
  touch-action:pan-x;
  overscroll-behavior-inline:contain;
}

.work-category-slider::-webkit-scrollbar{
  display:none;
}

.work-category-slide{
  flex:0 0 auto;
  width:164px;
  height:129px;
  border-radius:16px;
  overflow:hidden;
  scroll-snap-align:start;
}

.work-category-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.work-category-btn-row{
  text-align:center;
  margin-top:10px;
}

.work-category-btn{
  display:inline-block;
  padding:8px 15px;
  border-radius:999px;
  font-size:14px;
  font-family:Arial;
  font-style: Bold;
  font-weight:700;
  color:#000;
  background:linear-gradient(90deg,#FE6911,#FE1F1E);
  text-decoration:none;
}

/* explore btn*/
.work-category-explore{
  text-align:center;
  margin-top:60px;
  padding-top:12px;
}
.work-category-explore-btn{
  display:inline-block;
  padding:10px 12px;
  border-radius:999px;
  background:#fff;
  color:#000;
  font-size:Body/Size Medium;
  font-family:Arial;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 6px 7.4px #FFFFFF40,0 4px 4px #0004;
}
/* Testimonials */
.testimonials{
  display:flex;
  justify-content:center;
  background:#fff;
}

.testimonials-wrap{
  width:393px;
  padding:40px 0 60px;
  background:#000;
}

.testimonials-heading{
  font-family:Monda;
  font-size:40px;
  font-weight:700;
  text-transform:uppercase;
  margin:0 0 30px 10px;
  background: linear-gradient(135deg, #FF6A12 50%, #FF1E1E 81.77%),
  linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.testimonials-slider{
  width:369px;
  height:440px;
  margin:0 auto;
  overflow:hidden;
}
.swiper-slide{
  display:flex;
  justify-content:center;
  align-items:center;
}

.testimonial-card{
  width:369px;
  height:440px;
  background:#ffffff;
  border-radius:18px;
  padding:24px 24px 44px;
  box-sizing:border-box;
  text-align:center;
  border:2px solid transparent;
  background:
    linear-gradient(#ffffff,#ffffff) padding-box,
    linear-gradient(180deg,#FE1E1E 0%,#FE6911 100%) border-box;
}

.testimonial-stars{
  width:108px;
  display:block;
  margin:0 auto 16px;
}

.testimonial-text{
  font-family:Arial;
  font-size:16px;
  line-height:120%;
  font-weight:400;
  margin:0 0 36px;
}

.testimonial-user{
  width:100px;
  height:100px;
  margin:0 auto 14px;
  border-radius:50%;
  overflow:hidden;
}

.testimonial-user img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.testimonial-name{
  font-family:Arial;
  font-size:20px;
  font-weight:700;
  background:linear-gradient(135deg,#FF6A12 50%,#FF1E1E 82%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  margin-bottom:4px;
}

.testimonial-role{
  font-family:Arial;
  font-size:16px;
  font-weight:700;
  color:#000;
}

/* dots */
.testimonial-dots{
  text-align:center;
  margin-top:24px;
}

.testimonial-dots .swiper-pagination-bullet{
  width:10px;
  height:10px;
  background:#D4D4D4;
  opacity:1;
  margin:0 4px;
}

.testimonial-dots .swiper-pagination-bullet-active{
  background:#FE6114;
}

/* START YOUR JOURNEY SECTION  */
.journey-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.journey-card {
  position: relative;
  width: 393px;
  height: 491px;
  overflow: hidden;
  border-radius: 0;             
}

.journey-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-card::before,
.journey-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.journey-card::before {
  top: 0;
  height: 60%;
  background: linear-gradient(
    180deg,
    #000000 21.63%,
    rgba(0,0,0,0) 100%
  );
}

.journey-card::after {
  bottom: 0;
  height: 60%;
  background: linear-gradient(
    0deg,
    #000000 21.63%,
    rgba(0,0,0,0) 100%
  );
}

.journey-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 64px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  align-items: center;
}

.journey-heading {
  color: #ffffff;
  font-family: Monda;
  font-weight: 700;
  font-size: 32px;
  justify-content: center;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 45px;     
}


.journey-heading span {
  display: block;
}

.journey-cta img {
  display: block;
  width: 176px;     
  height: auto;      
  padding: 0;        
  margin-top: 16px; 
}

/* footer  */
.footer {
  width: 393px;          
  margin: 0 auto;         
  background: #000000;    
  padding: 0;
}
.footer-top-box {
  width: 100%;            
  background: #000000;
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
  padding: 50px 24px 24px;
  color: #ffffff;
  text-align: center;
  font-family: Arial;
}

.ft-logo {
  width: 276px;
  height: 63px;
  display: block;
  margin: 0 auto 16px;
}
.ft-text {
  font-size: 16px;
  font-weight: 400;
  font-style: regular;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 20px;
}
.ft-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.ft-social img {
  width: 22px;
  height: 22px;
}
.ft-call img {
  width: 150px;
  display: block;
  margin: 0 auto;
}

.footer-menu {
  width: 393px;               
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  font-family: Monda;
  font-size: 20px;
  font-style: bold;
  font-weight: 700;
  color: #ffffff;
}
.footer-menu-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
}
.footer-menu::before {
  top: 0;
  height: 60%;
  background: linear-gradient(
    180deg,
    #000000 21.63%,
    rgba(0,0,0,0) 100%
  );
}
.footer-menu-inner {
  position: relative;
  z-index: 2;
  padding: 24px 24px 16px;
}
.fm-heading {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff
}
.fm-heading:not(:first-of-type) {
  margin-top: 22px;                        
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.4);  
}
.fm-link {
  display: block;
  font-size: 13px;
  padding: 4px 0;
  text-decoration: none;
  color: #ffffff;
}
.fm-info {
display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 4px 0;
  color: #fff;
}

.fm-info img {
  width: 18px;
  height: 18px;
}
.fm-bottom {
  margin-top: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 11px;
  text-align: center;
  opacity: 0.85;
}
.fm-mini-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
}
.fm-contact {
  color: #ffffff;
  text-decoration: none;   
  font-weight: 700;
}

.fm-contact:hover {
  opacity: 0.85;
}