.logo{
  display:inline-flex;
  align-items:center;
  width:auto;
}

.logo img{
  display:block;
  width:88px;
  height:auto;
}

footer .logo img{
  width:100px;
}

.service-grid{
  gap:14px;
  border:0;
  background:transparent;
}

.service-card,
.service-card:last-child{
  min-height:470px;
  padding:0;
  border:1px solid var(--line);
  background:#0b0b0c;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}

.service-card:after{
  display:none;
}

.service-image{
  position:relative;
  height:205px;
  flex:0 0 205px;
  overflow:hidden;
  background:#111;
}

.service-image:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.03),rgba(5,5,5,.8));
}

.service-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.85) contrast(1.05);
  transition:transform .55s ease,filter .55s ease;
}

.service-card:hover .service-image img{
  transform:scale(1.045);
  filter:saturate(1) contrast(1.08);
}

.service-image span{
  position:absolute;
  z-index:1;
  top:18px;
  left:18px;
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  background:var(--red);
  color:#fff;
  font-family:Manrope,sans-serif;
  font-weight:800;
  font-size:12px;
}

.service-content{
  padding:26px 25px 24px;
  display:flex;
  flex:1;
  flex-direction:column;
}

.service-content h3{
  font-family:Manrope,sans-serif;
  font-size:23px;
  line-height:1.15;
  margin:0 0 14px;
}

.service-content p{
  color:#8c8c91;
  line-height:1.6;
  font-size:14px;
  margin-bottom:24px;
}

.service-content b{
  margin-top:auto;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:1.4px;
  color:#ddd;
  border-top:1px solid var(--line);
  padding-top:17px;
}

.contact-mark{
  width:170px;
  height:auto;
  margin-top:44px;
  opacity:.9;
}

@media(max-width:950px){
  .service-grid{gap:12px}
  .service-card:nth-child(-n+2){border-bottom:1px solid var(--line)}
}

@media(max-width:680px){
  .logo img{width:78px}
  .service-card{min-height:440px}
  .service-image{height:220px;flex-basis:220px}
  .contact-mark{width:135px;margin-top:30px}
}

.creator-card{
  min-height:410px;
}

.creator-visual{
  height:220px;
  overflow:hidden;
  background:radial-gradient(circle at 60% 40%,#3d1514,#0b0b0c 68%);
}

.creator-visual:before{
  z-index:1;
  opacity:0;
  transition:opacity .25s ease;
}

.creator-visual:after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(0,0,0,.02) 45%,rgba(5,5,5,.82) 100%);
}

.creator-cover{
  position:absolute;
  inset:0;
  z-index:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  filter:saturate(.88) contrast(1.03);
  transition:transform .55s ease,filter .55s ease;
}

.creator-card:hover .creator-cover{
  transform:scale(1.045);
  filter:saturate(1) contrast(1.06);
}

.creator-tier{
  z-index:3;
  background:rgba(5,5,5,.78);
  backdrop-filter:blur(8px);
}

.creator-initials{
  z-index:2;
  opacity:0;
  transition:opacity .25s ease;
}

.creator-visual.cover-fallback:before,
.creator-visual.cover-fallback .creator-initials{
  opacity:1;
}

.creator-visual.ugc-placeholder{
  background:
    radial-gradient(circle at 50% 45%,rgba(242,43,35,.25),transparent 34%),
    linear-gradient(145deg,#260c0b,#0b0b0c 72%);
}

.ugc-placeholder .creator-initials{
  width:94px;
  height:94px;
  color:#fff;
  font-size:21px;
  letter-spacing:2px;
  background:rgba(0,0,0,.38);
  border-color:rgba(242,43,35,.5);
  box-shadow:0 0 28px rgba(242,43,35,.14);
}

.creator-footer{
  min-height:59px;
  align-items:center;
}

.creator-socials{
  display:flex;
  align-items:center;
  gap:8px;
}

.social-link{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  color:#aaa;
  border:1px solid #303034;
  text-decoration:none;
  transition:background .2s ease,border-color .2s ease,color .2s ease,transform .2s ease;
}

.social-link:hover{
  color:#fff;
  background:var(--red);
  border-color:var(--red);
  transform:translateY(-2px);
}

.social-link svg{
  width:16px;
  height:16px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.social-link .icon-dot{
  fill:currentColor;
  stroke:none;
}

@media(max-width:680px){
  .creator-card{min-height:430px}
  .creator-visual{height:250px}
}
