:root {
  --pink: #ff1155;
  --pink-deep: #d6003f;
  --pink-soft: #ffe3ec;
  --ink: #0e0a10;
  --ink-2: #241c26;
  --gray: #6e6572;
  --paper: #ffffff;
  --blush: #fff6f9;
  --radius: 20px;
  --ease: cubic-bezier(0.22, 0.9, 0.28, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
::selection {
  background: var(--pink);
  color: #fff;
}

/* ---------- Custom cursor ---------- */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pink);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
  mix-blend-mode: multiply;
}
#cursor.big {
  width: 56px;
  height: 56px;
  opacity: 0.35;
}
@media (pointer: coarse) {
  #cursor {
    display: none;
  }
}
@media (max-width: 900px) {
  #cursor {
    display: none;
  }
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.9s var(--ease);
}
#preloader.done {
  transform: translateY(-101%);
}
#preloader svg {
  width: 90px;
  height: auto;
}
#preloader .pl-word {
  font-family: "Sora";
  font-weight: 700;
  color: #fff;
  font-size: clamp(20px, 3vw, 28px);
  overflow: hidden;
  display: flex;
}
#preloader .pl-word span {
  display: inline-block;
  transform: translateY(110%);
  animation: plUp 0.7s var(--ease) forwards;
}
@keyframes plUp {
  to {
    transform: translateY(0);
  }
}
.mark-path {
  stroke: #fff;
  stroke-width: 34;
  fill: none;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: draw 1.4s 0.1s var(--ease) forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--pink);
  z-index: 1001;
}

/* ---------- Nav ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background 0.4s,
    box-shadow 0.4s,
    padding 0.4s;
  padding: 22px 0;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(14, 10, 16, 0.07);
  padding: 14px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora";
  font-weight: 700;
  font-size: 20px;
}
.logo svg {
  width: 34px;
  height: auto;
}
.logo .accent {
  color: var(--pink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 500;
  font-size: 15px;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--ink-2);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover::after {
  width: 100%;
}

/* ---------- Mega menu ---------- */
.nav-item {
  position: static;
}
.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mega-trigger i {
  font-size: 10px;
  color: var(--gray);
  transition: transform 0.3s var(--ease);
}
.nav-item.has-mega:hover .mega-trigger i,
.nav-item.has-mega.open .mega-trigger i {
  transform: rotate(180deg);
  color: var(--pink);
}
.mega-menu {
  position: absolute;
  top: calc(100% - 14px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: min(760px, 86vw);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(14, 10, 16, 0.16);
  padding: 44px 26px 26px;
  display: flex;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease),
    visibility 0.3s;
  z-index: 500;
}
.mega-menu::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 4px;
}
.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  transition: background 0.25s var(--ease);
}
.mega-item::after {
  content: none;
}
/* .mega-item:hover {
  background: var(--pink-soft);
} */
.mega-ic {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--pink-soft);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.mega-item:hover .mega-ic {
  background: var(--pink);
  color: #fff;
}
.mega-txt h4 {
  font-family: "Sora";
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.mega-txt p {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.4;
}
.mega-cta {
  width: 210px;
  flex: 0 0 210px;
  border-radius: 16px;
  padding: 22px;
  background: linear-gradient(160deg, var(--pink), var(--pink-deep));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mega-cta h4 {
  font-family: "Sora";
  font-size: 16px;
  margin-bottom: 8px;
}
.mega-cta p {
  font-size: 12.5px;
  opacity: 0.9;
  line-height: 1.55;
  margin-bottom: 18px;
}
.mega-cta .btn {
  font-size: 13px;
  padding: 10px 18px;
  align-self: flex-start;
}
@media (max-width: 1024px) {
  .nav-item.has-mega {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mega-trigger {
    justify-content: center;
  }
  .mega-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    width: 100%;
    box-shadow: none;
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    transition:
      max-height 0.4s var(--ease),
      padding-top 0.4s var(--ease);
  }
  .mega-menu::before {
    display: none;
  }
  .nav-item.has-mega:hover .mega-menu,
  .nav-item.has-mega.open .mega-menu {
    transform: none;
  }
  .nav-item.has-mega.open .mega-menu {
    max-height: 1400px;
    padding-top: 16px;
  }
  .mega-grid {
    grid-template-columns: 1fr;
    gap: 2px;
    width: 100%;
    min-width: 0;
  }
  .mega-item {
    min-width: 0;
    text-align: left;
  }
  .mega-txt {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .mega-cta {
    width: 100%;
    flex: none;
    margin-top: 10px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 100px;
  border: 2px solid var(--pink);
  transition:
    transform 0.3s var(--ease),
    background 0.3s,
    color 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 17, 85, 0.35);
}
.btn.ghost {
  background: transparent;
  color: var(--pink);
}
.btn.ghost:hover {
  background: var(--pink);
  color: #fff;
}
.btn.dark {
  background: var(--ink);
  border-color: var(--ink);
}
.btn.light {
  background: #fff;
  color: var(--pink);
  border-color: #fff;
}
#burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 34px;
  height: 26px;
  position: relative;
  z-index: 1002;
}
#burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: 0.35s var(--ease);
}
#burger span:nth-child(1) {
  top: 0;
}
#burger span:nth-child(2) {
  top: 11px;
}
#burger span:nth-child(3) {
  top: 22px;
}
body.menu-open #burger span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
body.menu-open #burger span:nth-child(2) {
  opacity: 0;
}
body.menu-open #burger span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(
      900px 500px at 85% 15%,
      rgba(255, 17, 85, 0.1),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 5% 90%,
      rgba(255, 17, 85, 0.07),
      transparent 60%
    ),
    var(--blush);
  padding: 120px 0 90px;
  overflow: hidden;
}
.hero-grid {
  /* display: grid;
  grid-template-columns: 1.15fr; */
  display: flex;
  gap: 60px;
  justify-content: center;
  /* border: 1px solid red; */
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  background: #fff;
  border: 1px solid var(--pink-soft);
  padding: 9px 18px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(255, 17, 85, 0.08);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 17, 85, 0.5);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(255, 17, 85, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 17, 85, 0);
  }
}
.hero h1 {
  font-size: clamp(31px, 6.2vw, 78px);
  font-weight: 800;
  line-height: 1.06;
  margin: 26px 0 24px;
  text-align: center;
  padding: 0 34px;
}

.hero .seoh1{
    font-size: clamp(31px, 6.2vw, 70px);
}
.hero .webh1{
    font-size: clamp(31px, 6.2vw, 62px);
}
.hero .ppch1{
    font-size: clamp(31px, 6.2vw, 68px);
}
.hero .smmh1{
    font-size: clamp(31px, 6.2vw, 62px);
}
.hero .uiux1{
    font-size: clamp(31px, 6.2vw, 68px);
}
.hero .br1{
    font-size: clamp(31px, 6.2vw, 68px);
}
.hero .storyh1{
    font-size: clamp(31px, 6.2vw, 62px);
}
.hero .abouth1{
    font-size: clamp(31px, 6.2vw, 62px);
}
.hero .workh1{
    font-size: clamp(31px, 6.2vw, 62px);
}
.hero .contenth1{
    font-size: clamp(31px, 6.2vw, 62px);
}

.hero h1 em {
  font-style: normal;
  color: var(--pink);
}
.hero p.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-mini {
  display: flex;
  gap: 44px;
  margin-top: 56px;
}
.hero-mini .m b {
  font-family: "Sora";
  font-size: 30px;
  font-weight: 800;
  display: block;
}
.hero-mini .m b i {
  font-style: normal;
  color: var(--pink);
}
.hero-mini .m span {
  font-size: 13px;
  color: var(--gray);
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 900px;
}
.mark-wrap {
  width: min(400px, 80%);
  aspect-ratio: 1;
  border-radius: 36px;
  background: linear-gradient(145deg, var(--pink), var(--pink-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 90px rgba(255, 17, 85, 0.35);
  position: relative;
  transform: rotate(-4deg);
}
.mark-wrap svg {
  width: 58%;
}
.chip {
  position: absolute;
  background: transparent;
  border-radius: 16px;
  padding: 0;
  box-shadow: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.chip .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
}
.chip .ic {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 55%,
    rgba(255, 17, 85, 0.05) 100%
  );
  backdrop-filter: blur(6px) saturate(160%);
  -webkit-backdrop-filter: blur(6px) saturate(160%);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.65),
    inset -10px -12px 18px rgba(255, 17, 85, 0.12),
    inset 10px 10px 16px rgba(255, 255, 255, 0.35),
    0 18px 34px rgba(14, 10, 16, 0.18);
}
.chip .ic::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 18%;
  width: 42%;
  height: 26%;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0) 70%
  );
  filter: blur(1.5px);
  pointer-events: none;
}
.chip .ic::after {
  content: "";
  position: absolute;
  bottom: 14%;
  right: 20%;
  width: 12%;
  height: 8%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  filter: blur(1px);
  pointer-events: none;
}
.chip .ic i {
  position: relative;
  z-index: 1;
}
.chip.c1 {
  bottom: 22%;
  left: 9%;
  animation: float 5s ease-in-out infinite;
}
.chip.c2 {
  top: 22%;
  right: 9%;
  animation: float 6s 0.8s ease-in-out infinite;
}
.chip.c3 {
  top: 20%;
  left: 6%;
  animation: float 5.5s 0.4s ease-in-out infinite;
}
.chip.c4 {
  bottom: 26%;
  right: 10%;
  animation: float 6.5s 0.6s ease-in-out infinite;
}
@media (max-width: 900px) {
  .chip.c1,
  .chip.c2,
  .chip.c3,
  .chip.c4 {
    display: none;
  }
  .hero p.lead {
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.scroll-hint {
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--pink), transparent);
  animation: drop 1.6s infinite;
}
@keyframes drop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  padding: 26px 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee .track {
  display: flex;
  gap: 56px;
  width: max-content;
  will-change: transform;
}
.marquee span {
  font-family: "Sora";
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 34px);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
}
.marquee span i {
  font-style: normal;
  color: #fff;
  font-size: 0.7em;
}
.marquee .outline {
  color: var(--pink);
  /* -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7); */
}

/* ---------- Sections base ---------- */
section {
  padding: 56px 0;
}
.sec-head {
  max-width: 760px;
  /* margin-bottom: 64px; */
}
.sec-head .tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.sec-head .tag::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--pink);
}
.sec-head h2 {
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 30px;
}
.sec-head p {
  margin-top: 18px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.7;
}
.sec-head.center {
  margin-inline: auto;
  text-align: center;
}
.sec-head.center .tag {
  justify-content: center;
}
.sec-head.center .tag::before {
  display: none;
}

/* split-text word wrapping */
.split .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.split .w i {
  display: inline-block;
  font-style: normal;
  transform: translateY(110%);
}

.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.1s;
}
.reveal.d2 {
  transition-delay: 0.2s;
}
.reveal.d3 {
  transition-delay: 0.3s;
}
.reveal.d4 {
  transition-delay: 0.4s;
}
.reveal.d5 {
  transition-delay: 0.5s;
}

/* ---------- About ---------- */
.about {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual .frame {
  border-radius: var(--radius);
  aspect-ratio: 4/4.6;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  display: flex;
  align-items: flex-end;
  padding: 38px;
}
.about-visual .frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-visual .frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      420px 300px at 80% 10%,
      rgba(255, 17, 85, 0.5),
      transparent 60%
    ),
    repeating-linear-gradient(
      45deg,
      transparent 0 26px,
      rgba(255, 255, 255, 0.035) 26px 27px
    );
}
.about-visual .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(14, 10, 16, 0.88));
}
.about-visual .frame h3 {
  color: #fff;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.25;
  position: relative;
  z-index: 1;
}
.about-visual .frame h3 i {
  font-style: normal;
  color: var(--pink);
}
.about-visual .badge {
  position: absolute;
  top: -26px;
  right: -20px;
  background: var(--pink);
  color: #fff;
  border-radius: 18px;
  padding: 22px 26px;
  text-align: center;
  box-shadow: 0 20px 44px rgba(255, 17, 85, 0.4);
  transform: rotate(4deg);
}
.about-visual .badge b {
  font-family: "Sora";
  font-size: 34px;
  display: block;
}
.about-visual .badge span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-copy h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
}
.about-copy p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 16.5px;
}
.ticks {
  margin: 26px 0 34px;
  display: grid;
  gap: 14px;
}
.ticks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-weight: 500;
}
.ticks li::before {
  content: "✓";
  flex: 0 0 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  margin-top: 1px;
}

/* ---------- Services ---------- */
.services {
  background: var(--blush);
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 17, 85, 0.08);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 300px;
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, var(--pink), var(--pink-deep));
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}
.svc:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(255, 17, 85, 0.22);
}
.svc:hover::before {
  transform: translateY(0);
}
.svc > * {
  position: relative;
  transition: color 0.4s;
}
.svc .num {
  font-family: "Sora";
  font-weight: 800;
  font-size: 15px;
  color: var(--pink);
  border: 1.5px solid var(--pink-soft);
  border-radius: 100px;
  padding: 5px 14px;
  width: max-content;
}
.svc .icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: var(--pink);
  background: var(--pink-soft);
  border-radius: 14px;
  margin: 22px 0 16px;
  transition:
    background 0.4s,
    color 0.4s,
    transform 0.4s var(--ease);
}
.svc:hover .icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: scale(1.08);
}
.svc h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
.svc p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
  flex: 1 1 auto;
}
.svc .go {
  margin-top: 18px;
  font-weight: 600;
  font-size: 14px;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc .go::after {
  content: "→";
  transition: transform 0.3s;
}
.svc:hover .num {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.svc:hover h3,
.svc:hover .go {
  color: #fff;
}
.svc:hover p {
  color: rgba(255, 255, 255, 0.85);
}
.svc:hover .go::after {
  transform: translateX(6px);
}

/* ---------- HORIZONTAL SCROLL (Process) ---------- */
.h-scroll {
  background: var(--ink);
  color: #fff;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.h-head {
  padding: 100px 0 30px;
}
.h-head .tag {
  color: var(--pink);
}
.h-head h2 {
  color: #fff;
}
.h-head p {
  color: rgba(255, 255, 255, 0.6);
}
.h-wrap {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.h-track {
  display: flex;
  gap: 34px;
  padding: 30px max(4vw, 30px) 120px;
  width: max-content;
  will-change: transform;
}
.h-panel {
  flex: 0 0 auto;
  width: min(560px, 78vw);
  border-radius: 28px;
  padding: clamp(30px, 3.4vw, 50px);
  background-image: linear-gradient(160deg, rgba(27, 20, 32, 0.88), rgba(14, 10, 16, 0.94)), var(--panel-img, none);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 17, 85, 0.22);
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.h-panel::before {
  content: attr(data-step);
  position: absolute;
  top: -30px;
  right: 6px;
  font-family: "Sora";
  font-weight: 800;
  font-size: clamp(120px, 14vw, 200px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 17, 85, 0.35);
  line-height: 1;
}
.h-panel .hp-ico {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border-radius: 18px;
  background: rgba(255, 17, 85, 0.15);
  color: var(--pink);
  margin-bottom: auto;
}
.h-panel.pinkcard .hp-ico {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.h-panel h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  margin: 26px 0 14px;
}
.h-panel h3 i {
  font-style: normal;
  color: var(--pink);
}
.h-panel.pinkcard h3 i {
  color: var(--ink);
}
.h-panel p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  font-size: 15.5px;
  max-width: 420px;
}
.h-panel.pinkcard {
  background-image: linear-gradient(150deg, rgba(255, 17, 85, 0.88), rgba(214, 0, 63, 0.92)), var(--panel-img, none);
  border-color: transparent;
}
.h-panel.pinkcard p {
  color: rgba(255, 255, 255, 0.9);
}
.h-panel.pinkcard::before {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
}
.h-progress {
  position: absolute;
  bottom: 60px;
  left: max(4vw, 30px);
  right: max(4vw, 30px);
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}
.h-progress .fill {
  height: 100%;
  width: 0;
  background: var(--pink);
  border-radius: 10px;
}
.h-hint {
  position: absolute;
  bottom: 78px;
  right: max(4vw, 30px);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -260px;
  right: -160px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.stat {
  text-align: center;
  padding: 26px 10px;
  border-radius: var(--radius);
}
.stat b {
  font-family: "Sora";
  font-size: clamp(40px, 4.6vw, 58px);
  font-weight: 800;
  display: block;
}
.stat span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- OVERLAPPING STACK (Story) ---------- */
.story {
  background: var(--blush);
  position: relative;
}
.stack {
  display: grid;
  gap: 40px;
  max-width: 900px;
  margin-inline: auto;
}
.stack-card {
  position: sticky;
  border-radius: 26px;
  padding: clamp(32px, 4vw, 56px);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 -20px 60px rgba(14, 10, 16, 0.12);
  will-change: transform, filter, opacity;
  backface-visibility: hidden;
  transform-origin: center top;
}
.stack-card .yr {
  font-family: "Sora";
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 7px 18px;
  border-radius: 100px;
  width: max-content;
  margin-bottom: 22px;
}
.stack-card h3 {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.18;
  margin-bottom: 16px;
  max-width: 640px;
}
.stack-card p {
  line-height: 1.8;
  font-size: 16px;
  max-width: 600px;
}
.stack-card .big-bg {
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: "Sora";
  font-weight: 800;
  font-size: clamp(140px, 18vw, 240px);
  line-height: 1;
  opacity: 0.07;
  pointer-events: none;
}
.sc1 {
  background: #fff;
  color: var(--ink);
}
.sc1 .yr {
  background: var(--pink-soft);
  color: var(--pink);
}
.sc1 p {
  color: var(--gray);
}
.sc2 {
  background: var(--ink);
  color: #fff;
}
.sc2 .yr {
  background: rgba(255, 17, 85, 0.2);
  color: #ff6d99;
}
.sc2 p {
  color: rgba(255, 255, 255, 0.65);
}
.sc2 h3 i {
  font-style: normal;
  color: var(--pink);
}
.sc3 {
  background: linear-gradient(150deg, var(--pink), var(--pink-deep));
  color: #fff;
}
.sc3 .yr {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.sc3 p {
  color: rgba(255, 255, 255, 0.9);
}
.sc4 {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--pink);
}
.sc4 .yr {
  background: var(--pink);
  color: #fff;
}
.sc4 p {
  color: var(--gray);
}

/* ---------- Work ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/4.5;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 34px 70px rgba(14, 10, 16, 0.25);
}
.card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .card-img {
  transform: scale(1.08);
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(14, 10, 16, 0.82));
}
.card .k {
  position: relative;
  z-index: 1;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink-soft);
  margin-bottom: 10px;
}
.card h3 {
  position: relative;
  z-index: 1;
  font-size: 21px;
  line-height: 1.3;
}
.card .arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  transform: scale(0) rotate(-45deg);
  transition: transform 0.4s var(--ease);
}
.card:hover .arrow {
  transform: scale(1) rotate(0);
}
.g1 {
  background: linear-gradient(150deg, #ff1155, #8b0f3f);
}
.g2 {
  background: linear-gradient(150deg, #241c26, #0e0a10);
}
.g3 {
  background: linear-gradient(150deg, #ff5c8a, #d6003f);
}
.g4 {
  background: linear-gradient(150deg, #3a2140, #ff1155);
}
.g5 {
  background: linear-gradient(150deg, #0e0a10, #5e1030);
}
.g6 {
  background: linear-gradient(150deg, #d6003f, #2a0f1c);
}
.card .mesh {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 18px,
    rgba(255, 255, 255, 0.09) 18px 19px
  );
}

/* ---------- Why ---------- */
.why {
  background: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 30px 0;
}
.steps {
  display: grid;
}
.step {
  display: flex;
  gap: 24px;
  padding: 28px 22px;
  border-radius: var(--radius);
  align-items: flex-start;
  transition:
    background 0.35s,
    box-shadow 0.35s,
    transform 0.35s var(--ease);
}
.step:hover {
  background: var(--blush);
  box-shadow: 0 20px 50px rgba(255, 17, 85, 0.12);
  transform: translateX(8px);
}
.step .n {
  font-family: "Sora";
  font-weight: 800;
  color: var(--pink);
  font-size: 18px;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 16px;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.step p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- Testimonials ---------- */
.testi {
  overflow: hidden;
  background: var(--blush);
}
.t-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}
.t-track {
  display: flex;
  transition: transform 0.7s var(--ease);
}
.t-slide {
  flex: 0 0 100%;
  padding: 8px;
}
.t-card {
  background: #fff;
  border: 1px solid rgba(255, 17, 85, 0.1);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 54px);
  box-shadow: 0 24px 60px rgba(14, 10, 16, 0.07);
  display: grid;
  gap: 22px;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}
.t-card .q {
  font-family: "Sora";
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.5;
}
.t-card .q::before {
  content: "“";
  color: var(--pink);
  font-size: 1.6em;
  line-height: 0;
  vertical-align: -8px;
  margin-right: 6px;
}
.t-card .who b {
  display: block;
  font-size: 16px;
}
.t-card .who span {
  color: var(--gray);
  font-size: 14px;
}
.t-card .stars {
  color: var(--pink);
  letter-spacing: 4px;
  font-size: 15px;
}
.t-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}
.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background: var(--pink-soft);
  border: 0;
  cursor: pointer;
  transition: 0.35s var(--ease);
}
.t-dot.on {
  width: 34px;
  background: var(--pink);
}

/* ---------- Skills ---------- */
.skills {
  background: var(--ink);
  color: #fff;
}
.skills .sec-head h2 {
  color: #fff;
}
.sk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 70px;
  margin-top: 40px;
}
.sk .row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 15px;
}
.sk .row b {
  font-family: "Sora";
  color: var(--pink);
}
.sk .bar {
  height: 9px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.sk .fill {
  height: 100%;
  width: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--pink), #ff6d99);
  transition: width 1.6s var(--ease);
}

/* ---------- FAQ ---------- */
.faq {
  background: #fff;
}
.faq-wrap {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 16px;
}
.faq-item {
  border: 1.5px solid rgba(255, 17, 85, 0.14);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition:
    border-color 0.35s,
    box-shadow 0.35s;
}
.faq-item.open {
  border-color: var(--pink);
  box-shadow: 0 20px 50px rgba(255, 17, 85, 0.12);
}
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  font-family: "Sora";
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.faq-q .x {
  flex: 0 0 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  transition:
    transform 0.45s var(--ease),
    background 0.35s,
    color 0.35s;
}
.faq-item.open .faq-q .x {
  transform: rotate(135deg);
  background: var(--pink);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-a p {
  padding: 0 28px 26px;
  color: var(--gray);
  line-height: 1.8;
  font-size: 15.5px;
}

/* ---------- CTA ---------- */
.cta {
  padding: 0;
  background: #fff;
}
.cta-inner {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  border-radius: 32px;
  padding: clamp(50px, 7vw, 90px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  translate: 0 70px;
  margin-top: -70px;
  box-shadow: 0 40px 90px rgba(255, 17, 85, 0.35);
}
.cta-inner::before,
.cta-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.cta-inner::before {
  width: 300px;
  height: 300px;
  top: -140px;
  left: -100px;
}
.cta-inner::after {
  width: 380px;
  height: 380px;
  bottom: -200px;
  right: -120px;
}
.cta-inner h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  position: relative;
}
.cta-inner p {
  max-width: 560px;
  margin: 0 auto 34px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}
.cta-inner .btn {
  background: #fff;
  color: var(--pink);
  border-color: #fff;
  position: relative;
}
.cta-inner .btn:hover {
  box-shadow: 0 16px 36px rgba(14, 10, 16, 0.25);
}

/* ---------- Contact Form ---------- */
.contact-form {
  background: var(--blush);
}
.cf-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  max-width: 1080px;
  margin-inline: auto;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(14, 10, 16, 0.12);
}
.cf-info,
.cf-form {
  min-width: 0;
}
.cf-info {
  background: linear-gradient(160deg, #1b1420, #0e0a10);
  padding: clamp(36px, 4vw, 56px);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cf-info::before,
.cf-info::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 17, 85, 0.35), transparent 70%);
}
.cf-info::before {
  width: 260px;
  height: 260px;
  top: -90px;
  right: -90px;
}
.cf-info::after {
  width: 220px;
  height: 220px;
  bottom: -110px;
  left: -80px;
  background: radial-gradient(circle, rgba(255, 17, 85, 0.22), transparent 70%);
}
.cf-info .tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}
.cf-info .tag::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--pink);
}
.cf-info h3 {
  font-family: "Sora";
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
}
.cf-info > p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 32px;
  position: relative;
}
.cf-list {
  display: grid;
  gap: 18px;
  margin-bottom: auto;
  position: relative;
}
.cf-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
}
.cf-list li span {
  min-width: 0;
  overflow-wrap: break-word;
}
.cf-list li i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: rgba(255, 17, 85, 0.18);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.cf-info .socials {
  position: relative;
  margin-top: 36px;
}
.cf-form {
  /* background: #fff; */
  padding: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf-field label {
  font-family: "Sora";
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  min-width: 0;
  border: 1.5px solid rgba(14, 10, 16, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: "Inter";
  font-size: 15px;
  color: var(--ink);
  background: var(--blush);
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    background 0.3s;
  outline: none;
  resize: vertical;
}
.cf-field textarea {
  min-height: 120px;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: var(--gray);
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--pink);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 17, 85, 0.12);
}
.cf-form .btn {
  align-self: flex-start;
  margin-top: 6px;
  border: 2px solid var(--pink);
}
.cf-note {
  font-size: 14px;
  font-weight: 600;
  color: var(--pink);
  min-height: 20px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.cf-note.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: #fff;
  padding: 90px 0 0;
}
.f-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}
.f-grid > div {
  min-width: 0;
}
.f-grid h4 {
  font-size: 16px;
  margin-bottom: 22px;
  color: #fff;
}
.f-grid p,
.f-grid a,
.f-grid li {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14.5px;
  line-height: 1.8;
}
.f-grid a:hover {
  color: var(--pink);
}
.f-grid ul {
  display: grid;
  gap: 10px;
}
.f-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora";
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 18px;
}
.f-logo svg {
  width: 32px;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.35s var(--ease);
}
.socials a:hover {
  background: var(--pink);
  transform: translateY(-4px);
  color: #fff;
}
.news {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 6px;
  margin-top: 6px;
}
.news input {
  flex: 1;
  background: none;
  border: 0;
  outline: 0;
  color: #fff;
  padding: 10px 18px;
  font-family: "Inter";
  font-size: 14px;
  min-width: 0;
}
.news input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.news button {
  border: 0;
  background: var(--pink);
  color: #fff;
  border-radius: 100px;
  padding: 11px 22px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}
.news button:hover {
  background: var(--pink-deep);
}
.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}
.f-bottom i {
  font-style: normal;
  color: var(--pink);
}

#toTop {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  border: 0;
  font-size: 19px;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(18px);
  transition: 0.4s var(--ease);
  box-shadow: 0 14px 34px rgba(255, 17, 85, 0.4);
}
#toTop.show {
  opacity: 1;
  transform: none;
}
#toTop:hover {
  transform: translateY(-4px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .hero-visual {
    order: -1;
  }
  .mark-wrap {
    width: min(300px, 70%);
  }
  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .f-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sk-grid {
    grid-template-columns: 1fr;
  }
  .cf-wrap {
    grid-template-columns: 1fr;
  }
  .nav-links {
    position: fixed;
    inset: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-size: 22px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 1001;
    height: 100vh;
    padding: 90px 24px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.menu-open .nav-links {
    transform: none;
  }
  #burger {
    display: block;
  }
  .nav .btn {
    display: none;
  }
}
@media (max-width: 640px) {
  section {
    padding: 80px 0;
  }
  .svc-grid,
  .work-grid,
  .f-grid {
    grid-template-columns: 1fr;
  }
  .hero-mini {
    gap: 26px;
    flex-wrap: wrap;
  }
  .chip.c1 {
    left: 0;
  }
  .chip.c2 {
    right: 0;
  }
  .about-visual .badge {
    top: -16px;
    right: 6px;
    padding: 16px 20px;
  }
  .about-visual .badge b {
    font-size: 26px;
  }
  .cta-inner {
    border-radius: 24px;
  }
  .h-panel {
    width: 85vw;
    min-height: 340px;
  }
  .stack-card {
    min-height: 320px;
  }
  .cf-wrap {
    border-radius: 24px;
  }
  .cf-row {
    grid-template-columns: 1fr;
  }
  .cf-form .btn {
    align-self: stretch;
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  #preloader,
  #cursor {
    display: none;
  }
}

/* ---------- CLOTHESLINE / CARDS ----------
  .line-wrap{
    position:relative;
    margin-top:40px;
  }

  .line-svg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
    pointer-events:none;
  }

  .marquee{
    width:100%;
    overflow:hidden;
    position:relative;
    height:420px;
  }

  .marquee-track{
    position:relative;
    width:100%;
    height:100%;
  }

  .card{
    position:absolute;
    top:90px;
    left:0;
    background:#fff;
    border-radius:18px;
    width:260px;
    box-shadow:0 12px 30px rgba(0,0,0,0.09);
    padding:10px 10px 20px;
    will-change:transform;
  }

  .card .pin{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    width:26px;
    height:26px;
    background:var(--green);
    border-radius:6px;
    box-shadow:0 3px 6px rgba(0,0,0,0.2);
  }

  .card img{
    width:100%;
    height:190px;
    object-fit:cover;
    border-radius:12px;
    display:block;
  }

  .card .info{
    padding:14px 6px 0;
  }
  .card .info h3{
    font-size:17px;
    font-weight:700;
  }
  .card .info p{
    font-size:13px;
    color:var(--gray-text);
    margin-top:4px;
  } */

/* ---------- Circle Reveal (Our Work) ---------- */
.circle-reveal {
  height: 280vh;
  position: relative;
  background: var(--blush);
}
.cr-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  /* background: var(--blush); */
}
.cr-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  /* background-image:
    repeating-linear-gradient(
      -45deg,
      transparent 0 20px,
      rgba(255, 17, 85, 0.08) 20px 21px
    ),
    repeating-linear-gradient(
      45deg,
      transparent 0 20px,
      rgba(14, 10, 16, 0.05) 20px 21px
    ); */
  pointer-events: none;
}
.cr-intro {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 7vh;
  text-align: center;
  z-index: 0;
}
.cr-intro .tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.cr-intro h2 {
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 800;
  color: var(--ink);
}
.cr-side {
  position: absolute;
  top: 50%;
  font-family: "Sora";
  font-weight: 800;
  font-size: clamp(60px, 13vw, 190px);
  line-height: 1;
  letter-spacing: -0.02em;
  /* color: rgba(255, 17, 85, 0.1); */
  color:  #0e010561;
  
   /* color: #C98A9C; */
   /* color:#8D6A87; */


  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
.cr-side-left {

    bottom:  -40%;
  left: 0;
  transform: translate(-38%, -50%);
}
.cr-side-right {
   top: 60%;
  right: 0;
  transform: translate(38%, -50%);
}
@media (max-width: 900px) {
  .cr-side {
    display: none;
  }
}
.cr-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  clip-path: circle(18% at 50% 42%);
  will-change: clip-path;
  background: var(--ink);
}
.cr-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: scale(1.12);
  will-change: transform;
}
.cr-content .head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.cr-content .head .tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cr-content .head .tag::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--pink);
}
.cr-content .head h2 {
  color: #fff;
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.12;
   padding:0 20px;
}
.cr-content .head h2 i {
  font-style: normal;
  color: var(--pink);
  /* padding:0 10px; */
}
.cr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cr-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/4.4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
  cursor: pointer;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.cr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(255, 17, 85, 0.3);
}
.cr-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(14, 10, 16, 0.85));
}
.cr-card .mesh {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 18px,
    rgba(255, 255, 255, 0.09) 18px 19px
  );
}
.cr-card .k {
  position: relative;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink-soft);
  margin-bottom: 8px;
}
.cr-card h3 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  line-height: 1.3;
}
.cr-card .arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transform: scale(0) rotate(-45deg);
  transition: transform 0.4s var(--ease);
}
.cr-card:hover .arrow {
  transform: scale(1) rotate(0);
}
.cr-card.g1 {
  background: linear-gradient(150deg, #ff1155, #8b0f3f);
}
.cr-card.g2 {
  background: linear-gradient(150deg, #241c26, #3a2140);
}
.cr-card.g3 {
  background: linear-gradient(150deg, #ff5c8a, #d6003f);
}
.cr-card.g4 {
  background: linear-gradient(150deg, #3a2140, #ff1155);
}
.cr-card.g5 {
  background: linear-gradient(150deg, #1b1420, #5e1030);
}
.cr-card.g6 {
  background: linear-gradient(150deg, #d6003f, #2a0f1c);
}
.cr-card.g7 {
  background: linear-gradient(150deg, #8b0f3f, #241c26);
}
.cr-card.g8 {
  background: linear-gradient(150deg, #ff1155, #d6003f);
}
@media (max-width: 1024px) {
  .cr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cr-card:nth-child(n + 7) {
    display: none;
  }
}
@media (max-width: 640px) {
  .cr-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .cr-card {
    padding: 14px;
    border-radius: 14px;
  }
  .cr-card h3 {
    font-size: 14px;
  }
  .cr-card:nth-child(n + 5) {
    display: none;
  }
  .cr-content {
    padding: 4vh 5vw;
  }
  .circle-reveal {
    height: 220vh;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cr-mask {
    clip-path: none !important;
  }
  .cr-content {
    transform: none !important;
  }
  .circle-reveal {
    height: auto;
  }
  .cr-sticky {
    position: static;
    height: auto;
    padding: 80px 0;
  }
  .cr-intro {
    display: none;
  }
}

/* ---------- Clothesline card carousel (inside circle reveal) ---------- */
.cl-wrap {
  position: relative;
  margin-top: 10px;
}
.cl-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.cl-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 330px;
}
.cl-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.cl-card {
  position: absolute;
  top: 40px;
  left: 0;
  width: 210px;
  height: 270px;
  cursor: pointer;
  will-change: transform;
}
.cl-card .pin {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  background: var(--pink);
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  z-index: 3;
}
.cl-card .media {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}
.cl-card .media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.cl-card .media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    transparent 75%
  );
  opacity: 0.55;
  transition: opacity 0.35s var(--ease);
}
.cl-card:hover .media::after {
  opacity: 1;
}
.cl-card:hover .media img {
  transform: scale(1.08);
}
.cl-card .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 16px;
}
.cl-card .info .k {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink-soft);
}
.cl-card .info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
  line-height: 1.3;
}
@media (max-width: 640px) {
  .cl-marquee {
    height: 260px;
  }
  .cl-card {
    width: 160px;
    height: 210px;
    top: 30px;
  }

  .hero h1 {
    padding: 0;
  }
}
/* Nav + footer logo image sizing (real logo file) */
  .logo img.brand-mark, .f-logo img.brand-mark{
    height:64px;
    width:auto;
    display:block;
  }
  .f-logo img.brand-mark{ height:72px; margin-bottom:4px; }
  .logo{ display:flex; align-items:center; gap:10px; }
  @media (max-width:640px){
    .logo img.brand-mark{ height:55px; }
  }



/* Pre loader  */
   #preloader{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:20px; }

  .pl-mark{ width:150px; height:auto; overflow:visible; }

  /* Stage 1: the exact outline of your logo draws itself */
  .pl-outline{
    fill:none;
    stroke:#fff;
    stroke-width:5;
    stroke-linejoin:round;
    stroke-linecap:round;
    stroke-dasharray:2200;
    stroke-dashoffset:2200;
    animation:
      plDraw 1.3s cubic-bezier(.65,0,.35,1) forwards,
      plOutlineOut .4s ease-in 1.3s forwards;
  }
  /* Stage 2: solid logo fades in on top, exactly matching the outline */
  .pl-fill{
    fill:#fff;
    opacity:0;
    transform-box: fill-box;
    transform-origin: center;
    animation:
      plFillIn .5s ease-out 1.2s forwards,
      plPulse 1.8s ease-in-out 1.85s infinite;
  }
  @keyframes plDraw{ to{ stroke-dashoffset:0; } }
  @keyframes plOutlineOut{ to{ opacity:0; } }
  @keyframes plFillIn{ to{ opacity:1; } }
  @keyframes plPulse{
    0%,100%{ transform:scale(1);    filter:drop-shadow(0 0 16px rgba(255,17,85,.35)); }
    50%    { transform:scale(1.05); filter:drop-shadow(0 0 32px rgba(255,17,85,.6)); }
  }

  #preloader .pl-word{ opacity:0; animation: plWordIn .5s ease-out 1.35s forwards; }
  @keyframes plWordIn{ to{ opacity:1; } }

/* ================================================
   SERVICE DETAIL PAGES (/services/*.html)
================================================ */
.breadcrumb{
  display:flex;align-items:center;justify-content:center;gap:8px;
  font-size:13px;font-weight:500;color:var(--gray);margin-bottom:22px;flex-wrap:wrap;
}
.breadcrumb a:hover{color:var(--pink)}
.breadcrumb i{font-size:9px;color:var(--pink-soft)}
.breadcrumb span{color:var(--ink-2);font-weight:600}
.page-hero{min-height:auto;padding:150px 0 76px}
.page-hero .hero-copy{max-width:720px}
.icon-badge{
  width:64px;height:64px;border-radius:18px;margin:0 auto 20px;
  background:linear-gradient(145deg,var(--pink),var(--pink-deep));
  display:flex;align-items:center;justify-content:center;
  font-size:26px;color:#fff;box-shadow:0 20px 40px rgba(255,17,85,.32);
}
.about-grid.flip .about-visual{order:2}
.related-services{background:#fff;padding:100px 0}
@media (max-width:640px){
  .page-hero{padding:130px 0 60px}
}

/* ---------- Punchy page-hero variant (uppercase headline + bg image/graph) ---------- */
.punch-hero.page-hero .hero-copy{max-width:900px}
.punch-hero h1{
  text-transform:uppercase;
  letter-spacing:-0.01em;
}
.punch-hero p.lead{max-width:640px}
.punch-hero{
  --pink: #b23a5c;
  --pink-deep: #7d2643;
  --pink-soft: #f3dbe0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.punch-hero .hero-grid{position:relative;z-index:1}
.punch-hero .chip{z-index:1}
.punch-hero .scroll-hint{z-index:1}
.punch-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,246,249,.72);
  z-index:0;
  pointer-events:none;
}
.punch-hero.hero-bg-seo{background-image:url('../images/seobackground.png');}
.punch-hero.hero-bg-webdev{background-image:url('../images/websitebackground.png');}
.punch-hero.hero-bg-ppc{background-image:url('../images/ppchero.png');}
.punch-hero.hero-bg-smm{background-image:url('../images/smmbackground.png');}
.punch-hero.hero-bg-app{background-image:url('../images/Appbackground.png');}
.punch-hero.hero-bg-uiux{background-image:url('../images/uiuxbackground.png');}
.punch-hero.hero-bg-content{background-image:url('../images/contentbackground.png');}
.punch-hero.hero-bg-branding{background-image:url('../images/brandingbackground.png');}
.punch-hero.hero-bg-portfolio{background-image:url('../images/portfolio.png');}

/* Inline SVG decorative background fallback (used until a page has a real bg photo) */
.punch-hero .hero-graph{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  overflow:hidden;
}
.punch-hero .hero-graph svg{
  position:absolute;
  opacity:.18;
}
.punch-hero .hero-graph .g-left{
  left:2%;
  bottom:6%;
  width:min(380px,34vw);
  height:auto;
}
.punch-hero .hero-graph .g-right{
  right:3%;
  top:10%;
  width:min(360px,30vw);
  height:auto;
}

/* ---------- Quote Popup Modal ---------- */
body.qm-lock{
  overflow:hidden;
}
.qm-overlay{
  position:fixed;
  inset:0;
  background:rgba(14,10,16,0.62);
  backdrop-filter:blur(4px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:9999;
  opacity:0;
  visibility:hidden;
  transition:opacity .35s var(--ease), visibility .35s var(--ease);
}
.qm-overlay.show{
  opacity:1;
  visibility:visible;
}
.qm-box{
  position:relative;
  width:min(560px,100%);
  max-height:90vh;
  overflow-y:auto;
  scrollbar-width:none;
  -ms-overflow-style:none;
  background:#fff;
  border-radius:28px;
  box-shadow:0 40px 90px rgba(14,10,16,0.35);
  padding:clamp(28px,4vw,44px);
  transform:translateY(24px) scale(.97);
  transition:transform .35s var(--ease);
}
.qm-box::-webkit-scrollbar{
  display:none;
}
.qm-overlay.show .qm-box{
  transform:translateY(0) scale(1);
}
.qm-close{
  position:absolute;
  top:18px;
  right:18px;
  width:38px;
  height:38px;
  border:none;
  border-radius:50%;
  background:var(--blush);
  color:var(--ink);
  font-size:22px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .3s,color .3s,transform .3s;
}
.qm-close:hover{
  background:var(--pink);
  color:#fff;
  transform:rotate(90deg);
}
.qm-head{
  margin-bottom:22px;
  padding-right:36px;
}
.qm-head .tag{
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--pink);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}
.qm-head .tag::before{
  content:"";
  width:28px;
  height:2px;
  background:var(--pink);
}
.qm-head h3{
  font-family:"Sora";
  font-size:clamp(22px,3vw,26px);
  line-height:1.2;
  margin-bottom:8px;
}
.qm-head p{
  color:var(--gray);
  font-size:14.5px;
  line-height:1.6;
}
.qm-form{
  padding:0;
  gap:18px;
}
@media (max-width:640px){
  .qm-box{
    border-radius:22px;
    padding:28px 22px;
  }
}
/* 
@media (min-width: 1100px) {
  .hero h1 {
    padding-left: 42px;
    padding-right: 42px;
  }
} */
/* Base: 1200px+ (Standard padding) */
@media (min-width: 1200px) {
  .hero h1 {
    padding-left: 42px;
    padding-right: 42px;
  }
}

/* XL: 1280px+ (Thodi kam) */
@media (min-width: 1280px) {
  .hero h1 {
    padding-left: 50px;
    padding-right: 50px;
  }
}

/* 2XL: 1536px+ (Aur kam) */
@media (min-width: 1536px) {
  .hero h1 {
           padding-left: 50px;
        padding-right: 50px;
  }
}

/* 3XL: 1920px+ (Minimal) */
@media (min-width: 1920px) {
  .hero h1 {
           padding-left: 50px;
        padding-right: 50px;
  }
}

/* ==================================================
   PORTFOLIO PAGE — premium bento grid
================================================== */

/* Filters */
.pf-filters{
  display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin-bottom:46px;
}
.pf-filter{
  padding:10px 22px;border-radius:100px;border:1.5px solid var(--pink-soft);
  background:#fff;color:var(--ink-2);font-weight:600;font-size:14px;cursor:pointer;
  transition:.3s var(--ease);
}
.pf-filter:hover{border-color:var(--pink);color:var(--pink)}
.pf-filter.active{background:var(--pink);border-color:var(--pink);color:#fff}

/* Bento grid */
.pf-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:minmax(300px,auto);
  grid-auto-flow:dense;
  gap:26px;
}
.pf-grid .card{aspect-ratio:auto}
.card.g7{background:linear-gradient(150deg, #8b0f3f, #241c26);}
.card.g8{background:linear-gradient(150deg, #ff1155, #d6003f);}
.pf-grid .card.featured{grid-column:span 2;grid-row:span 2}
.pf-grid .card.hide{display:none}

/* Stronger bottom-scrim than the base .card so text stays legible over busy photos */
.pf-grid .card::after{
  background:linear-gradient(transparent 30%, rgba(14,10,16,.92) 68%);
}
.pf-grid .card h3{font-size:18px;line-height:1.28}
.pf-grid .card.featured h3{font-size:23px}

.pf-ribbon{
  position:absolute;top:22px;left:22px;z-index:1;
  display:inline-flex;align-items:center;gap:6px;
  padding:7px 14px;border-radius:100px;
  background:rgba(255,255,255,.14);backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.35);
  font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#fff;
}
.pf-ribbon i{color:#ffd76a}

.pf-card-foot{position:relative;z-index:1}
.pf-tags{display:flex;flex-wrap:wrap;gap:6px;margin:10px 0 12px}
.pf-tags span{
  font-size:10px;font-weight:600;padding:4px 10px;border-radius:100px;
  background:rgba(255,255,255,.14);color:#fff;backdrop-filter:blur(4px);
}
.pf-metric{
  display:inline-flex;align-items:center;gap:8px;
  font-size:13px;font-weight:700;color:#fff;
}
.pf-metric i{color:#4ee18f}

@media (max-width:1024px){
  .pf-grid{grid-template-columns:repeat(2,1fr)}
  .pf-grid .card.featured{grid-column:span 2;grid-row:span 1}
}
@media (max-width:640px){
  .pf-grid{grid-template-columns:1fr}
  .pf-grid .card.featured{grid-column:span 1}
}