:root {
  --bg: #500a4a;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --primary: #350b96;
  --primary-600: #32037e;
  --accent: #ce2d70;
  --accents: #ce2d2dad;
  --white: #ffffff;
  --white-rgb: 255, 255, 255;
  --social-size: clamp(34px, 3.5vw, 48px);
  --social-font: clamp(16px, 1.6vw, 24px);
  --social-gap: clamp(10px, 1.25vw, 18px);
  --work: #3a256a;
  --about-start: rgba(44, 22, 90, 0.98);
}

* {
  box-sizing: border-box;
}

html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  font-family:
    Roboto,
    system-ui,
    -apple-system,
    Segoe UI,
    "Helvetica Neue",
    Arial,
    sans-serif;
  background:
    radial-gradient(1200px 600px at 20% 0%, #0b3a64 0%, var(--bg) 45%),
    conic-gradient(
      from 180deg at 30% 60%,
      #081227 0deg,
      #0b1020 90deg,
      #081227 180deg,
      #0b1020 270deg,
      #081227 360deg
    );
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header.header-hidden {
  transform: translateY(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header,
.site-footer {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: none;
}

.site-header .container {
  padding: 10px 12px;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  text-decoration: none;
}

.logo img {
  display: block;
  height: 60px;
  width: auto;
  -webkit-user-drag: none;
  user-select: none;
}

.glass {
  background: rgba(111, 0, 255, 0.11);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border-bottom: 1px solid rgba(255, 0, 179, 0.247);
}

.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.brand {
  justify-self: start;
}

.nav {
  justify-self: center;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}

.nav a {
  font-family:
    Jost,
    Roboto,
    system-ui,
    -apple-system,
    Segoe UI,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-weight: 700;
  font-size: 1.225rem;
  color: var(--text);
  text-decoration: none;
  opacity: 0.95;
  transition:
    color 0.25s ease-in-out,
    opacity 0.25s ease-in-out;
}

.nav a:hover {
  color: var(--accent);
  opacity: 1;
}

.hamburger {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s ease-in-out;
}

.hamburger:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.hamburger i {
  font-size: 20px;
  line-height: 1;
}

.drawer-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  cursor: pointer;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 999;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 360px);
  background: rgba(15, 23, 42, 0.9);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding: 16px;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  display: grid;
  gap: 12px;
}

.sidebar-nav a {
  color: var(--text);
  text-decoration: none;
  font-family:
    Jost,
    Roboto,
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  opacity: 0.95;
  transition:
    color 0.25s ease-in-out,
    opacity 0.25s ease-in-out;
}

.sidebar-nav a:hover {
  color: var(--accent);
  opacity: 1;
}

.sidebar-socials {
  display: none;
  border-top: 1px solid rgba(var(--white-rgb), 0.12);
  margin-top: 16px;
  padding-top: 16px;
}

.socials {
  justify-self: end;
}

.socials,
.sidebar-socials {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--social-gap);
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.socials a,
.sidebar-socials a {
  width: var(--social-size);
  height: var(--social-size);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--white-rgb), 0.9);
  background-color: rgba(var(--white-rgb), 0.12);
  border: 1px solid rgba(var(--white-rgb), 0.2);
  font-size: var(--social-font);
  text-decoration: none;
  transition:
    background-color 0.3s ease-in-out,
    color 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
}

.socials a:hover,
.sidebar-socials a:hover {
  background-color: var(--accent);
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6,
.banner-title,
.section-title,
.work-item .step,
.counter-number {
  font-family:
    Jost,
    Roboto,
    system-ui,
    -apple-system,
    Segoe UI,
    "Helvetica Neue",
    Arial,
    sans-serif;
  line-height: 1.25;
  margin-top: 0.5em;
  margin-bottom: 0.4em;
}

p {
  color: var(--muted);
}

small {
  color: var(--muted);
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .header-row {
    gap: 12px;
    grid-template-columns: 1fr auto auto;
  }

  .logo img {
    height: 64px;
  }
}

@media (max-width: 720px) {
  .logo img {
    height: 52px;
  }

  .hamburger {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 500px) {
  .site-header .socials {
    display: none !important;
  }

  .sidebar-socials {
    display: flex;
  }
}

@media (max-width: 420px) {
  .logo img {
    height: 44px;
  }

  .hamburger {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }
}

.hero {
  background: none;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  margin: 0;
  padding: 24px 0 24px;
  min-height: clamp(650px, 72vh, 840px);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: -200px;
  height: calc(100% + 200px);
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15)),
    url("../image/bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.btn-primary {
  appearance: none;
  border: none;
  background: linear-gradient(180deg, var(--primary), var(--primary-600));
  color: var(--white);
  padding: 18px 36px;
  font-size: 1.12rem;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  transition:
    box-shadow 0.4s ease,
    background 0.35s ease,
    transform 0.35s ease;
  position: relative;
  z-index: 0;
  overflow: visible;
}

.btn-layer-wrap {
  position: relative;
  display: inline-block;
}

.btn-layer-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--white-rgb), 0.9);
  transform: translate(0, 0);
  opacity: 0;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
  z-index: 0;
  pointer-events: none;
}

.btn-layer-wrap:hover .btn-primary {
  background: var(--accent);
  box-shadow: none;
}

.btn-layer-wrap:hover::before {
  transform: translate(7px, 7px);
  opacity: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: inherit;
}

.hero-col {
  height: 100%;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-col:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  width: 100%;
  max-width: 60ch;
}

.hero-col:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
  width: min(520px, 90%);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

.hero-visual .hero-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.18);
  transform-origin: center;
}

.hero-gifts {
  position: relative;
  display: grid;
  place-items: center;
  transform-origin: center;
  margin-top: 270px;
}

.hero-gifts img {
  position: absolute;
  max-width: 76%;
  height: auto;
  object-fit: contain;
}

.hero-gifts img:nth-child(1) {
  transform: translate(210px, -120px) scale(1);
}

.hero-gifts img:nth-child(2) {
  transform: translate(150px, -300px) scale(1.2);
}

.hero-gifts img:nth-child(3) {
  transform: translate(-150px, -300px) scale(0.8);
}

.hero-gifts img:nth-child(4) {
  transform: translate(210px, 130px) scale(0.84);
}

.hero-gifts img:nth-child(5) {
  transform: translate(-270px, 20px) scale(1);
}

.hero-gifts img:nth-child(6) {
  transform: translate(250px, 220px) scale(1.2);
}

.hero-gifts img:nth-child(7) {
  transform: translate(-230px, -150px) scale(1);
}

.hero-gifts img:nth-child(8) {
  transform: translate(-180px, 220px) scale(1.1);
}

.hero-shapes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  width: 100%;
}

.hero-shapes img {
  display: block;
  height: clamp(46px, 5.4vw, 64px);
  width: auto;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

.hero-shapes img.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-shapes--top {
  margin-bottom: 36px;
  justify-content: flex-start;
}

.hero-shapes--bottom {
  margin-top: -80px;
  justify-content: flex-end;
}

.hero-title {
  font-family:
    Jost,
    Roboto,
    system-ui,
    -apple-system,
    Segoe UI,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.1;
  margin: 8px 0;
}

.hero-divider {
  border: 0;
  height: 2px;
  background: rgba(var(--white-rgb), 0.14);
  margin: 24px 0 48px;
}

.hero-subtitle {
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 28px);
  margin: 0 0 24px 0;
}

.hero-desc {
  color: var(--muted);
  margin: 0 0 36px 0;
  max-width: none;
}

.hero-content .reveal-item {
  opacity: 0;
  transform: translateX(-36px);
  transition:
    opacity 0.9s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.hero-content .reveal-item.revealed {
  opacity: 1;
  transform: translateX(0);
}

.hero .btn-primary {
  align-self: flex-start;
  width: auto;
}

.hero-gifts img.gift-1 {
  transform-origin: center;
  animation: gift1-cycle 5.8s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes gift1-cycle {
  0% {
    opacity: 0;
    transform: translate(210px, -120px) scale(0.2);
  }

  10% {
    opacity: 1;
    transform: translate(210px, -120px) scale(1);
  }

  12% {
    transform: translate(207px, -120px) scale(1);
  }

  14% {
    transform: translate(213px, -120px) scale(1);
  }

  16% {
    transform: translate(208px, -120px) scale(1);
  }

  18% {
    transform: translate(212px, -120px) scale(1);
  }

  20% {
    transform: translate(210px, -120px) scale(1);
  }

  38% {
    opacity: 1;
    transform: translate(210px, -120px) scale(1);
  }

  48% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.1);
  }

  100% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.1);
  }
}

.hero-gifts img.gift-2 {
  transform-origin: center;
  animation: gift2-cycle 5.8s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes gift2-cycle {
  0% {
    opacity: 0;
    transform: translate(150px, -300px) scale(0.2);
  }

  10% {
    opacity: 1;
    transform: translate(150px, -300px) scale(1.2);
  }

  12% {
    transform: translate(147px, -300px) scale(1.2);
  }

  14% {
    transform: translate(153px, -300px) scale(1.2);
  }

  16% {
    transform: translate(148px, -300px) scale(1.2);
  }

  18% {
    transform: translate(152px, -300px) scale(1.2);
  }

  20% {
    transform: translate(150px, -300px) scale(1.2);
  }

  38% {
    opacity: 1;
    transform: translate(150px, -300px) scale(1.2);
  }

  48% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.1);
  }

  100% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.1);
  }
}

.hero-gifts img.gift-3 {
  transform-origin: center;
  animation: gift3-cycle 5.8s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes gift3-cycle {
  0% {
    opacity: 0;
    transform: translate(-150px, -300px) scale(0.2);
  }

  10% {
    opacity: 1;
    transform: translate(-150px, -300px) scale(0.8);
  }

  12% {
    transform: translate(-153px, -300px) scale(0.8);
  }

  14% {
    transform: translate(-147px, -300px) scale(0.8);
  }

  16% {
    transform: translate(-152px, -300px) scale(0.8);
  }

  18% {
    transform: translate(-148px, -300px) scale(0.8);
  }

  20% {
    transform: translate(-150px, -300px) scale(0.8);
  }

  38% {
    opacity: 1;
    transform: translate(-150px, -300px) scale(0.8);
  }

  48% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.1);
  }

  100% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.1);
  }
}

.hero-gifts img.gift-4 {
  transform-origin: center;
  animation: gift4-cycle 5.8s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes gift4-cycle {
  0% {
    opacity: 0;
    transform: translate(210px, 130px) scale(0.2);
  }

  10% {
    opacity: 1;
    transform: translate(210px, 130px) scale(0.84);
  }

  12% {
    transform: translate(207px, 130px) scale(0.84);
  }

  14% {
    transform: translate(213px, 130px) scale(0.84);
  }

  16% {
    transform: translate(208px, 130px) scale(0.84);
  }

  18% {
    transform: translate(212px, 130px) scale(0.84);
  }

  20% {
    transform: translate(210px, 130px) scale(0.84);
  }

  38% {
    opacity: 1;
    transform: translate(210px, 130px) scale(0.84);
  }

  48% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.1);
  }

  100% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.1);
  }
}

.hero-gifts img.gift-5 {
  transform-origin: center;
  animation: gift5-cycle 5.8s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes gift5-cycle {
  0% {
    opacity: 0;
    transform: translate(-270px, 20px) scale(0.2);
  }

  10% {
    opacity: 1;
    transform: translate(-270px, 20px) scale(1);
  }

  12% {
    transform: translate(-273px, 20px) scale(1);
  }

  14% {
    transform: translate(-267px, 20px) scale(1);
  }

  16% {
    transform: translate(-272px, 20px) scale(1);
  }

  18% {
    transform: translate(-268px, 20px) scale(1);
  }

  20% {
    transform: translate(-270px, 20px) scale(1);
  }

  38% {
    opacity: 1;
    transform: translate(-270px, 20px) scale(1);
  }

  48% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.1);
  }

  100% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.1);
  }
}

.hero-gifts img.gift-6 {
  transform-origin: center;
  animation: gift6-cycle 5.8s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes gift6-cycle {
  0% {
    opacity: 0;
    transform: translate(250px, 220px) scale(0.2);
  }

  10% {
    opacity: 1;
    transform: translate(250px, 220px) scale(1.2);
  }

  12% {
    transform: translate(247px, 220px) scale(1.2);
  }

  14% {
    transform: translate(253px, 220px) scale(1.2);
  }

  16% {
    transform: translate(248px, 220px) scale(1.2);
  }

  18% {
    transform: translate(252px, 220px) scale(1.2);
  }

  20% {
    transform: translate(250px, 220px) scale(1.2);
  }

  38% {
    opacity: 1;
    transform: translate(250px, 220px) scale(1.2);
  }

  48% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.1);
  }

  100% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.1);
  }
}

.hero-gifts img.gift-7 {
  transform-origin: center;
  animation: gift7-cycle 5.8s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes gift7-cycle {
  0% {
    opacity: 0;
    transform: translate(-230px, -150px) scale(0.2);
  }

  10% {
    opacity: 1;
    transform: translate(-230px, -150px) scale(1);
  }

  12% {
    transform: translate(-233px, -150px) scale(1);
  }

  14% {
    transform: translate(-227px, -150px) scale(1);
  }

  16% {
    transform: translate(-232px, -150px) scale(1);
  }

  18% {
    transform: translate(-228px, -150px) scale(1);
  }

  20% {
    transform: translate(-230px, -150px) scale(1);
  }

  38% {
    opacity: 1;
    transform: translate(-230px, -150px) scale(1);
  }

  48% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.1);
  }

  100% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.1);
  }
}

.hero-gifts img.gift-8 {
  transform-origin: center;
  animation: gift8-cycle 5.8s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes gift8-cycle {
  0% {
    opacity: 0;
    transform: translate(-180px, 220px) scale(0.2);
  }

  10% {
    opacity: 1;
    transform: translate(-180px, 220px) scale(1.1);
  }

  12% {
    transform: translate(-183px, 220px) scale(1.1);
  }

  14% {
    transform: translate(-177px, 220px) scale(1.1);
  }

  16% {
    transform: translate(-182px, 220px) scale(1.1);
  }

  18% {
    transform: translate(-178px, 220px) scale(1.1);
  }

  20% {
    transform: translate(-180px, 220px) scale(1.1);
  }

  38% {
    opacity: 1;
    transform: translate(-180px, 220px) scale(1.1);
  }

  48% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.1);
  }

  100% {
    opacity: 0;
    transform: translate(0px, 0px) scale(0.1);
  }
}

@media (max-width: 1200px) {
  .hero-gifts {
    transform: scale(0.72);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    row-gap: clamp(64px, 9.5vw, 128px);
  }

  .hero-col:first-child {
    justify-content: center;
    align-items: center;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
    max-width: min(76ch, 100%);
  }

  .hero-col {
    height: auto;
  }

  .hero-col:last-child {
    align-items: center;
    justify-content: center;
    padding-top: clamp(64px, 9.5vw, 128px);
    padding-bottom: clamp(36px, 6vw, 84px);
  }

  .hero .btn-primary {
    align-self: center;
  }

  .hero-desc {
    width: auto !important;
    max-width: none;
  }
}

@media (max-width: 1100px) {
  .hero-gifts {
    transform: scale(0.68);
  }
}

@media (max-width: 1000px) {
  .hero-gifts {
    transform: scale(0.64);
  }
}

@media (max-width: 900px) {
  .hero-gifts {
    transform: scale(0.6);
  }

  .hero-visual {
    width: min(420px, 100%);
  }

  .hero-visual .hero-base {
    transform: scale(1.12);
  }
}

@media (max-width: 650px) {
  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-shapes--bottom {
    order: 1;
    margin-top: -10px;
    margin-bottom: 30px;
  }

  .btn-layer-wrap {
    order: 2;
    margin-bottom: 0;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
  }
  .btn-layer-wrap::before {
    content: "";
    position: absolute;
    left: 28%;
    top: 0;
    width: calc(100% - 225px);
    height: 100%;
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 2px 16px 0 rgba(80, 10, 74, 0.1);
    z-index: 0;
    pointer-events: none;
    transition:
      width 0.2s,
      height 0.2s;
  }
  .btn-layer-wrap button {
    position: relative;
    z-index: 1;
    min-width: 140px;
    min-height: 48px;
  }
}

.work-section {
  padding: 64px 0 48px;
  margin: 0px;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: url("../image/work/bg.png") center center / cover no-repeat fixed !important;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.work-header {
  text-align: center;
  margin-bottom: 32px;
}

.work-label {
  color: var(--accent);
  font-family: "Jost", Roboto, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.work-title {
  font-family: "Jost", Roboto, system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 64px;
  line-height: 1.2;
}

.work-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 36px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.work-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 260px;
  transition: transform 0.18s cubic-bezier(0.4, 1.4, 0.6, 1);
  cursor: pointer;
}

.work-step-img-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.work-step-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
  background: var(--white);
  border: 6px solid var(--white);
  transition: border-color 0.2s;
}

.work-step-number {
  position: absolute;
  top: -20px;
  right: 0px;
  background: var(--white);
  color: var(--work);
  font-family: "Jost", Roboto, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--work);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  z-index: 2;
  line-height: 1.05;
  width: 54px;
  height: 54px;
}

.work-step-title {
  font-size: 1.32rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  transition: color 0.2s;
}

.work-step-desc {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.work-step-arrow {
  width: 150px;
  height: 48px;
  align-self: center;
  margin: 0 -70px;
  flex-shrink: 0;
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 50%;
  transform: translateY(-250%);
}

.work-step:hover .work-step-number,
.work-step:focus .work-step-number,
.work-step.active .work-step-number {
  background: var(--accent);
  color: var(--white);
  border-color: transparent;
}

.work-step:hover .work-step-title,
.work-step:focus .work-step-title,
.work-step.active .work-step-title {
  color: var(--accent);
}

.work-step-title:hover ~ .work-step-number,
.work-step-desc:hover ~ .work-step-number {
  background: var(--accent);
  color: var(--text);
}

.work-step-desc-animate {
  opacity: 0;
  transform: translateX(-48px);
  transition: none;
}

.work-step-desc-animate.work-step-desc-animated {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-header-animate {
  opacity: 0;
  transform: scale(0.7);
  transition: none;
}

.work-header-animate.work-header-animated {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 950px) {
  .work-step-arrow {
    display: none !important;
  }
}

.about-section {
  padding: 56px 0 100px;
  background: url("../image/bg.jpg") center center / cover no-repeat !important;
  width: 100vw;
  min-height: 650px;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.about-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  color: var(--text);
  font-family: "Jost", Roboto, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.about-subtitle {
  text-align: center;
  font-family: "Jost", Roboto, system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 100px;
}

.about-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 64px;
}

.about-stat {
  background: var(--about-start);
  border-radius: 0;
  box-shadow: none;
  width: 320px;
  min-width: 220px;
  max-width: 100%;
  padding: 38px 18px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.about-stat-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 48px solid var(--accent);
  border-right: 48px solid transparent;
  z-index: 2;
}

.about-stat-icon {
  margin-bottom: 18px;
  margin-top: 0;
}

.about-stat-icon img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
}

.about-stat-divider {
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 18px 0 18px 0;
}

.about-stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 1px;
  font-family: "Jost", Roboto, system-ui, sans-serif;
}

.about-stat-label {
  font-size: 1.18rem;
  color: var(--white);
  font-family: Roboto, system-ui, sans-serif;
}

@media (max-width: 1200px) {
  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    justify-items: center;
    align-items: stretch;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-stat {
    width: 320px;
    min-width: 220px;
    max-width: 100%;
    height: 370px;
    padding: 38px 18px 32px;
  }

  .about-stat-icon img {
    width: 150px;
    height: 150px;
  }

  .about-stat-divider {
    width: 80px;
  }
}

@media (max-width: 900px) {
  .about-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .about-stat {
    width: 100%;
    min-width: 0;
    padding: 18px 2px 12px;
  }
}

@media (max-width: 650px) {
  .about-section .about-stats {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    max-width: 400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .about-section .about-stat {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 370px !important;
    padding: 28px 8px 22px !important;
  }

  .about-section .about-stat-icon img {
    width: 90px !important;
    height: 90px !important;
  }

  .about-section .about-stat-divider {
    width: 48px !important;
  }
}

.intro-section {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  width: 100%;
  background: none;
  padding: 64px 0 48px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-row {
  opacity: 0;
  transform: translateY(48px) scale(0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  max-width: 1140px;
  margin: 0 0 48px 0;
  padding: 32px 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 2px 24px 0 rgba(44, 22, 90, 0.08);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.2s;
}

.intro-row:last-child {
  margin-bottom: 0;
}

.intro-row--img-left .intro-img {
  order: 0;
}

.intro-row--img-left .intro-text {
  order: 1;
}

.intro-row--img-right .intro-img {
  order: 1;
}

.intro-row--img-right .intro-text {
  order: 0;
  text-align: right;
  justify-content: flex-end;
  align-items: flex-end;
  margin-left: 0;
  margin-right: 0;
}

.intro-row.intro-row-animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.intro-row.intro-row-animated .intro-text {
  opacity: 1;
  transform: translateY(0);
}

.intro-row.intro-row-animated .intro-img img {
  box-shadow: 0 8px 32px 0 rgba(44, 22, 90, 0.18);
  transform: scale(1.06) rotate(-2deg);
}

.intro-header {
  text-align: center;
  margin-bottom: 40px;
}

.intro-header p {
  font-size: 1.18rem;
  color: var(--text);
  margin: 0;
  font-family: "Jost", Roboto, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
  margin-top: -30px;
  max-width: 1150px;
}

.intro-header-animate {
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-header-animate.intro-header-animated {
  opacity: 1;
  transform: scale(1);
}

.intro-label {
  color: var(--accent);
  font-family: "Jost", Roboto, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.intro-title {
  font-family: "Jost", Roboto, system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0;
  margin-bottom: 48px;
  line-height: 1.2;
}

.intro-img {
  flex: 0 0 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-img img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 18px;
  background: var(--white);
  border: 6px solid var(--white);
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.intro-text {
  flex: 1 1 0;
  color: var(--white);
  font-family: "Jost", Roboto, system-ui, sans-serif;
  padding: 0 12px;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
}

.intro-text p {
  font-size: 1.18rem;
  color: var(--text);
  margin: 0;
}

@media (hover: hover) and (pointer: fine) {
  .intro-row:hover .intro-img img,
  .intro-row:focus-within .intro-img img {
    box-shadow: 0 12px 40px 0 #ff5c7c44;
    transform: scale(1.12) rotate(2deg);
    border-color: var(--accent);
  }

  .intro-row:hover .intro-text h3 {
    color: var(--text);
    text-shadow: 0 2px 12px #ff5c7c55;
  }
}

.section {
  max-width: 1440px;
  margin: 2rem auto;
  background: transparent;
  padding: 2rem;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.services {
  position: relative;
  margin: 2rem 0;
  padding: 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.services::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.24)),
    url("../image/accent/bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.services .section-inner {
  max-width: 1200px;
  width: 100%;
  background: transparent;
  padding: 2rem;
  border-radius: 0;
  box-shadow: none;
  color: var(--text);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}

.split-left,
.split-right {
  box-sizing: border-box;
  width: 100%;
}

.split-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-left: 1rem;
}

.split-right {
  position: relative;
  display: block;
}

.split-right .thumb {
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  max-height: 650px;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: calc(80%);
  max-width: 250px;
  opacity: 0;
  transition: opacity 1200ms ease;
}

.split-right .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-right .thumb.visible {
  opacity: 1;
  z-index: 2;
}

.services .split-left .intro-header {
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.services .split-left .intro-header .intro-label,
.services .split-left .intro-header .intro-title,
.services .split-left .intro-header p {
  color: var(--text);
  margin: 0;
  text-align: left;
  font-family: "Jost", Roboto, system-ui, sans-serif;
  font-weight: 400;
}

.services .split-left .intro-header .intro-label,
.services .split-left .intro-header .intro-title {
  font-family: "Jost", Roboto, system-ui, sans-serif;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.btn-wrapper {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 200px;
}

.preview-box {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.98);
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 18px rgb(255, 255, 255);
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  margin-bottom: 30px;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.btn-wrapper:hover .preview-box,
.btn-wrapper:focus-within .preview-box {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.preview-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.08s;
  border: none;
  background: var(--primary);
  color: var(--text);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  height: 60px;
  line-height: 44px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  justify-content: center;
}

.btn-group {
  --btn-h: 60px;
}

.btn:active {
  transform: translateY(1px);
}

.btn:hover {
  background: var(--accent);
}

.btn.secondary:hover {
  background: var(--accent);
}

.btn .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.btn .icon i {
  font-size: 36px;
  line-height: 1;
}

.btn::after {
  display: none;
}

.btn-wrapper::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  max-width: 220px;
  height: calc(var(--btn-h) - 0px);
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transform: translate(-50%, 0) scaleY(0);
  transform-origin: top center;
  transition:
    transform 200ms cubic-bezier(0.2, 0.9, 0.3, 1),
    opacity 120ms ease;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
}

.btn-wrapper:hover::after,
.btn-wrapper:focus-within::after {
  opacity: 1;
  transform: translate(calc(-50% + 8px), 8px) scaleY(1);
}

@media (max-width: 1200px) {
  .intro-row {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 0;
  }

  .services .split-left .intro-header,
  .services .split-left .intro-header .intro-label,
  .services .split-left .intro-header .intro-title,
  .services .split-left .intro-header p,
  .services .split-left .intro-text {
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .services .split-left .intro-img {
    margin: 0 auto;
    justify-content: center;
  }

  .services .split-left .btn-wrapper {
    display: inline-flex;
    flex: 0 0 auto;
    margin: 0 auto;
  }

  .services .split-left .btn {
    width: auto;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .split-right {
    min-height: 550px;
  }

  .split-right .thumb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    max-height: 550px;
  }

  .services {
    min-height: 850px;
  }
}

@media (max-width: 900px) {
  .intro-row {
    flex-direction: column;
    gap: 18px;
    padding: 18px 6px;
    max-width: 98vw;
  }

  .intro-img,
  .intro-text {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .intro-img img {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 640px) {
  .intro-section {
    padding: 32px 0 24px;
  }

  .intro-row {
    margin-bottom: 24px;
    padding: 12px 0;
    border-radius: 12px;
  }

  .intro-img img {
    width: 110px;
    height: 110px;
    border-radius: 10px;
    border-width: 3px;
  }

  .intro-text h3 {
    font-size: 1.2rem;
  }

  .intro-text p {
    font-size: 1rem;
  }

  .services .split-left .btn {
    min-width: 130px;
  }

  .preview-box {
    display: none !important;
    pointer-events: none !important;
  }
}

.site-footer {
  margin-top: 48px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding: 40px 16px;
  align-items: start;
}

.footer-brand .logo img {
  height: 50px;
  width: auto;
}

.footer-desc {
  margin-top: 12px;
  color: var(--muted);
  max-width: 36ch;
}

.footer-socials {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 16px 0 0 0;
  padding: 0;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(var(--white-rgb), 0.06);
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(var(--white-rgb), 0.04);
}

.footer-socials a:hover {
  background: var(--accent);
  color: var(--white);
}

.footer-links {
  min-width: 100px;
  grid-column: span 2;
  margin-left: 50px;
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 12px 0;
  font-weight: 700;
}

.footer-links ul,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.contact-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
}

.contact-list a {
  color: var(--muted);
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--accent);
}

.contact-list i {
  width: 20px;
  text-align: center;
  color: rgba(var(--white-rgb), 0.85);
}

.footer-newsletter .muted {
  margin: 6px 0 12px 0;
  color: var(--muted);
}

/* Reuse app store button styles in footer */
.footer-newsletter .btn-group {
  justify-content: flex-start;
  gap: 0;
  margin-top: 12px;
}

.footer-newsletter .btn-wrapper {
  flex: 0 0 200px;
  align-items: stretch;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.newsletter-form input[type="email"],
.newsletter-form textarea.newsletter-message {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid rgba(var(--white-rgb), 0.13);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
  margin-bottom: 8px;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.newsletter-form input::placeholder,
.newsletter-form textarea.newsletter-message::placeholder {
  color: rgba(226, 232, 240, 0.5);
}

.footer-btn {
  appearance: none;
  border: none;
  background: linear-gradient(180deg, var(--primary), var(--primary-600));
  color: var(--white);
  padding: 18px 36px;
  font-size: 1.12rem;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  transition:
    box-shadow 0.4s ease,
    background 0.35s ease,
    transform 0.35s ease;
  position: relative;
  z-index: 0;
  overflow: visible;
  border-radius: 10px;
  max-width: 200px;
  width: 100%;
  align-self: flex-end;
}

.footer-btn.footer-btn--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.footer-btn:hover,
.footer-btn:focus {
  background: linear-gradient(180deg, var(--primary-600), var(--primary));
  box-shadow: 0 4px 24px 0 rgba(206, 45, 112, 0.18);
  transform: translateY(-2px) scale(1.03);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  margin-top: 18px;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.footer-bottom small {
  color: var(--muted);
}

.footer-policies {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-policies a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-policies a:hover {
  color: var(--accent);
}

.footer-policies span[aria-hidden="true"] {
  opacity: 0.6;
}

/* Policy pages */
.policy-page {
  padding: 28px 0 60px 0;
}

.policy-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px) saturate(120%);
}

.policy-title {
  margin: 0 0 6px 0;
  font-family:
    Jost,
    Roboto,
    system-ui,
    -apple-system,
    Segoe UI,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.4px;
}

.policy-meta {
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.policy-content h2 {
  margin: 22px 0 8px 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.policy-content p {
  margin: 0 0 12px 0;
  color: rgba(226, 232, 240, 0.92);
}

.policy-content ul {
  margin: 0 0 12px 18px;
  color: rgba(226, 232, 240, 0.92);
}

.policy-topbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 20px 0;
}

.policy-topbar a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s ease;
}

.policy-topbar a:hover {
  color: var(--accent);
}

.policy-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 650px) {
  .policy-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .policy-links {
    justify-content: flex-start;
  }
}

.footer-bottom .madeby {
  opacity: 0.8;
}

.footer-panels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 40px 16px 28px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background-image: url("../image/work/bg.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  min-height: 260px;
}

.panel-feature h3 {
  margin: 0 0 8px 0;
  color: var(--text);
  font-weight: 700;
}

.panel-feature p {
  margin: 0;
  color: var(--muted);
}

.panel-image {
  display: block;
  animation: heartbeat 6s ease-in-out infinite;
  will-change: transform;
}

.footer-panels .panel {
  padding: 12px 16px;
}

.panel-image img {
  opacity: 0.5;
  will-change: transform, opacity;
  width: 120%;
  height: 120%;
  max-width: none;
  max-height: none;
  display: block;
  margin: 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  .panel-image img {
    animation: none;
    transform: none;
  }
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(1.06);
  }

  20% {
    transform: scale(0.94);
  }

  30% {
    transform: scale(1.04);
  }

  40% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .panel-image {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .footer-grid {
    display: flex !important;
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-newsletter {
    order: -1;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-newsletter .btn-group {
    width: 100%;
    justify-content: center;
  }

  .footer-newsletter .btn-wrapper {
    margin: 0 auto;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    flex: 1 1 calc(33.33% - 24px);
    min-width: 0;
  }

  .footer-links {
    margin-left: 0 !important;
  }
}

@media (max-width: 900px) {
  .footer-panels .panel-image img {
    display: none;
  }
}

@media (max-width: 650px) {
  body {
    overflow-x: hidden;
  }
  .footer-grid {
    display: flex !important;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-panels {
    flex-direction: column !important;
    display: flex !important;
    align-items: stretch !important;
    gap: 18px !important;
  }
  .footer-panels .panel-image {
    width: 100% !important;
    margin-bottom: 0 !important;
  }
  .footer-panels .panel-feature {
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box;
    display: block !important;
  }

  .footer-newsletter {
    order: -1;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-newsletter .btn-group {
    width: 100%;
    justify-content: center;
  }

  .footer-newsletter .btn-wrapper {
    margin: 0 auto;
  }

  .footer-links,
  .footer-contact {
    order: 0;
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand {
    order: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-contact .contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
  }

  .footer-contact .contact-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }

  .footer-contact .contact-list i {
    width: 20px;
    line-height: 1;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
  }

  .footer-contact .contact-list a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
  }
}
