/* ============================================================
   WebComforts — Aurora design system
   Vanilla CSS + design tokens. No framework.
   ============================================================ */

:root {
  --bg: #070b1f;
  --bg-2: #0d133b;
  --cyan: #04e4ff;
  --cyan-strong: #009cff;
  --cyan-soft: rgba(4, 228, 255, 0.1);
  --cyan-ring: rgba(4, 228, 255, 0.25);
  --grad-mid: #7dd3fc;
  --blue: #3263b9;
  --purple: #593db1;
  --pink: #ff4ecb;
  --ink: #ffffff;
  --text: rgba(255, 255, 255, 0.82);
  --dim: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.05);
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --panel: rgba(10, 15, 40, 0.96);
  --heading: #ffffff;
  --nav-bg: rgba(7, 11, 31, 0.3);
  --nav-bg-scrolled: rgba(7, 11, 31, 0.88);
  --nav-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  --btn-ghost-color: #ffffff;
  --btn-ghost-border: rgba(255, 255, 255, 0.3);
  --grid-line: rgba(255, 255, 255, 0.035);
  --orb-opacity: 0.3;
  --card-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --logo-filter: none;

  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-editorial: "Instrument Serif", Georgia, "Times New Roman", serif;
  --container: 1200px;
  --radius: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 132px;
  color-scheme: dark;
}

html[data-theme="light"] {
  --bg: #eef3f9;
  --bg-2: #ffffff;
  --cyan: #0b5cab;
  --cyan-strong: #084a8a;
  --cyan-soft: rgba(11, 92, 171, 0.12);
  --cyan-ring: rgba(11, 92, 171, 0.3);
  --grad-mid: #1565c0;
  --blue: #1e4d9c;
  --purple: #3f2d8a;
  --pink: #ad1457;
  --ink: #0b1220;
  --text: rgba(11, 18, 32, 0.8);
  --dim: rgba(11, 18, 32, 0.56);
  --line: rgba(15, 35, 70, 0.12);
  --glass: rgba(255, 255, 255, 0.72);
  --surface: #ffffff;
  --surface-strong: #f5f8fc;
  --panel: #ffffff;
  --heading: #0b1220;
  --nav-bg: rgba(238, 243, 249, 0.72);
  --nav-bg-scrolled: rgba(255, 255, 255, 0.94);
  --nav-shadow: 0 10px 36px rgba(15, 35, 70, 0.1);
  --btn-ghost-color: #0b1220;
  --btn-ghost-border: rgba(15, 35, 70, 0.18);
  --grid-line: rgba(15, 35, 70, 0.06);
  --orb-opacity: 0.18;
  --card-shadow: 0 16px 40px rgba(15, 35, 70, 0.08);
  --logo-filter: brightness(0) saturate(100%);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
[x-cloak] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  transition:
    background-color 0.35s ease,
    color 0.35s ease;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.2rem;
}
.container-fluid {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 3.5vw, 2.75rem);
}
.container--wide {
  max-width: 1400px;
}
.section {
  padding: 5.5rem 0;
  scroll-margin-top: 150px;
  position: relative;
  z-index: 1;
}
.section.container,
section.container {
  position: relative;
  z-index: 1;
}
.text-center {
  text-align: center;
}

h1,
h2,
h3,
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
}
.h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin: 0.35em 0 0.6em;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 680px;
}
.gradient-text {
  background: linear-gradient(
    90deg,
    var(--cyan),
    var(--grad-mid),
    var(--pink),
    var(--cyan)
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer {
  to {
    background-position: 300% 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.eyebrow--center {
  justify-content: center;
}
.eyebrow--center::before {
  display: none;
}

/* ---------- aurora background ---------- */
.bg-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-aurora--fixed {
  position: fixed;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: var(--orb-opacity);
}
.orb-1 {
  width: 55vw;
  height: 55vw;
  background: var(--purple);
  top: -20vw;
  left: -15vw;
  animation: drift1 26s ease-in-out infinite alternate;
}
.orb-2 {
  width: 40vw;
  height: 40vw;
  background: var(--blue);
  top: 30vh;
  right: -18vw;
  animation: drift2 32s ease-in-out infinite alternate;
}
.orb-3 {
  width: 30vw;
  height: 30vw;
  background: var(--cyan);
  bottom: -12vw;
  left: 20vw;
  opacity: 0.16;
  animation: drift3 38s ease-in-out infinite alternate;
}
@keyframes drift1 {
  to {
    transform: translate(12vw, 10vh) scale(1.15);
  }
}
@keyframes drift2 {
  to {
    transform: translate(-10vw, -12vh) scale(1.2);
  }
}
@keyframes drift3 {
  to {
    transform: translate(10vw, -8vh) scale(0.9);
  }
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(
    ellipse 90% 70% at 50% 0%,
    #000 40%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 90% 70% at 50% 0%,
    #000 40%,
    transparent 100%
  );
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(6px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease),
    filter 0.9s ease;
  transition-delay: var(--d, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  padding: 0.9rem 2.1rem;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}
.btn--solid {
  background: linear-gradient(120deg, var(--cyan), var(--cyan-strong));
  color: #04122b;
}
.btn--solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(4, 228, 255, 0.35);
  color: #04122b;
}
.btn--ghost {
  background: transparent;
  color: var(--btn-ghost-color);
  border: 1px solid var(--btn-ghost-border);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn--block {
  width: 100%;
}
.btn sup {
  background: #04122b;
  color: var(--cyan);
  font-size: 0.5rem;
  padding: 2px 6px;
  border-radius: 20px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.1rem;
  border-radius: 60px;
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.badge-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2bff88;
  box-shadow: 0 0 0 0 rgba(43, 255, 136, 0.6);
  animation: ping 2s infinite;
}
@keyframes ping {
  70% {
    box-shadow: 0 0 0 9px rgba(43, 255, 136, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(43, 255, 136, 0);
  }
}

.loc {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}
.loc i {
  color: var(--pink);
  font-size: 0.8rem;
}
.flag {
  font-size: 1.7rem;
  line-height: 1;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
.nav--scrolled {
  background: var(--nav-bg-scrolled);
  border-bottom-color: var(--line);
  box-shadow: var(--nav-shadow);
}

.nav__top {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  max-height: 44px;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease;
}
.nav__top.is-hidden {
  max-height: 0;
  opacity: 0;
}
.nav__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.45rem;
  font-size: 0.78rem;
}
.nav__contact {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.nav__contact .flag {
  font-size: 1.15rem;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.25));
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}
.nav__contact a:hover .flag {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(4, 228, 255, 0.5));
}
.nav__toplinks {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__toplinks a {
  color: var(--dim);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.72rem;
  transition: color 0.25s ease;
}
.nav__toplinks a:hover,
.nav__toplinks a.active {
  color: var(--cyan);
}
@media (max-width: 767px) {
  .nav__top-inner {
    justify-content: center;
  }
  .nav__toplinks {
    display: none;
  }
}

.nav__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
}
.nav__logo img {
  height: 20px;
  filter: var(--logo-filter);
}
@media (max-width: 991px) {
  .nav__logo img {
    height: 15px;
  }
}

.nav__links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .nav__links {
    display: flex;
  }
}
.nav__links > li {
  position: relative;
}
.nav__links > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.9rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.nav__links > li > a::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.25rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links > li > a:hover {
  color: var(--cyan);
}
.nav__links > li > a:hover::after {
  transform: scaleX(1);
}
/* Keep hover underline under the label only (exclude chevron / Free badge) */
.nav__links > li > a:has(.nav__link-label)::after {
  display: none;
}
.nav__link-label {
  position: relative;
  display: inline-block;
}
.nav__link-label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links > li > a:hover .nav__link-label::after {
  transform: scaleX(1);
}
.nav__links .bi-chevron-down {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}
.nav__links > li:hover .bi-chevron-down {
  transform: rotate(180deg);
}
.nav__tag {
  background: linear-gradient(120deg, var(--cyan), var(--cyan-strong));
  color: #ffffff;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 20px;
  transform: translateY(-7px);
}

/* mega menu */
.mega {
  position: absolute;
  top: calc(100% + 10px);
  /* centre under the trigger WITHOUT transform, so nothing slides
     horizontally when the panel fades in (width is a fixed 760px on desktop) */
  left: 50%;
  width: 760px;
  max-width: 90vw;
  margin-left: -380px;
  background: var(--panel);
  backdrop-filter: blur(24px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem 1.8rem;
  box-shadow: var(--card-shadow);
}
.mega::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.mega__head {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  transition: color 0.25s ease;
}
.mega__head:hover {
  color: var(--cyan);
}
.mega__head i {
  color: var(--cyan);
}
.mega__cols {
  display: grid;
  gap: 1.4rem;
}
.mega__cols--3 {
  grid-template-columns: repeat(3, 1fr);
}
.mega__cols--2 {
  grid-template-columns: repeat(2, 1fr);
}
.mega__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  text-decoration: none;
}
a.mega__label:hover {
  color: #fff;
}
.mega__label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.mega ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega ul li {
  margin-bottom: 0.45rem;
}
.mega ul a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-size: 0.86rem;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}
.mega ul a:hover {
  color: var(--cyan);
  padding-left: 12px;
}

/* actions */
.nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}
.cartpill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.3rem 1rem 0.3rem 0.3rem;
  border-radius: 60px;
  background: var(--glass);
  border: 1px solid var(--line);
  color: #fff;
  text-decoration: none;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.cartpill:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(4, 228, 255, 0.18);
}
.cartpill__ico {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--cyan), #009cff);
  color: #04122b;
  font-size: 1rem;
}
.cartpill__txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.cartpill__txt b {
  font-size: 0.85rem;
  font-weight: 700;
}
.cartpill__txt small {
  font-size: 0.68rem;
  color: var(--dim);
}
@media (max-width: 575px) {
  .cartpill {
    padding: 0.3rem;
  }
  .cartpill__txt {
    display: none;
  }
}

.iconbtn {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  font-size: 1.05rem;
  text-decoration: none;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.iconbtn:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(4, 228, 255, 0.18);
}
.iconbtn__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.iconbtn__init {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan);
}
.iconbtn__dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2bff88;
  border: 2px solid var(--bg);
}

.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 40px;
  padding: 0 0.95rem 0 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--glass);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.nav-login-btn i {
  font-size: 1rem;
  line-height: 1;
}
.nav-login-btn:hover {
  border-color: rgba(4, 228, 255, 0.45);
  background: rgba(4, 228, 255, 0.12);
  color: var(--cyan);
  transform: translateY(-1px);
}
@media (max-width: 420px) {
  .nav-login-btn {
    padding: 0 0.7rem;
  }
  .nav-login-btn span {
    display: none;
  }
}

/* Main-site account pill (matches tools header) */
.nav-user {
  position: relative;
}
.nav-avatar-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50px;
  padding: 4px 11px 4px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #fff;
  white-space: nowrap;
  font: inherit;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.nav-avatar-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}
.nav-avatar-circle {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #e55a28;
  flex-shrink: 0;
}
.nav-avatar-photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}
.nav-avatar-name {
  font-size: 0.82rem;
  font-weight: 700;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
}
.nav-avatar-chevron {
  font-size: 0.6rem;
  opacity: 0.75;
  transition: transform 0.2s ease;
}
.nav-avatar-chevron.is-open {
  transform: rotate(180deg);
}
.nav-user-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 230px;
  padding: 6px 0;
  border: 1px solid #e5e9ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  z-index: 80;
}
.nav-user-menu-header {
  padding: 14px 18px 12px;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
  border-radius: 14px 14px 0 0;
  margin-bottom: 4px;
}
.nav-user-menu-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a2e;
}
.nav-user-menu-email {
  font-size: 0.75rem;
  color: #888;
  margin-top: 2px;
  word-break: break-all;
}
.nav-user-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: #333;
  text-decoration: none;
  background: transparent;
}
.nav-user-menu-item:hover,
.nav-user-menu-item:focus {
  background: #f4f5f9;
  color: #1a1a2e;
  outline: none;
}
.nav-user-menu-item i {
  width: 18px;
  text-align: center;
  color: #888;
}
.nav-user-menu-item--logout {
  color: #c0392b;
}
.nav-user-menu-item--logout:hover,
.nav-user-menu-item--logout:focus {
  background: #fef2f2;
  color: #c0392b;
}
.nav-user-menu-divider {
  height: 1px;
  background: #eee;
  margin: 4px 0;
}
@media (max-width: 480px) {
  .nav-avatar-name {
    display: none;
  }
}

.burger {
  position: relative;
  z-index: 5;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0.5rem 0 0.5rem 0.55rem;
  margin: 0;
  cursor: pointer;
  display: grid;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
}
.burger:focus,
.burger:focus-visible,
.burger:active {
  outline: none;
  box-shadow: none;
  border: none;
}
@media (min-width: 992px) {
  .burger {
    display: none;
  }
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: background 0.2s ease;
  pointer-events: none;
}
.burger span:nth-child(2) {
  width: 65%;
  margin-left: auto;
}
.burger span:nth-child(3) {
  width: 85%;
  margin-left: auto;
}
.burger:hover span,
.burger:focus span {
  background: var(--cyan);
}

@media (max-width: 991.98px) {
  .nav > .container-fluid {
    padding-inline: 0.85rem 0.2rem;
  }
  .nav__actions {
    gap: 0.25rem;
  }
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100000;
}
.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 18, 0.6);
}
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  transform: translateX(0);
}
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
}
.drawer__head h5 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}
.drawer__close {
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
}
.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.2rem 1rem;
  -webkit-overflow-scrolling: touch;
}
.drawer__label {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0.5rem 0.2rem 0.6rem;
}
.drawer__cat {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.65rem 0.4rem;
  text-decoration: none;
  color: #fff;
  border-radius: 12px;
  transition: background 0.25s ease;
}
.drawer__cat:hover {
  background: rgba(255, 255, 255, 0.04);
}
.drawer__cat .ico {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--cyan);
  font-size: 1.1rem;
}
.drawer__cat .txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.drawer__cat .txt b {
  font-size: 0.98rem;
  font-weight: 600;
}
.drawer__cat .txt small {
  font-size: 0.78rem;
  color: var(--dim);
}
.drawer__cat > .bi-chevron-down,
.drawer__cat > .bi-chevron-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.drawer__cat .rot {
  transform: rotate(180deg);
  color: var(--cyan);
}
.drawer__sub {
  margin-left: 21px;
  border-left: 1px solid var(--line);
  padding: 0.3rem 0.2rem 1rem 2.25rem;
}
.drawer__sublabel {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 1.1rem 0 0.35rem;
}
.drawer__sub ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer__sub ul a {
  display: block;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.96rem;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}
.drawer__sub ul a:hover {
  color: var(--cyan);
  padding-left: 0.45rem;
}
.drawer__viewall {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: 1.1rem;
}
.drawer__viewall i {
  color: var(--cyan);
}
.drawer__simple {
  list-style: none;
  margin: 1rem 0 0;
  padding: 1rem 0.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.drawer__simple a {
  display: block;
  padding: 0.55rem 0.4rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 500;
  border-radius: 10px;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}
.drawer__simple a:hover {
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.04);
}
.drawer__contact {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1.6rem;
  font-size: 0.9rem;
}
.drawer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}
.drawer__foot {
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--line);
}

/* ============================================================
   HERO
   ============================================================ */
/* One canonical hero size shared by every page (About, Home, Services) */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0 70px;
  position: relative;
}
.hero--short {
  min-height: 60vh;
}
.hero__content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  letter-spacing: -0.02em;
  margin: 1rem 0;
}
.hero .lead {
  margin-top: 0;
  font-size: 1.15rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* breadcrumbs — third-level service pages */
.crumbs {
  margin: 0 0 1.1rem;
}
.crumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0;
}
.crumbs__item {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--dim);
}
.crumbs__item:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.55;
  margin: 0 0.7rem 0 0.55rem;
  flex-shrink: 0;
}
.crumbs__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--dim);
  text-decoration: none;
  line-height: 1.2;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.crumbs__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s var(--ease);
}
.crumbs__link:hover,
.crumbs__link:focus-visible {
  color: var(--cyan);
}
.crumbs__link:hover::after,
.crumbs__link:focus-visible::after {
  transform: scaleX(1);
}
.crumbs__link--icon {
  font-size: 1rem;
  line-height: 1;
}
.crumbs__link--icon i {
  display: block;
}
.crumbs__current {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 560px) {
  .crumbs {
    margin-bottom: 0.9rem;
  }
  .crumbs__item {
    font-size: 0.78rem;
  }
  .crumbs__item:not(:last-child)::after {
    margin: 0 0.55rem 0 0.45rem;
  }
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .stats {
    grid-template-columns: 1fr;
  }
}
.stats__card {
  padding: 1.8rem 1.4rem;
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #fff, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats__label {
  margin-top: 0.5rem;
  color: var(--dim);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* marquee */
.marquee {
  margin: 5rem 0;
  transform: rotate(-1.5deg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--glass);
  overflow: hidden;
  padding: 1.1rem 0;
  position: relative;
  z-index: 1;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 1.6rem;
  color: var(--text);
}
.marquee span i {
  color: var(--cyan);
  font-size: 0.8em;
  margin-right: 1.4rem;
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* timeline */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 780px;
  margin-top: 2.5rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}
.timeline__fill {
  position: absolute;
  left: 10px;
  top: 6px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--cyan), var(--purple));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.4s var(--ease);
}
.timeline--in .timeline__fill {
  transform: scaleY(1);
}
.timeline__item {
  position: relative;
  padding-bottom: 2.6rem;
}
.timeline__item:last-child {
  padding-bottom: 0;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--cyan);
  box-shadow: 0 0 14px rgba(4, 228, 255, 0.55);
}
.timeline__year {
  font-family: var(--font-display);
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}
.timeline__item h3 {
  font-size: 1.3rem;
  margin: 0.25rem 0 0.35rem;
}
.timeline__item p {
  color: var(--dim);
  margin: 0;
  max-width: 560px;
}

/* leadership */
.leaders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .leaders {
    grid-template-columns: 1fr;
  }
}
.leader {
  border-radius: 24px;
  padding: 2px;
  position: relative;
}
.leader__inner {
  border-radius: 22px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  padding: 2.4rem;
  height: 100%;
}
.leader__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.leader__top img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
}
.leader__top h3 {
  margin: 0.35rem 0;
}
.leader__link {
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.9rem;
}
.leader__quote {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
  margin-top: 1.4rem;
}
.leader__quote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--cyan);
  margin: 0.4rem 0;
}

/* team */
.team {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}
@media (max-width: 991px) {
  .team {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .team {
    grid-template-columns: repeat(2, 1fr);
  }
}
.team__card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s ease;
}
.team__card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(45%);
  transform: scale(1.02);
  transition:
    filter 0.6s ease,
    transform 0.6s ease;
}
.team__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 11, 31, 0.95));
}
.team__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 60px rgba(4, 228, 255, 0.18);
}
.team__card:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}
.team__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.2rem;
  z-index: 2;
}
.team__meta h3 {
  font-size: 1.05rem;
  margin: 0;
}
.team__meta small {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 600;
}

/* gallery */
.gallery {
  column-count: 3;
  column-gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 991px) {
  .gallery {
    column-count: 2;
  }
}
@media (max-width: 575px) {
  .gallery {
    column-count: 1;
  }
}
.gallery figure {
  margin: 0 0 1rem;
  border-radius: 16px;
  overflow: hidden;
  break-inside: avoid;
  cursor: zoom-in;
  position: relative;
}
.gallery img {
  width: 100%;
  transition:
    transform 0.6s var(--ease),
    filter 0.6s ease;
}
.gallery figure:hover img {
  transform: scale(1.07);
  filter: brightness(1.08);
}

/* lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 100001;
  background: rgba(4, 6, 18, 0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}
.lb__btn {
  position: fixed;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.1rem;
}
.lb__btn:hover {
  background: rgba(4, 228, 255, 0.25);
}
.lb__close {
  top: 20px;
  right: 20px;
}
.lb__prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.lb__next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.features--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .features--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .features,
  .features--4 {
    grid-template-columns: 1fr;
  }
}
.feature {
  padding: 1.9rem;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(4, 228, 255, 0.4);
}
.feature__ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--cyan);
  background: rgba(4, 228, 255, 0.1);
  border: 1px solid rgba(4, 228, 255, 0.25);
  margin-bottom: 1.1rem;
}
.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.feature p {
  color: var(--dim);
  font-size: 0.95rem;
  margin: 0;
}

/* offices */
.offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .offices {
    grid-template-columns: 1fr;
  }
}
.office {
  padding: 1.7rem;
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
}
.office:hover {
  transform: translateY(-6px);
  border-color: rgba(4, 228, 255, 0.4);
}
.office h3 {
  font-size: 1.1rem;
  margin: 0.8rem 0 0.3rem;
}
.office p {
  color: var(--dim);
  font-size: 0.92rem;
  margin: 0;
}

/* careers */
.careers {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius);
  background:
    radial-gradient(
      60% 120% at 50% 0%,
      rgba(89, 61, 177, 0.35),
      transparent 70%
    ),
    var(--glass);
  border: 1px solid var(--line);
}
.careers h2 {
  margin: 0.5rem 0;
}
.careers p {
  color: var(--text);
  max-width: 620px;
  margin: 0 auto 1.6rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding: 0;
}
.footer__topline {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--cyan),
    var(--pink),
    transparent
  );
  opacity: 0.7;
}
.footer .container,
.footer .container-fluid {
  position: relative;
  z-index: 1;
}
.footer__cta {
  text-align: center;
  padding: 4.5rem 1rem 3.5rem;
}
.footer__cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}
.footer__cta h2 .grad {
  background: linear-gradient(
    90deg,
    var(--cyan),
    var(--grad-mid),
    var(--pink),
    var(--cyan)
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 7s linear infinite;
}
.footer__cta p {
  color: var(--dim);
  max-width: 520px;
  margin: 0 auto 1.8rem;
}
.footer__cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}
.footer__coltitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer__coltitle::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.footer__coltitle--center::before {
  display: none;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__col li {
  margin-bottom: 0.55rem;
}
.footer__col a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}
.footer__col a:hover {
  color: var(--cyan);
  padding-left: 8px;
}

.footer__divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0 2.5rem;
}
.footer__divider::before,
.footer__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line));
}
.footer__divider::after {
  background: linear-gradient(90deg, var(--line), transparent);
}
.footer__divider img {
  height: 30px;
}

.footer__offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 767px) {
  .footer__offices {
    grid-template-columns: 1fr;
  }
}
.footer__office {
  text-align: center;
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}
.footer__office:hover {
  transform: translateY(-5px);
  border-color: rgba(4, 228, 255, 0.35);
}
.footer__office h3 {
  font-size: 1.05rem;
  margin: 0.7rem 0 0.35rem;
}
.footer__office p {
  color: var(--dim);
  font-size: 0.88rem;
  margin: 0;
}
.footer__tel {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.7rem;
  color: var(--ink);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer__tel i {
  color: var(--cyan);
  font-size: 0.8rem;
}
.footer__tel:hover {
  color: var(--cyan);
}

.footer__socials-wrap {
  text-align: center;
  margin-top: 3rem;
}
.footer__socials {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
}
.footer__socials a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.1rem;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}
.footer__socials a:hover {
  transform: translateY(-4px);
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 10px 26px var(--cyan-soft);
}

.footer__news {
  margin-top: 3rem;
}
.footer__news-box {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 480px;
  margin: 0 auto;
  padding: 0.35rem 0.35rem 0.35rem 1.1rem;
  border-radius: 60px;
  background: var(--glass);
  border: 1px solid var(--line);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.footer__news-box:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px var(--cyan-soft);
}
.footer__news-box .ico {
  color: var(--cyan);
}
.footer__news-box input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ink);
  caret-color: var(--ink);
  font-size: 0.95rem;
  padding: 0.55rem 0.4rem;
  /* Keep field transparent; theme-specific autofill overrides below */
  box-shadow: inset 0 0 0 1000px transparent;
}
.footer__news-box input::placeholder {
  color: var(--dim);
}
.footer__news-box input:-webkit-autofill,
.footer__news-box input:-webkit-autofill:hover,
.footer__news-box input:-webkit-autofill:focus,
.footer__news-box input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--ink);
  transition: background-color 99999s ease-in-out 0s;
  box-shadow: inset 0 0 0 1000px #0a1a36;
}
.footer__news-box button {
  border: none;
  border-radius: 60px;
  padding: 0.65rem 1.5rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(120deg, var(--cyan), var(--cyan-strong));
  color: #ffffff;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.footer__news-box button:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px var(--cyan-soft);
}
.footer__news-note {
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--dim);
}
.footer__news-status {
  text-align: center;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--cyan);
}
.footer__news-note a {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.footer__news-note a:hover {
  color: var(--cyan-strong);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding: 1.5rem 0 2.5rem;
  font-size: 0.85rem;
  color: var(--dim);
}
.footer__copy .brand {
  color: var(--ink);
  font-weight: 600;
}
.footer__copy .sep {
  margin: 0 0.55rem;
  color: var(--cyan);
  font-size: 0.6rem;
}
.footer__copy .reg {
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: var(--dim);
}
.footer__legal {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.2rem;
  margin: 0;
  padding: 0;
}
.footer__legal a {
  color: var(--dim);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer__legal a:hover {
  color: var(--cyan);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.fabs {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.fab {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.fab:hover {
  transform: translateY(-4px);
}
.fab--top {
  background: var(--panel);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.15rem;
  box-shadow: var(--card-shadow);
}
.fab--wa {
  position: relative;
  background: linear-gradient(140deg, #2bff88, #25d366 55%, #128c7e);
  color: #04122b;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}
.fab--wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70%,
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* ============================================================
   HOME PAGE
   ============================================================ */
.section-head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head .h2 {
  margin: 0.5rem 0 0;
}
.section-head__sub {
  color: var(--dim);
  margin: 1rem auto 0;
  max-width: 620px;
}

/* hero (home two-column) */
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.hero__content,
.hero__grid,
.hero__grid > * {
  min-width: 0;
  max-width: 100%;
}
@media (max-width: 991px) {
  /* Portfolio/blog heroes set minmax(280px, …) without a mobile reset;
     when the right stage is display:none the empty track still eats ~280px
     and the title column collapses to a few characters wide. */
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .hero {
    padding: 118px 0 28px;
  }
  .section {
    padding: 2.4rem 0;
    scroll-margin-top: 96px;
  }
  .container {
    padding-inline: 1.55rem;
  }
  .hero h1 {
    font-size: clamp(1.7rem, 7.2vw, 2.35rem);
    margin: 0.75rem 0;
    overflow-wrap: break-word;
  }
  .hero .lead {
    font-size: 0.95rem;
    overflow-wrap: break-word;
  }
  .hero__ctas {
    width: 100%;
    flex-wrap: nowrap;
    gap: 0.55rem;
    margin-top: 1.35rem;
  }
  .hero__ctas .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.62rem 0.85rem;
    font-size: 0.7rem;
    gap: 0.35rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
  .badge-pill {
    max-width: 100%;
    white-space: nowrap;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.4rem;
    padding: 0.38rem 0.75rem;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    line-height: 1.2;
  }
  .badge-pill .dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
  }
  .chips {
    flex-wrap: wrap;
    overflow-x: visible;
    margin-top: 1.35rem;
  }
  .chip {
    font-size: 0.72rem;
    padding: 0.35rem 0.7rem;
  }
}
@media (max-width: 380px) {
  .badge-pill {
    font-size: 0.56rem;
    letter-spacing: 0.02em;
    padding: 0.32rem 0.6rem;
    gap: 0.3rem;
  }
  .hero__ctas .btn {
    padding: 0.55rem 0.65rem;
    font-size: 0.64rem;
  }
}
/* auto-scrolling website showcase */
.showcase-wrap {
  position: relative;
  min-width: 0;
}
.showcase {
  position: relative;
  height: 560px;
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  overflow: hidden;
  transform: rotate(6deg);
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}
@media (max-width: 991px) {
  .showcase-wrap {
    display: none;
  }
}
.showcase__col {
  width: 46%;
}
.showcase__track {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  will-change: transform;
}
.showcase__col--up .showcase__track {
  animation: showcase-up 32s linear infinite;
}
.showcase__col--down .showcase__track {
  animation: showcase-down 32s linear infinite;
}
.showcase:hover .showcase__track {
  animation-play-state: paused;
}
@keyframes showcase-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes showcase-down {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
.showcase__card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  background: var(--glass);
}
.showcase__card img {
  width: 100%;
  height: auto;
  display: block;
}
.showcase__badge {
  position: absolute;
  bottom: 6%;
  left: -2%;
  z-index: 3;
  transform: rotate(-6deg);
  background: linear-gradient(
    160deg,
    rgba(10, 15, 40, 0.92),
    rgba(10, 15, 40, 0.75)
  );
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  padding: 1.2rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.showcase__badge .stats__num {
  font-size: 2.4rem;
}
.showcase__badge .stats__label {
  font-size: 0.78rem;
}
@media (prefers-reduced-motion: reduce) {
  .showcase__col--up .showcase__track,
  .showcase__col--down .showcase__track {
    animation: none;
  }
}

/* offerings */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}
.offer {
  display: block;
  text-decoration: none;
  color: var(--ink);
  padding: 2.2rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
}
.offer::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    340px circle at 80% 0%,
    var(--cyan-soft),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.offer:hover {
  transform: translateY(-8px);
  border-color: var(--cyan-ring);
}
.offer:hover::after {
  opacity: 1;
}
.offer__ico {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-ring);
  margin-bottom: 1.3rem;
}
.offer h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.offer p {
  color: var(--dim);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.offer__go {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.88rem;
}
.offer:hover .offer__go i {
  transform: translateX(4px);
}
.offer__go i {
  transition: transform 0.3s ease;
}

/* client logos scroller */
.section--tight {
  padding-bottom: 1.5rem;
}
.logos {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}
.logos__row {
  display: flex;
  overflow: hidden;
}
.logos__track {
  display: flex;
  gap: 1.1rem;
  flex-shrink: 0;
  padding-right: 1.1rem;
  will-change: transform;
}
.logos__row--left .logos__track {
  animation: logos-left 44s linear infinite;
}
.logos__row--right .logos__track {
  animation: logos-right 52s linear infinite;
}
.logos:hover .logos__track {
  animation-play-state: paused;
}
@keyframes logos-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes logos-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.logos .logo-tile {
  flex: 0 0 190px;
  width: 190px;
  height: 96px;
  display: grid;
  place-items: center;
  padding: 0 1.6rem;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--line);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}
.logos .logo-tile:hover {
  border-color: rgba(4, 228, 255, 0.35);
  background: rgba(4, 228, 255, 0.05);
  transform: translateY(-3px);
}
.logos .logo-tile img {
  height: 40px;
  width: auto;
  max-width: 100%;
  /* normalise mixed-colour logos to a clean monochrome white */
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.logos .logo-tile:hover img {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .logos__row--left .logos__track,
  .logos__row--right .logos__track {
    animation: none;
  }
  .logos {
    flex-wrap: wrap;
  }
}

/* showreel video */
.video {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.video__glow {
  position: absolute;
  inset: -8% -4%;
  background: radial-gradient(
    closest-side,
    rgba(4, 228, 255, 0.22),
    transparent 70%
  );
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.video__frame {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  background: #000;
  aspect-ratio: 16 / 9;
}
.video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video__controls {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}
.video__btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 11, 31, 0.55);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}
.video__btn:hover {
  background: rgba(4, 228, 255, 0.25);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

/* services grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}
.svc {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  position: relative;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}
.svc:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-ring);
  background: var(--cyan-soft);
}
.svc__ico {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  color: var(--cyan);
  font-size: 1.15rem;
  transition: background 0.3s ease;
}
.svc:hover .svc__ico {
  background: var(--cyan-soft);
}
.svc__name {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
}
.svc__arrow {
  color: var(--dim);
  font-size: 0.8rem;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
.svc:hover .svc__arrow {
  color: var(--cyan);
  transform: translate(2px, -2px);
}

/* services catalog (View All Services) */
.svc-hero__sub {
  margin: 0.85rem 0 0;
  color: var(--cyan);
  font-size: 1.05rem;
  font-weight: 600;
}

/* services hero constellation */
.svc-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .svc-visual {
    display: none;
  }
}
.svc-visual__glow {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(4, 228, 255, 0.26),
    rgba(50, 99, 185, 0.14),
    transparent 72%
  );
  filter: blur(16px);
}
.svc-visual__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  margin: -180px;
  border-radius: 50%;
  border: 1px dashed rgba(4, 228, 255, 0.22);
  animation: svc-visual-spin 70s linear infinite;
}
.svc-visual__ring--inner {
  width: 250px;
  height: 250px;
  margin: -125px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.07);
  animation-duration: 95s;
  animation-direction: reverse;
}
.svc-visual__orbit {
  position: absolute;
  inset: 0;
  animation: svc-visual-spin 28s linear infinite;
}
.svc-visual__chip {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(10, 15, 40, 0.88);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  color: var(--cyan);
  font-size: 1.15rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transform: rotate(var(--a)) translateY(-168px) rotate(calc(-1 * var(--a)));
}
.svc-visual__chip i {
  animation: svc-visual-spin-rev 28s linear infinite;
  display: block;
}
@keyframes svc-visual-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes svc-visual-spin-rev {
  to {
    transform: rotate(-360deg);
  }
}

.svc-visual__core {
  position: relative;
  z-index: 2;
  width: min(72%, 250px);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
}
.svc-visual__browser {
  width: 100%;
  border-radius: 18px;
  padding: 0.85rem 1rem 1.1rem;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
}
.svc-visual__dots {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
}
.svc-visual__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  display: block;
}
.svc-visual__dots i:nth-child(1) {
  background: #ff5f57;
}
.svc-visual__dots i:nth-child(2) {
  background: #febc2e;
}
.svc-visual__dots i:nth-child(3) {
  background: #28c840;
}
.svc-visual__bar {
  display: block;
  height: 10px;
  width: 68%;
  border-radius: 6px;
  background: rgba(4, 228, 255, 0.35);
  margin-bottom: 0.85rem;
}
.svc-visual__lines {
  display: grid;
  gap: 0.45rem;
}
.svc-visual__lines i {
  display: block;
  height: 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
}
.svc-visual__lines i:nth-child(1) {
  width: 92%;
}
.svc-visual__lines i:nth-child(2) {
  width: 76%;
  background: rgba(4, 228, 255, 0.22);
}
.svc-visual__lines i:nth-child(3) {
  width: 84%;
}
.svc-visual__lines i:nth-child(4) {
  width: 58%;
}
.svc-visual__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}
.svc-visual__pills span {
  padding: 0.35rem 0.7rem;
  border-radius: 60px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 15, 40, 0.75);
  border: 1px solid var(--line);
}
.svc-visual__pills span:nth-child(1) {
  border-color: rgba(4, 228, 255, 0.45);
  color: var(--cyan);
}
.svc-visual__pills span:nth-child(2) {
  border-color: rgba(124, 92, 255, 0.45);
  color: #c4b5fd;
}
.svc-visual__pills span:nth-child(3) {
  border-color: rgba(255, 78, 203, 0.45);
  color: #fda4ef;
}

.svc-visual__float {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(10, 15, 40, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  animation: svc-visual-bob 5.5s ease-in-out infinite;
}
.svc-visual__float--code {
  top: 14%;
  left: 8%;
  width: 54px;
  height: 42px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cyan);
  animation-delay: 0.4s;
}
.svc-visual__float--rank {
  top: 18%;
  right: 10%;
  width: 48px;
  height: 48px;
  font-family: var(--font-display);
  font-weight: 700;
  color: #ffc636;
  animation-delay: 1s;
}
.svc-visual__float--pixel {
  bottom: 16%;
  right: 12%;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff4ecb, #7c5cff);
  animation-delay: 0.2s;
}
@keyframes svc-visual-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-visual__ring,
  .svc-visual__orbit,
  .svc-visual__chip i,
  .svc-visual__float {
    animation: none;
  }
}

.svc-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
@media (max-width: 900px) {
  .svc-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .svc-catalog {
    grid-template-columns: 1fr;
  }
}

.svc-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.45rem 1.35rem 1.3rem;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(12px);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(4, 228, 255, 0.45);
  background: rgba(4, 228, 255, 0.06);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}
.svc-card__ico {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(4, 228, 255, 0.1);
  border: 1px solid rgba(4, 228, 255, 0.22);
  color: var(--cyan);
  font-size: 1.35rem;
}
.svc-card__title {
  margin: 0;
  font-size: 1.08rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.svc-card__text {
  margin: 0;
  flex: 1;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.65;
}
.svc-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.svc-card:hover .svc-card__more i {
  transform: translate(2px, -2px);
}
.svc-card__more i {
  transition: transform 0.3s var(--ease);
}

.svc-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.8rem 2rem;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(89, 61, 177, 0.28),
    rgba(50, 99, 185, 0.2)
  );
  border: 1px solid var(--line);
}
.svc-strip h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  color: #fff;
}
.svc-strip p {
  margin: 0;
  color: var(--text);
}
.svc-strip__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* services spotlights (Z-format bands) */
.svc-spotlight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.svc-spotlight--flip .svc-spotlight__media {
  order: 2;
}
.svc-spotlight--flip .svc-spotlight__body {
  order: 1;
}
@media (max-width: 900px) {
  .svc-spotlight {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .svc-spotlight--flip .svc-spotlight__media,
  .svc-spotlight--flip .svc-spotlight__body {
    order: initial;
  }
}
.svc-spotlight__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}
.svc-spotlight__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 228, 255, 0.12),
    transparent 45%,
    rgba(89, 61, 177, 0.18)
  );
  pointer-events: none;
}
.svc-spotlight__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.svc-spotlight__body .h2 {
  margin: 0.55rem 0 0.9rem;
}
.svc-spotlight__body > p {
  color: var(--text);
  margin: 0 0 1.25rem;
  max-width: 38rem;
}
.svc-spotlight__links {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.svc-spotlight__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.svc-spotlight__links a i {
  color: var(--cyan);
  font-size: 0.75rem;
}
.svc-spotlight__links a:hover {
  color: var(--cyan);
}

/* stat band */
.statband {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2.5rem;
  border-radius: var(--radius);
  background: linear-gradient(
    120deg,
    rgba(89, 61, 177, 0.18),
    rgba(50, 99, 185, 0.12)
  );
  border: 1px solid var(--line);
  text-align: center;
}
@media (max-width: 767px) {
  .statband {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }
}
.statband__item .stats__num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

/* process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .process {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .process {
    grid-template-columns: 1fr;
  }
}
.process__step {
  position: relative;
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
}
.process__step:hover {
  transform: translateY(-6px);
  border-color: rgba(4, 228, 255, 0.4);
}
.process__n {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.07);
}
.process__ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--cyan);
  background: rgba(4, 228, 255, 0.1);
  border: 1px solid rgba(4, 228, 255, 0.25);
  margin-bottom: 1.1rem;
}
.process__step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.process__step p {
  color: var(--dim);
  font-size: 0.92rem;
  margin: 0;
}

/* faq */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--glass);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq__item.is-open {
  border-color: rgba(4, 228, 255, 0.4);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq__q i {
  flex: 0 0 auto;
  color: var(--cyan);
  transition: transform 0.3s var(--ease);
}
.faq__item.is-open .faq__q i {
  transform: rotate(45deg);
}
.faq__a {
  padding: 0 1.4rem;
}
.faq__a p {
  color: var(--text);
  margin: 0 0 1.2rem;
  line-height: 1.75;
}

/* cta band */
.cta-band {
  position: relative;
  text-align: center;
  padding: 4.5rem 2rem;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(89, 61, 177, 0.35),
    rgba(50, 99, 185, 0.25)
  );
  border: 1px solid var(--line);
  overflow: hidden;
}
.cta-band__glow {
  position: absolute;
  width: 60%;
  height: 200%;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    closest-side,
    rgba(4, 228, 255, 0.25),
    transparent
  );
  pointer-events: none;
}
.cta-band h2 {
  position: relative;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.8rem;
}
.cta-band p {
  position: relative;
  color: var(--text);
  max-width: 520px;
  margin: 0 auto 2rem;
}
.cta-band__btns {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .orb,
  .marquee__track,
  .gradient-text,
  .badge-pill .dot,
  .fab--wa::before,
  .hero__statcard {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ============================================================
   SERVICE PAGE — Logo Design (and shared service components)
   ============================================================ */

/* hero feature chips */
.chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-top: 2rem;
  overflow-x: auto;
  scrollbar-width: none; /* firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding-bottom: 2px;
}
.chips::-webkit-scrollbar {
  display: none;
}
.chip {
  flex: 0 0 auto;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.85rem;
  border-radius: 60px;
  background: var(--glass);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--text);
}
.chip i {
  color: var(--cyan);
  font-size: 0.9em;
}

/* hero logo art (right column) */
.hero__logo-art {
  display: grid;
  place-items: center;
}
.hero__logo-art img {
  max-width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@media (max-width: 991px) {
  .hero__logo-art {
    display: none;
  }
}

/* pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}
.pricing--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1100px) {
  .pricing,
  .pricing--3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .pricing,
  .pricing--3 {
    grid-template-columns: 1fr;
  }
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem 1.6rem;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(4, 228, 255, 0.4);
}
.price-card--featured {
  border-color: rgba(4, 228, 255, 0.5);
  background: linear-gradient(
    160deg,
    rgba(4, 228, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 30px 70px rgba(4, 228, 255, 0.14);
}
.price-card__tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--cyan), #009cff);
  color: #04122b;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 60px;
  white-space: nowrap;
}
.price-card__name {
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 0.6rem;
}
.price-card__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.3rem;
}
.price-card__price .cur {
  font-size: 1rem;
  color: var(--dim);
  margin-right: 0.25rem;
  vertical-align: middle;
}
.price-card__concepts {
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.3rem;
}
.price-card__list {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  flex: 1 1 auto;
}
.price-card .btn {
  margin-top: auto;
}
.price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--text);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.price-card__list li:last-child {
  border-bottom: 0;
}
.price-card__list i {
  color: var(--cyan);
  margin-top: 2px;
}

/* logo portfolio gallery — matches live /services/logo-design
   (dedicated 640×700 thumbs in grid, full boards in lightbox) */
.logo-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.25rem;
}
@media (max-width: 1100px) {
  .logo-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .logo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.logo-tile {
  margin: 0;
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.logo-tile__media {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.logo-tile__media img {
  width: 100%;
  height: auto;
  max-width: none;
  aspect-ratio: 640 / 700;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: none;
  opacity: 1;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.logo-tile:hover .logo-tile__media img,
.logo-tile:focus-visible .logo-tile__media img {
  transform: scale(1);
}
.logo-tile__zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(50, 50, 50, 0.73);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  pointer-events: none;
}
.logo-tile__zoom img {
  width: 12%;
  max-width: 42px;
  height: auto;
}
.logo-tile:hover .logo-tile__zoom,
.logo-tile:focus-visible .logo-tile__zoom {
  opacity: 1;
  visibility: visible;
}
.logo-tile:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.lb__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 92vw;
}
.lb__stage img {
  max-width: min(420px, 92vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  background: #0b1024;
  padding: 0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}
.lb__caption {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

@media (prefers-reduced-motion: reduce) {
  .logo-tile__media img,
  .logo-tile__zoom {
    transition: none;
  }
  .logo-tile__media img {
    transform: none;
  }
}

/* point-of-contact card */
.contact-card {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 2.4rem;
  border-radius: var(--radius);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.contact-card__img {
  width: 140px;
  height: 140px;
  flex: 0 0 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
}
.contact-card__body {
  flex: 1;
  min-width: 260px;
}
.contact-card__body h3 {
  margin: 0.35rem 0;
  font-size: 1.4rem;
}
.contact-card__addr {
  color: var(--dim);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}
.contact-card__addr i {
  color: var(--pink);
}
.contact-card__msg {
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 1.4rem;
  max-width: 640px;
}

/* reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media (max-width: 900px) {
  .reviews {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .reviews {
    grid-template-columns: 1fr;
  }
}
.review-card {
  padding: 1.8rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(4, 228, 255, 0.35);
}
.review-card__stars {
  color: #ffc636;
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
  letter-spacing: 2px;
}
.review-card__text {
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0 0 1.4rem;
}
.review-card__by {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.review-card__avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(4, 228, 255, 0.14);
  border: 1px solid rgba(4, 228, 255, 0.3);
  color: var(--cyan);
  font-weight: 700;
}
.review-card__by b {
  display: block;
  font-size: 0.92rem;
}
.review-card__by small {
  color: var(--dim);
  font-size: 0.78rem;
}

/* ============================================================
   SERVICE HERO — compact + animated "creative studio" visual
   ============================================================ */
/* .hero--compact now inherits the canonical hero size (kept as a no-op hook) */

@property --ang {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.creative {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .creative {
    display: none;
  }
}

.creative__glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(4, 228, 255, 0.28),
    rgba(124, 92, 255, 0.12),
    transparent 72%
  );
  filter: blur(14px);
}

/* orbit rings — sized to the chip orbit radius (172px → 344px) so chips
   visually travel along the outer ring */
.creative__orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 344px;
  height: 344px;
  margin: -172px;
  border-radius: 50%;
  border: 1px dashed rgba(4, 228, 255, 0.22);
  animation: creative-rotate 60s linear infinite;
}
.creative__orbit-ring--inner {
  width: 244px;
  height: 244px;
  margin: -122px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.06);
  animation-duration: 90s;
  animation-direction: reverse;
}
@keyframes creative-rotate {
  to {
    transform: rotate(360deg);
  }
}

/* orbiting design-tool chips */
.creative__orbit {
  position: absolute;
  inset: 0;
  animation: creative-spin 26s linear infinite;
}
.creative__chip {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(10, 15, 40, 0.85);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  color: var(--cyan);
  font-size: 1.15rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transform: rotate(var(--a)) translateY(-172px) rotate(calc(-1 * var(--a)));
}
.creative__chip i {
  animation: creative-spin-rev 26s linear infinite;
  display: block;
}
@keyframes creative-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes creative-spin-rev {
  to {
    transform: rotate(-360deg);
  }
}

/* central morphing canvas + phi mark */
.creative__canvas {
  position: relative;
  z-index: 2;
  width: 168px;
  height: 168px;
  border-radius: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.creative__canvas::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 34px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--ang),
    transparent 0 62%,
    var(--cyan) 78%,
    var(--pink) 92%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: creative-ang 5s linear infinite;
}
@keyframes creative-ang {
  to {
    --ang: 360deg;
  }
}
.creative__blob {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--cyan), #7c5cff, var(--pink));
  filter: blur(6px);
  opacity: 0.55;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  animation: creative-morph 9s ease-in-out infinite;
}
@keyframes creative-morph {
  0%,
  100% {
    border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
    transform: rotate(0deg) scale(1);
  }
  50% {
    border-radius: 62% 38% 34% 66% / 57% 63% 37% 43%;
    transform: rotate(180deg) scale(1.08);
  }
}
.creative__mark {
  position: relative;
  z-index: 2;
  font-family: "Space Grotesk", serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #fff, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: creative-float 5s ease-in-out infinite;
}
@keyframes creative-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* colour palette swatches */
.creative__swatches {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0.7rem;
  border-radius: 60px;
  background: rgba(10, 15, 40, 0.8);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}
.creative__swatches span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 10px var(--c);
  animation: creative-pulse 2.4s ease-in-out infinite;
}
.creative__swatches span:nth-child(2) {
  animation-delay: 0.3s;
}
.creative__swatches span:nth-child(3) {
  animation-delay: 0.6s;
}
.creative__swatches span:nth-child(4) {
  animation-delay: 0.9s;
}
.creative__swatches span:nth-child(5) {
  animation-delay: 1.2s;
}
@keyframes creative-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

/* floating shapes */
.creative__shape {
  position: absolute;
  opacity: 0.5;
}
.creative__shape--ring {
  top: 8%;
  right: 14%;
  width: 42px;
  height: 42px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  animation: creative-drift 8s ease-in-out infinite;
}
.creative__shape--tri {
  bottom: 16%;
  left: 6%;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 30px solid var(--pink);
  animation: creative-drift 10s ease-in-out infinite reverse;
}
.creative__shape--sq {
  top: 20%;
  left: 10%;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, #ffc636, #ff8a3d);
  animation: creative-drift 9s ease-in-out infinite 1s;
}
@keyframes creative-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, -14px) rotate(25deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .creative__orbit-ring,
  .creative__orbit,
  .creative__chip i,
  .creative__canvas::before,
  .creative__blob,
  .creative__mark,
  .creative__swatches span,
  .creative__shape {
    animation: none !important;
  }
}

/* ============================================================
   ABOUT HERO — floating team-photo collage
   ============================================================ */
.hero-collage {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  margin-inline: auto;
  justify-self: end;
}
@media (max-width: 991px) {
  .hero-collage {
    display: none;
  }
}

.hero-collage__glow {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(89, 61, 177, 0.4),
    rgba(50, 99, 185, 0.18),
    transparent 72%
  );
  filter: blur(18px);
  pointer-events: none;
}
.hero-collage__item {
  position: absolute;
  width: var(--size);
  height: var(--size);
  top: var(--top);
  left: var(--left);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  animation: collage-float 6s ease-in-out infinite;
  animation-delay: var(--d);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
  will-change: transform;
}
.hero-collage__item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(4, 228, 255, 0.15);
  pointer-events: none;
}
.hero-collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(18%) contrast(1.03);
  transition:
    filter 0.35s ease,
    transform 0.35s ease;
}
.hero-collage__item:hover {
  z-index: 4;
  border-color: rgba(4, 228, 255, 0.55);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.55),
    0 0 0 4px rgba(4, 228, 255, 0.12);
  animation-play-state: paused;
}
.hero-collage__item:hover img {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.06);
}
@keyframes collage-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-13px);
  }
}

.hero-collage__badge {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  padding: 0.55rem 1.05rem;
  border-radius: 60px;
  background: rgba(10, 15, 40, 0.88);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  z-index: 5;
  pointer-events: none;
}
.hero-collage__badge i {
  color: var(--cyan);
}

@media (prefers-reduced-motion: reduce) {
  .hero-collage__item {
    animation: none;
  }
  .hero-collage__item:hover img {
    transform: none;
  }
}

/* graphic design portfolio — denser masonry, image-first (no card chrome) */
.gd-gallery {
  column-count: 3;
  column-gap: 0.35rem;
}
@media (max-width: 900px) {
  .gd-gallery {
    column-count: 2;
  }
}
@media (max-width: 520px) {
  .gd-gallery {
    column-count: 1;
  }
}

.gd-tile {
  margin: 0 0 0.35rem;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: transparent;
  border: 0;
  border-radius: 6px;
  box-shadow: none;
}
.gd-tile img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  transition:
    transform 0.4s ease,
    filter 0.35s ease;
}
.gd-tile:hover img,
.gd-tile:focus-visible img {
  transform: scale(1.025);
  filter: brightness(1.05);
}
.gd-tile__zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(
    160deg,
    rgba(4, 228, 255, 0.18),
    rgba(10, 15, 40, 0.62)
  );
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  pointer-events: none;
}
.gd-tile__zoom img {
  width: 38px;
  height: auto;
  transform: none;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
}
.gd-tile:hover .gd-tile__zoom,
.gd-tile:focus-visible .gd-tile__zoom {
  opacity: 1;
  visibility: visible;
}
.gd-tile:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.lb--wide .lb__stage img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 10px;
}

/* ── page-gd: elegant refinements (portfolio gallery left alone) ── */
.page-gd .gd-hero .lead {
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
}
.page-gd .gd-hero .svc-hero__sub {
  margin-top: 0.65rem;
  color: var(--cyan);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* spotlights — editorial, freestanding imagery */
.svc-spotlight--bare .svc-spotlight__media {
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.svc-spotlight--bare .svc-spotlight__media::after {
  display: none;
}
.svc-spotlight--bare .svc-spotlight__media img {
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
}

.gd-spotlight {
  gap: 3rem;
  position: relative;
}
.gd-spotlight__body {
  position: relative;
  padding-left: 0.25rem;
}
.gd-spotlight__index {
  display: block;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(4, 228, 255, 0.28);
  margin: 0 0 0.85rem;
  user-select: none;
  pointer-events: none;
}
.gd-spotlight__body .eyebrow {
  margin-bottom: 0.35rem;
}
.gd-spotlight__body .h2 {
  margin: 0.35rem 0 1rem;
  max-width: 18ch;
  line-height: 1.15;
}
.gd-spotlight__body > p {
  max-width: 34rem;
  line-height: 1.7;
  color: rgba(232, 236, 255, 0.78);
}
.gd-spotlight__points {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.gd-spotlight__points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 550;
  color: #fff;
}
.gd-spotlight__points i {
  color: var(--cyan);
  font-size: 1rem;
}
.gd-spotlight__media img {
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.35));
  transition: transform 0.55s ease;
}
.gd-spotlight:hover .gd-spotlight__media img {
  transform: translateY(-4px);
}

/* offerings — numbered editorial cards */
.gd-offerings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .gd-offerings {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .gd-offerings {
    grid-template-columns: 1fr;
  }
}

.gd-offer {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.65rem 1.5rem 1.7rem;
  background: rgba(8, 12, 32, 0.72);
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  transition: background 0.3s ease;
  overflow: hidden;
}
.gd-offer::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gd-offer:hover {
  background: rgba(4, 228, 255, 0.06);
}
.gd-offer:hover::before {
  opacity: 1;
}
.gd-offer__num {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(4, 228, 255, 0.45);
}
.gd-offer__ico {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(4, 228, 255, 0.16),
    rgba(124, 92, 255, 0.1)
  );
  border: 1px solid rgba(4, 228, 255, 0.18);
  color: var(--cyan);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.gd-offer:hover .gd-offer__ico {
  transform: translateY(-2px);
  border-color: rgba(4, 228, 255, 0.4);
}
.gd-offer__title {
  font-weight: 650;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
  padding-right: 1.5rem;
}
.gd-offer__text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}
.gd-offer__go {
  margin-top: 0.65rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cyan);
  font-size: 0.9rem;
  opacity: 0.55;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.gd-offer:hover .gd-offer__go {
  opacity: 1;
  transform: translate(2px, -2px);
  border-color: rgba(4, 228, 255, 0.35);
  background: rgba(4, 228, 255, 0.08);
}

/* why — refined numbered pillars */
.gd-why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .gd-why__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.gd-why__card {
  position: relative;
  padding: 1.75rem 1.5rem 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(
      120% 80% at 0% 0%,
      rgba(4, 228, 255, 0.08),
      transparent 55%
    ),
    rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.gd-why__card:hover {
  border-color: rgba(4, 228, 255, 0.28);
  transform: translateY(-3px);
}
.gd-why__num {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.gd-why__ico {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.gd-why__card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
}
.gd-why__card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* contact polish */
.page-gd .gd-contact {
  border-color: rgba(4, 228, 255, 0.16);
  background:
    radial-gradient(
      90% 120% at 100% 0%,
      rgba(4, 228, 255, 0.1),
      transparent 50%
    ),
    var(--glass);
}

/* FAQ / reviews subtle lift */
.page-gd .gd-faq .faq__item {
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}
.page-gd .gd-faq .faq__item.is-open {
  border-color: rgba(4, 228, 255, 0.22);
  background: rgba(4, 228, 255, 0.04);
}
.page-gd .gd-reviews .review-card {
  border-color: rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(8, 12, 32, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .gd-tile img,
  .gd-tile__zoom,
  .gd-offer,
  .gd-offer__ico,
  .gd-offer__go,
  .gd-why__card,
  .gd-spotlight__media img {
    transition: none;
  }
  .gd-tile:hover img,
  .gd-offer:hover .gd-offer__ico,
  .gd-offer:hover .gd-offer__go,
  .gd-why__card:hover,
  .gd-spotlight:hover .gd-spotlight__media img {
    transform: none;
  }
  .gd-tile:hover img {
    filter: none;
  }
}

/* ============================================================
   Content Writing page — editorial / manuscript aesthetic
   ============================================================ */
.page-cw {
  --cw-ink: var(--text);
  --cw-soft: var(--dim);
}

.page-cw .cw-hero .lead {
  max-width: 36rem;
  line-height: 1.7;
  color: var(--cw-ink);
}
.page-cw .cw-hero .svc-hero__sub {
  font-family: var(--font-editorial);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cyan);
  letter-spacing: 0.01em;
}

/* animated manuscript editor */
.cw-editor {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.05;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .cw-editor {
    display: none;
  }
}
.cw-editor__glow {
  position: absolute;
  inset: 12% 8%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
}
.cw-editor__sheet {
  position: relative;
  width: 92%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(10, 14, 36, 0.92);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.cw-editor__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.cw-editor__chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.cw-editor__chrome span:nth-child(1) {
  background: #ff5f57;
}
.cw-editor__chrome span:nth-child(2) {
  background: #febc2e;
}
.cw-editor__chrome span:nth-child(3) {
  background: #28c840;
}
.cw-editor__chrome em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.cw-editor__body {
  padding: 1.15rem 1.1rem 1.35rem;
  display: grid;
  gap: 0.55rem;
  min-height: 210px;
}
.cw-editor__lines {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.65rem;
  align-items: baseline;
}
.cw-editor__ln {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  color: rgba(4, 228, 255, 0.45);
  text-align: right;
}
.cw-editor__lines p {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: 1.12rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.cw-editor__lines p b {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}
.cw-editor__typed {
  white-space: nowrap;
  overflow: hidden;
  border-right: 0;
  animation: cw-type 3.8s steps(18, end) infinite;
  max-width: 0;
}
.cw-editor__cursor {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 2px;
  vertical-align: -0.12em;
  background: var(--cyan);
  animation: cw-blink 1s step-end infinite;
}
@keyframes cw-type {
  0%,
  8% {
    max-width: 0;
  }
  45%,
  78% {
    max-width: 14ch;
  }
  92%,
  100% {
    max-width: 0;
  }
}
@keyframes cw-blink {
  50% {
    opacity: 0;
  }
}
.cw-editor__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cw-editor__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--dim);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.cw-editor__meta i {
  color: var(--cyan);
  font-size: 0.85rem;
}
.cw-editor__float {
  position: absolute;
  font-family: var(--font-editorial);
  color: rgba(4, 228, 255, 0.55);
  pointer-events: none;
  animation: cw-float 6.5s ease-in-out infinite;
}
.cw-editor__float--quote {
  top: 6%;
  right: 2%;
  font-size: 3.5rem;
  line-height: 1;
}
.cw-editor__float--amp {
  bottom: 10%;
  left: 0;
  font-size: 2.6rem;
  color: rgba(255, 78, 203, 0.45);
  animation-delay: 1.2s;
}
@keyframes cw-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* service cards */
.cw-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1100px) {
  .cw-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .cw-services {
    grid-template-columns: 1fr;
  }
}
.cw-svc {
  position: relative;
  padding: 1.55rem 1.4rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(8, 12, 32, 0.55);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.cw-svc:hover {
  border-color: rgba(4, 228, 255, 0.3);
  transform: translateY(-3px);
}
.cw-svc__ico {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 1rem;
  color: var(--cyan);
  background: rgba(4, 228, 255, 0.1);
  border: 1px solid rgba(4, 228, 255, 0.16);
  font-size: 1.15rem;
}
.cw-svc h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  letter-spacing: -0.015em;
}
.cw-svc p {
  margin: 0;
  color: var(--muted, var(--dim));
  font-size: 0.92rem;
  line-height: 1.6;
}

/* why */
.cw-why {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1100px) {
  .cw-why {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .cw-why {
    grid-template-columns: 1fr;
  }
}
.cw-why__card {
  position: relative;
  padding: 1.55rem 1.35rem 1.45rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.cw-why__card:hover {
  border-color: rgba(4, 228, 255, 0.26);
  transform: translateY(-2px);
}
.cw-why__num {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.cw-why__ico {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 0.9rem;
  color: var(--cyan);
  background: rgba(4, 228, 255, 0.1);
  font-size: 1.1rem;
}
.cw-why__card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
}
.cw-why__card p {
  margin: 0;
  color: var(--dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* spotlight polish */
.cw-spotlight .svc-spotlight__body .h2 {
  max-width: 16ch;
  line-height: 1.15;
}
.cw-spotlight .svc-spotlight__body > p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--cw-ink);
}

/* soft-fade spotlight photos into the aurora background */
.page-cw .cw-spotlight .svc-spotlight__media {
  overflow: visible;
}
.page-cw .cw-spotlight .svc-spotlight__media img {
  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    );
  mask-composite: intersect;
}

/* editorial essay blocks */
.cw-editorial__list {
  display: grid;
  gap: 1.15rem;
  max-width: 820px;
  margin: 0 auto;
}
.cw-editorial__item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1.55rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(135deg, rgba(4, 228, 255, 0.05), transparent 40%),
    rgba(255, 255, 255, 0.02);
}
.cw-editorial__mark {
  font-family: var(--font-editorial);
  font-size: 2rem;
  line-height: 1;
  color: rgba(4, 228, 255, 0.55);
  padding-top: 0.15rem;
}
.cw-editorial__item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.cw-editorial__deck {
  margin: 0 0 0.75rem !important;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(4, 228, 255, 0.8);
}
.cw-editorial__item p {
  margin: 0;
  color: var(--cw-soft);
  line-height: 1.7;
}

.page-cw .cw-contact {
  border-color: rgba(4, 228, 255, 0.16);
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(4, 228, 255, 0.1), transparent 50%),
    var(--glass);
}

@media (prefers-reduced-motion: reduce) {
  .cw-editor__typed,
  .cw-editor__cursor,
  .cw-editor__float,
  .cw-svc,
  .cw-why__card {
    animation: none !important;
  }
  .cw-editor__typed {
    max-width: none;
  }
  .cw-svc:hover,
  .cw-why__card:hover {
    transform: none;
  }
}

/* ============================================================
   Inventory Management — stock dashboard aesthetic
   ============================================================ */
.page-im .im-hero .lead {
  max-width: 36rem;
  line-height: 1.7;
}
.page-im .im-hero .svc-hero__sub {
  color: rgba(4, 228, 255, 0.88);
  font-weight: 500;
}

.im-dash {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.02;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .im-dash {
    display: none;
  }
}
.im-dash__glow {
  position: absolute;
  inset: 14% 10%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
}
.im-dash__panel {
  position: relative;
  width: 92%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(10, 14, 36, 0.94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.im-dash__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.im-dash__live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2bff88;
}
.im-dash__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2bff88;
  box-shadow: 0 0 0 0 rgba(43, 255, 136, 0.55);
  animation: im-pulse 1.8s ease-out infinite;
}
@keyframes im-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 255, 136, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(43, 255, 136, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(43, 255, 136, 0);
  }
}
.im-dash__top em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.im-dash__rows {
  padding: 1rem 1.05rem 0.35rem;
  display: grid;
  gap: 0.85rem;
}
.im-dash__row {
  display: grid;
  grid-template-columns: 5.2rem 1fr 2rem;
  gap: 0.7rem;
  align-items: center;
}
.im-dash__sku {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  color: rgba(232, 236, 255, 0.65);
}
.im-dash__bar {
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.im-dash__bar i {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), #7c5cff);
  animation: im-fill 2.8s var(--ease) infinite alternate;
}
.im-dash__row--warn .im-dash__bar i {
  background: linear-gradient(90deg, #ffc636, #ff4ecb);
}
.im-dash__row b {
  font-size: 0.85rem;
  font-weight: 700;
  text-align: right;
  color: #fff;
}
@keyframes im-fill {
  from {
    filter: brightness(0.92);
  }
  to {
    filter: brightness(1.12);
  }
}
.im-dash__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.95rem 1.05rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.65rem;
}
.im-dash__footer span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dim);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.im-dash__footer i {
  color: var(--cyan);
}
.im-dash__float {
  position: absolute;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 36, 0.9);
  color: var(--cyan);
  font-size: 1.15rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  animation: im-float 5.5s ease-in-out infinite;
}
.im-dash__float--box {
  top: 8%;
  right: 2%;
}
.im-dash__float--sync {
  bottom: 12%;
  left: 0;
  color: #ff4ecb;
  animation-delay: 1s;
}
@keyframes im-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.im-caps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .im-caps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .im-caps {
    grid-template-columns: 1fr;
  }
}
.im-cap {
  padding: 1.45rem 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(8, 12, 32, 0.55);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.im-cap:hover {
  border-color: rgba(4, 228, 255, 0.3);
  transform: translateY(-3px);
}
.im-cap__ico {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 0.95rem;
  color: var(--cyan);
  background: rgba(4, 228, 255, 0.1);
  border: 1px solid rgba(4, 228, 255, 0.16);
  font-size: 1.15rem;
}
.im-cap h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}
.im-cap p {
  margin: 0;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

.im-spotlight__points {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.im-spotlight__points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 550;
  color: #fff;
}
.im-spotlight__points i {
  color: var(--cyan);
}

/* soft-fade spotlight photos into the aurora background */
.page-im .im-spotlight .svc-spotlight__media {
  overflow: visible;
}
.page-im .im-spotlight .svc-spotlight__media img {
  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    );
  mask-composite: intersect;
}

.im-editorial__list {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.im-editorial__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.45rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(135deg, rgba(4, 228, 255, 0.05), transparent 42%),
    rgba(255, 255, 255, 0.02);
}
.im-editorial__n {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(4, 228, 255, 0.35);
  line-height: 1.2;
  padding-top: 0.15rem;
}
.im-editorial__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.im-editorial__deck {
  margin: 0 0 0.7rem !important;
  color: rgba(4, 228, 255, 0.85);
  font-weight: 500;
  font-size: 0.98rem;
}
.im-editorial__item p {
  margin: 0;
  color: rgba(232, 236, 255, 0.7);
  line-height: 1.7;
}

.page-im .im-contact {
  border-color: rgba(4, 228, 255, 0.16);
  background:
    radial-gradient(
      90% 120% at 100% 0%,
      rgba(4, 228, 255, 0.1),
      transparent 50%
    ),
    var(--glass);
}

@media (prefers-reduced-motion: reduce) {
  .im-dash__live i,
  .im-dash__bar i,
  .im-dash__float,
  .im-cap {
    animation: none !important;
  }
  .im-cap:hover {
    transform: none;
  }
}

/* ============================================================
   Domain Name Registration — search / URL bar aesthetic
   ============================================================ */
.page-dn .dn-hero .lead {
  max-width: 36rem;
  line-height: 1.7;
}
.page-dn .dn-hero .svc-hero__sub {
  color: rgba(4, 228, 255, 0.88);
  font-weight: 500;
}

.dn-search {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.02;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .dn-search {
    display: none;
  }
}
.dn-search__glow {
  position: absolute;
  inset: 14% 8%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
}
.dn-search__panel {
  position: relative;
  width: 94%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(10, 14, 36, 0.94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  backdrop-filter: blur(12px);
  padding: 1rem 1rem 1.15rem;
}
.dn-search__browser {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dn-search__browser > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}
.dn-search__browser > span:nth-child(1) {
  background: #ff5f57;
}
.dn-search__browser > span:nth-child(2) {
  background: #febc2e;
}
.dn-search__browser > span:nth-child(3) {
  background: #28c840;
}
.dn-search__url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88rem;
  color: #fff;
}
.dn-search__url > .bi-lock-fill {
  color: #2bff88;
  font-size: 0.78rem;
}
.dn-search__typed {
  white-space: nowrap;
  overflow: hidden;
}
.dn-search__tld {
  color: var(--cyan);
  font-weight: 700;
}
.dn-search__cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--cyan);
  animation: dn-blink 1s step-end infinite;
}
@keyframes dn-blink {
  50% {
    opacity: 0;
  }
}
.dn-search__result {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(43, 255, 136, 0.22);
  background: rgba(43, 255, 136, 0.06);
}
.dn-search__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2bff88;
}
.dn-search__result p {
  margin: 0.55rem 0 0.85rem;
  color: rgba(232, 236, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}
.dn-search__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), #3263b9);
  color: #041018;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.dn-search__tlds {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.dn-search__tlds li {
  padding: 0.3rem 0.55rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  color: var(--dim);
}
.dn-search__tlds li.is-active {
  color: #041018;
  background: var(--cyan);
  border-color: transparent;
  font-weight: 700;
}
.dn-search__float {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 36, 0.9);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  animation: dn-float 5.5s ease-in-out infinite;
}
.dn-search__float--globe {
  top: 6%;
  right: 0;
  width: 2.6rem;
  height: 2.6rem;
  color: var(--cyan);
  font-size: 1.15rem;
}
.dn-search__float--www {
  bottom: 10%;
  left: -2%;
  padding: 0.45rem 0.7rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ff4ecb;
  animation-delay: 1s;
}
@keyframes dn-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.dn-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .dn-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .dn-services {
    grid-template-columns: 1fr;
  }
}
.dn-svc {
  padding: 1.45rem 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(8, 12, 32, 0.55);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.dn-svc:hover {
  border-color: rgba(4, 228, 255, 0.3);
  transform: translateY(-3px);
}
.dn-svc__ico {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 0.95rem;
  color: var(--cyan);
  background: rgba(4, 228, 255, 0.1);
  border: 1px solid rgba(4, 228, 255, 0.16);
  font-size: 1.15rem;
}
.dn-svc h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}
.dn-svc p {
  margin: 0;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* soft-fade spotlight photos */
.page-dn .dn-spotlight .svc-spotlight__media {
  overflow: visible;
}
.page-dn .dn-spotlight .svc-spotlight__media img {
  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    );
  mask-composite: intersect;
}

.dn-editorial__list {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.dn-editorial__item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.45rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(135deg, rgba(4, 228, 255, 0.05), transparent 42%),
    rgba(255, 255, 255, 0.02);
}
.dn-editorial__mark {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
  color: rgba(4, 228, 255, 0.5);
  padding-top: 0.1rem;
}
.dn-editorial__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.dn-editorial__deck {
  margin: 0 0 0.7rem !important;
  color: rgba(4, 228, 255, 0.85);
  font-weight: 500;
  font-size: 0.98rem;
}
.dn-editorial__item p {
  margin: 0;
  color: rgba(232, 236, 255, 0.7);
  line-height: 1.7;
}

.page-dn .dn-contact {
  border-color: rgba(4, 228, 255, 0.16);
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(4, 228, 255, 0.1), transparent 50%),
    var(--glass);
}

@media (prefers-reduced-motion: reduce) {
  .dn-search__cursor,
  .dn-search__float,
  .dn-svc {
    animation: none !important;
  }
  .dn-svc:hover {
    transform: none;
  }
}

/* ============================================================
   Web Hosting — corporate status / server aesthetic
   ============================================================ */
.page-wh .wh-hero .lead {
  max-width: 36rem;
  line-height: 1.7;
}
.page-wh .wh-hero .svc-hero__sub {
  color: rgba(4, 228, 255, 0.88);
  font-weight: 500;
}

.wh-status {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.02;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .wh-status {
    display: none;
  }
}
.wh-status__glow {
  position: absolute;
  inset: 14% 8%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.2), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
}
.wh-status__panel {
  position: relative;
  width: 94%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(10, 14, 36, 0.95);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.wh-status__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.wh-status__live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2bff88;
}
.wh-status__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2bff88;
  box-shadow: 0 0 0 0 rgba(43, 255, 136, 0.5);
  animation: wh-pulse 1.8s ease-out infinite;
}
@keyframes wh-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 255, 136, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(43, 255, 136, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(43, 255, 136, 0);
  }
}
.wh-status__top em {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.wh-status__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 1.1rem 1.1rem 0.35rem;
}
.wh-status__metrics div {
  padding: 0.75rem 0.55rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}
.wh-status__metrics b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.wh-status__metrics span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  color: var(--dim);
  line-height: 1.3;
}
.wh-status__rack {
  margin: 1rem 1.1rem;
  padding: 0.85rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 0.45rem;
}
.wh-status__blade {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  height: 1.35rem;
  padding: 0 0.65rem;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.wh-status__blade i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.wh-status__blade.is-on i:nth-child(1) {
  background: #2bff88;
}
.wh-status__blade.is-on i:nth-child(2) {
  background: var(--cyan);
}
.wh-status__blade.is-on i:nth-child(3) {
  background: rgba(255, 255, 255, 0.35);
}
.wh-status__blade.is-pulse i:nth-child(1) {
  background: #ffc636;
  animation: wh-blink 1.2s step-end infinite;
}
.wh-status__blade.is-pulse i:nth-child(2) {
  background: var(--cyan);
}
@keyframes wh-blink {
  50% {
    opacity: 0.35;
  }
}
.wh-status__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 1.1rem 1.15rem;
}
.wh-status__footer span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--dim);
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.wh-status__footer i {
  color: var(--cyan);
  font-size: 0.8rem;
}

.wh-trust {
  padding-top: 0;
}
.wh-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 800px) {
  .wh-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.wh-trust__item {
  padding: 1.35rem 1.2rem;
  background: rgba(8, 12, 32, 0.85);
  text-align: center;
}
.wh-trust__item b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.wh-trust__item span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--dim);
}

.wh-plan {
  overflow: visible;
}
.wh-plan .price-card__tag {
  z-index: 3;
}
.wh-plan__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: auto;
  max-width: max-content;
  margin: 0 0 0.75rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #041018;
  background: linear-gradient(135deg, #ffc636, #ff8a3d);
}
.price-card--featured .wh-plan__badge {
  margin-top: 0.55rem;
}
.wh-plan__tagline {
  margin: -0.15rem 0 0.85rem;
  color: var(--dim);
  font-size: 0.9rem;
}
.wh-plan .price-card__price small {
  margin-left: 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dim);
  vertical-align: middle;
}
.wh-plan__note {
  margin: 0 0 1.1rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(4, 228, 255, 0.75);
}

.wh-editorial__list {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.wh-editorial__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.45rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(135deg, rgba(4, 228, 255, 0.05), transparent 42%),
    rgba(255, 255, 255, 0.02);
}
.wh-editorial__n {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(4, 228, 255, 0.35);
  line-height: 1.2;
  padding-top: 0.15rem;
}
.wh-editorial__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.wh-editorial__deck {
  margin: 0 0 0.7rem !important;
  color: rgba(4, 228, 255, 0.85);
  font-weight: 500;
  font-size: 0.98rem;
}
.wh-editorial__item p {
  margin: 0;
  color: rgba(232, 236, 255, 0.7);
  line-height: 1.7;
}

.page-wh .wh-contact {
  border-color: rgba(4, 228, 255, 0.16);
  background:
    radial-gradient(
      90% 120% at 100% 0%,
      rgba(4, 228, 255, 0.1),
      transparent 50%
    ),
    var(--glass);
}

@media (prefers-reduced-motion: reduce) {
  .wh-status__live i,
  .wh-status__blade.is-pulse i:nth-child(1) {
    animation: none !important;
  }
}

/* ============================================================
   Soft-fade spotlight media (shared)
   ============================================================ */
.soft-fade-media {
  overflow: visible;
}
.soft-fade-media img {
  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    );
  mask-composite: intersect;
}

/* ============================================================
   Custom Website Design — wireframe canvas aesthetic
   ============================================================ */
.page-cwd .cwd-hero .lead {
  max-width: 36rem;
  line-height: 1.7;
}
.page-cwd .cwd-hero .svc-hero__sub {
  color: rgba(4, 228, 255, 0.88);
  font-weight: 500;
}

.cwd-canvas {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.02;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .cwd-canvas {
    display: none;
  }
}
.cwd-canvas__glow {
  position: absolute;
  inset: 14% 8%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
}
.cwd-canvas__panel {
  position: relative;
  width: 94%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(10, 14, 36, 0.94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.cwd-canvas__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}
.cwd-canvas__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.cwd-canvas__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.cwd-canvas__chrome > span:nth-child(2) {
  background: #febc2e;
}
.cwd-canvas__chrome > span:nth-child(3) {
  background: #28c840;
}
.cwd-canvas__chrome em {
  margin-left: 0.5rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.cwd-canvas__stage {
  padding: 1rem 1.05rem 1.15rem;
  display: grid;
  gap: 0.85rem;
}
.cwd-canvas__nav {
  display: flex;
  gap: 0.45rem;
}
.cwd-canvas__nav i {
  display: block;
  height: 8px;
  width: 18%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}
.cwd-canvas__nav i:first-child {
  width: 28%;
  background: rgba(4, 228, 255, 0.45);
}
.cwd-canvas__hero-block {
  padding: 1.1rem 1rem;
  border-radius: 14px;
  border: 1px dashed rgba(4, 228, 255, 0.28);
  background: rgba(4, 228, 255, 0.05);
  display: grid;
  gap: 0.55rem;
}
.cwd-canvas__hero-block b,
.cwd-canvas__hero-block span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}
.cwd-canvas__hero-block b {
  width: 62%;
  height: 14px;
}
.cwd-canvas__hero-block span {
  width: 78%;
}
.cwd-canvas__cta {
  width: 34% !important;
  height: 22px !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, var(--cyan), #3263b9) !important;
  animation: cwd-pulse 2.8s ease-in-out infinite;
}
.cwd-canvas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.cwd-canvas__grid div {
  aspect-ratio: 1 / 0.85;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}
.cwd-canvas__grid div:nth-child(2) {
  border-color: rgba(4, 228, 255, 0.28);
  background: rgba(4, 228, 255, 0.08);
}
@keyframes cwd-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}
.cwd-canvas__float {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 36, 0.9);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  animation: cwd-float 5.5s ease-in-out infinite;
}
.cwd-canvas__float--pen {
  top: 8%;
  right: 0;
  width: 2.6rem;
  height: 2.6rem;
  color: var(--cyan);
  font-size: 1.1rem;
}
.cwd-canvas__float--lay {
  bottom: 12%;
  left: -2%;
  padding: 0.45rem 0.7rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ff4ecb;
  animation-delay: 1s;
}
@keyframes cwd-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.cwd-caps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .cwd-caps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .cwd-caps {
    grid-template-columns: 1fr;
  }
}
.cwd-cap {
  padding: 1.45rem 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(8, 12, 32, 0.55);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.cwd-cap:hover {
  border-color: rgba(4, 228, 255, 0.3);
  transform: translateY(-3px);
}
.cwd-cap__ico {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 0.95rem;
  color: var(--cyan);
  background: rgba(4, 228, 255, 0.1);
  border: 1px solid rgba(4, 228, 255, 0.16);
  font-size: 1.15rem;
}
.cwd-cap h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}
.cwd-cap p {
  margin: 0;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

.cwd-spotlight__points {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.cwd-spotlight__points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 550;
  color: #fff;
}
.cwd-spotlight__points i {
  color: var(--cyan);
}

.cwd-editorial__list {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.cwd-editorial__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.45rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(135deg, rgba(4, 228, 255, 0.05), transparent 42%),
    rgba(255, 255, 255, 0.02);
}
.cwd-editorial__n {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(4, 228, 255, 0.35);
  line-height: 1.2;
  padding-top: 0.15rem;
}
.cwd-editorial__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.cwd-editorial__deck {
  margin: 0 0 0.7rem !important;
  color: rgba(4, 228, 255, 0.85);
  font-weight: 500;
  font-size: 0.98rem;
}
.cwd-editorial__item p {
  margin: 0;
  color: rgba(232, 236, 255, 0.7);
  line-height: 1.7;
}

.page-cwd .cwd-contact {
  border-color: rgba(4, 228, 255, 0.16);
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(4, 228, 255, 0.1), transparent 50%),
    var(--glass);
}

@media (prefers-reduced-motion: reduce) {
  .cwd-canvas__cta,
  .cwd-canvas__float,
  .cwd-cap {
    animation: none !important;
  }
  .cwd-cap:hover {
    transform: none;
  }
}

/* ============================================================
   API Integration — connected nodes graph
   ============================================================ */
.page-api .api-hero .lead {
  max-width: 36rem;
  line-height: 1.7;
}
.page-api .api-hero .svc-hero__sub {
  color: rgba(4, 228, 255, 0.88);
  font-weight: 500;
}

.api-nodes {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.02;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .api-nodes {
    display: none;
  }
}
.api-nodes__glow {
  position: absolute;
  inset: 14% 8%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
}
.api-nodes__panel {
  position: relative;
  width: 94%;
  aspect-ratio: 1 / 0.95;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(10, 14, 36, 0.94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.api-nodes__svg {
  position: absolute;
  inset: 8% 6%;
  width: 88%;
  height: 78%;
}
.api-nodes__line {
  stroke: rgba(4, 228, 255, 0.35);
  stroke-width: 2;
  stroke-dasharray: 6 6;
  animation: api-dash 8s linear infinite;
}
.api-nodes__line--delay {
  animation-delay: -3s;
  stroke: rgba(255, 78, 203, 0.3);
}
@keyframes api-dash {
  to {
    stroke-dashoffset: -80;
  }
}
.api-nodes__node {
  position: absolute;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 36, 0.95);
  color: var(--cyan);
  font-size: 1.05rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.api-nodes__node.is-hub {
  width: 3.2rem;
  height: 3.2rem;
  border-color: rgba(4, 228, 255, 0.45);
  background: rgba(4, 228, 255, 0.12);
  animation: api-hub 2.6s ease-in-out infinite;
}
.api-nodes__node--a {
  top: 14%;
  left: 14%;
}
.api-nodes__node--b {
  top: 14%;
  right: 14%;
  color: #ff4ecb;
}
.api-nodes__node--c {
  top: 42%;
  left: 50%;
  transform: translateX(-50%);
}
.api-nodes__node--d {
  bottom: 18%;
  left: 16%;
  color: #febc2e;
}
.api-nodes__node--e {
  bottom: 18%;
  right: 16%;
}
@keyframes api-hub {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(4, 228, 255, 0.25);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(4, 228, 255, 0);
  }
}
.api-nodes__label {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #041018;
  background: var(--cyan);
}

.api-caps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .api-caps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .api-caps {
    grid-template-columns: 1fr;
  }
}
.api-cap {
  padding: 1.45rem 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(8, 12, 32, 0.55);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.api-cap:hover {
  border-color: rgba(4, 228, 255, 0.3);
  transform: translateY(-3px);
}
.api-cap__ico {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 0.95rem;
  color: var(--cyan);
  background: rgba(4, 228, 255, 0.1);
  border: 1px solid rgba(4, 228, 255, 0.16);
  font-size: 1.15rem;
}
.api-cap h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}
.api-cap p {
  margin: 0;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

.api-spotlight__points {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.api-spotlight__points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 550;
  color: #fff;
}
.api-spotlight__points i {
  color: var(--cyan);
}

.api-editorial__list {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.api-editorial__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.45rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(135deg, rgba(4, 228, 255, 0.05), transparent 42%),
    rgba(255, 255, 255, 0.02);
}
.api-editorial__n {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(4, 228, 255, 0.35);
  line-height: 1.2;
  padding-top: 0.15rem;
}
.api-editorial__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.api-editorial__deck {
  margin: 0 0 0.7rem !important;
  color: rgba(4, 228, 255, 0.85);
  font-weight: 500;
  font-size: 0.98rem;
}
.api-editorial__item p {
  margin: 0;
  color: rgba(232, 236, 255, 0.7);
  line-height: 1.7;
}

.page-api .api-contact {
  border-color: rgba(4, 228, 255, 0.16);
  background:
    radial-gradient(
      90% 120% at 100% 0%,
      rgba(4, 228, 255, 0.1),
      transparent 50%
    ),
    var(--glass);
}

@media (prefers-reduced-motion: reduce) {
  .api-nodes__line,
  .api-nodes__node.is-hub,
  .api-cap {
    animation: none !important;
  }
  .api-cap:hover {
    transform: none;
  }
}

/* ============================================================
   Mobile App Development — phone frame aesthetic
   ============================================================ */
.page-mob .mob-hero .lead {
  max-width: 36rem;
  line-height: 1.7;
}
.page-mob .mob-hero .svc-hero__sub {
  color: rgba(4, 228, 255, 0.88);
  font-weight: 500;
}

.mob-phone {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.02;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .mob-phone {
    display: none;
  }
}
.mob-phone__glow {
  position: absolute;
  inset: 10% 18%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.24), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
}
.mob-phone__device {
  position: relative;
  width: 48%;
  aspect-ratio: 9 / 18.5;
  border-radius: 28px;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(160deg, #1a2038, #0a0e24);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}
.mob-phone__notch {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 0.55rem;
  border-radius: 999px;
  background: #050814;
  z-index: 2;
}
.mob-phone__screen {
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 228, 255, 0.08), transparent 40%), #0d1228;
  padding: 1.35rem 0.7rem 0.7rem;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 0.65rem;
}
.mob-phone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.7);
}
.mob-phone__status span {
  width: 1.1rem;
  height: 0.45rem;
  border-radius: 2px;
  background: rgba(43, 255, 136, 0.7);
}
.mob-phone__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mob-phone__head b {
  display: block;
  width: 48%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}
.mob-phone__head i {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(4, 228, 255, 0.35);
}
.mob-phone__cards {
  display: grid;
  gap: 0.4rem;
  align-content: start;
}
.mob-phone__card {
  height: 2.1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.mob-phone__card.is-active {
  background: rgba(4, 228, 255, 0.12);
  border-color: rgba(4, 228, 255, 0.35);
  animation: mob-card 3s ease-in-out infinite;
}
@keyframes mob-card {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}
.mob-phone__bars {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 3.2rem;
  padding: 0 0.15rem;
}
.mob-phone__bars span {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--cyan), rgba(4, 228, 255, 0.2));
  animation: mob-bar 2.8s ease-in-out infinite;
}
.mob-phone__bars span:nth-child(2) {
  animation-delay: 0.2s;
}
.mob-phone__bars span:nth-child(3) {
  animation-delay: 0.4s;
}
.mob-phone__bars span:nth-child(4) {
  animation-delay: 0.6s;
}
@keyframes mob-bar {
  0%,
  100% {
    opacity: 0.75;
  }
  50% {
    opacity: 1;
  }
}
.mob-phone__dock {
  display: flex;
  justify-content: space-around;
  padding: 0.45rem 0.2rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
}
.mob-phone__dock i {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}
.mob-phone__dock i:first-child {
  background: var(--cyan);
}
.mob-phone__float {
  position: absolute;
  padding: 0.4rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 36, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  animation: mob-float 5.5s ease-in-out infinite;
}
.mob-phone__float--ios {
  top: 16%;
  right: 6%;
  color: var(--cyan);
}
.mob-phone__float--and {
  bottom: 18%;
  left: 4%;
  color: #2bff88;
  animation-delay: 1s;
}
@keyframes mob-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.mob-caps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .mob-caps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .mob-caps {
    grid-template-columns: 1fr;
  }
}
.mob-cap {
  padding: 1.45rem 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(8, 12, 32, 0.55);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.mob-cap:hover {
  border-color: rgba(4, 228, 255, 0.3);
  transform: translateY(-3px);
}
.mob-cap__ico {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 0.95rem;
  color: var(--cyan);
  background: rgba(4, 228, 255, 0.1);
  border: 1px solid rgba(4, 228, 255, 0.16);
  font-size: 1.15rem;
}
.mob-cap h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}
.mob-cap p {
  margin: 0;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

.mob-spotlight__points {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.mob-spotlight__points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 550;
  color: #fff;
}
.mob-spotlight__points i {
  color: var(--cyan);
}

.mob-editorial__list {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.mob-editorial__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.45rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(135deg, rgba(4, 228, 255, 0.05), transparent 42%),
    rgba(255, 255, 255, 0.02);
}
.mob-editorial__n {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(4, 228, 255, 0.35);
  line-height: 1.2;
  padding-top: 0.15rem;
}
.mob-editorial__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.mob-editorial__deck {
  margin: 0 0 0.7rem !important;
  color: rgba(4, 228, 255, 0.85);
  font-weight: 500;
  font-size: 0.98rem;
}
.mob-editorial__item p {
  margin: 0;
  color: rgba(232, 236, 255, 0.7);
  line-height: 1.7;
}

.page-mob .mob-contact {
  border-color: rgba(4, 228, 255, 0.16);
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(4, 228, 255, 0.1), transparent 50%),
    var(--glass);
}

@media (prefers-reduced-motion: reduce) {
  .mob-phone__card.is-active,
  .mob-phone__bars span,
  .mob-phone__float,
  .mob-cap {
    animation: none !important;
  }
  .mob-cap:hover {
    transform: none;
  }
}

/* ============================================================
   Point of Sale — till / receipt aesthetic
   ============================================================ */
.page-pos .pos-hero .lead {
  max-width: 36rem;
  line-height: 1.7;
}
.page-pos .pos-hero .svc-hero__sub {
  color: rgba(4, 228, 255, 0.88);
  font-weight: 500;
}

.pos-till {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.02;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .pos-till {
    display: none;
  }
}
.pos-till__glow {
  position: absolute;
  inset: 14% 8%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
}
.pos-till__panel {
  position: relative;
  width: 90%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(10, 14, 36, 0.95);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  padding: 1rem 1.05rem 1.15rem;
  overflow: hidden;
}
.pos-till__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}
.pos-till__live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2bff88;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pos-till__live i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #2bff88;
  animation: pos-blink 1.4s ease-in-out infinite;
}
@keyframes pos-blink {
  50% {
    opacity: 0.35;
  }
}
.pos-till__top em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pos-till__lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.pos-till__lines li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}
.pos-till__lines span {
  color: rgba(232, 236, 255, 0.8);
}
.pos-till__lines b {
  color: #fff;
  font-weight: 700;
}
.pos-till__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0.9rem 0 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}
.pos-till__total span {
  color: var(--dim);
  font-size: 0.85rem;
}
.pos-till__total strong {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--cyan);
}
.pos-till__actions {
  display: flex;
  gap: 0.5rem;
}
.pos-till__pay {
  flex: 1;
  text-align: center;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), #3263b9);
  color: #041018;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.pos-till__print {
  width: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.04);
}
.pos-till__receipt {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  opacity: 0.55;
}
.pos-till__receipt i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}
.pos-till__receipt i:nth-child(1) {
  width: 70%;
}
.pos-till__receipt i:nth-child(2) {
  width: 55%;
}
.pos-till__receipt i:nth-child(3) {
  width: 40%;
}

.pos-caps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .pos-caps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .pos-caps {
    grid-template-columns: 1fr;
  }
}
.pos-cap {
  padding: 1.45rem 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(8, 12, 32, 0.55);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.pos-cap:hover {
  border-color: rgba(4, 228, 255, 0.3);
  transform: translateY(-3px);
}
.pos-cap__ico {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 0.95rem;
  color: var(--cyan);
  background: rgba(4, 228, 255, 0.1);
  border: 1px solid rgba(4, 228, 255, 0.16);
  font-size: 1.15rem;
}
.pos-cap h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}
.pos-cap p {
  margin: 0;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

.pos-spotlight__points {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.pos-spotlight__points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 550;
  color: #fff;
}
.pos-spotlight__points i {
  color: var(--cyan);
}

.pos-editorial__list {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.pos-editorial__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.45rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(135deg, rgba(4, 228, 255, 0.05), transparent 42%),
    rgba(255, 255, 255, 0.02);
}
.pos-editorial__n {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(4, 228, 255, 0.35);
  line-height: 1.2;
  padding-top: 0.15rem;
}
.pos-editorial__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.pos-editorial__deck {
  margin: 0 0 0.7rem !important;
  color: rgba(4, 228, 255, 0.85);
  font-weight: 500;
  font-size: 0.98rem;
}
.pos-editorial__item p {
  margin: 0;
  color: rgba(232, 236, 255, 0.7);
  line-height: 1.7;
}

.page-pos .pos-contact {
  border-color: rgba(4, 228, 255, 0.16);
  background:
    radial-gradient(
      90% 120% at 100% 0%,
      rgba(4, 228, 255, 0.1),
      transparent 50%
    ),
    var(--glass);
}

@media (prefers-reduced-motion: reduce) {
  .pos-till__live i,
  .pos-cap {
    animation: none !important;
  }
  .pos-cap:hover {
    transform: none;
  }
}

/* ============================================================
   Shopify Web Design — storefront product grid
   ============================================================ */
.page-shy .shy-hero .lead {
  max-width: 36rem;
  line-height: 1.7;
}
.page-shy .shy-hero .svc-hero__sub {
  color: rgba(4, 228, 255, 0.88);
  font-weight: 500;
}

.shy-store {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.02;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .shy-store {
    display: none;
  }
}
.shy-store__glow {
  position: absolute;
  inset: 14% 8%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
}
.shy-store__panel {
  position: relative;
  width: 94%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(10, 14, 36, 0.95);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.shy-store__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}
.shy-store__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.shy-store__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.shy-store__chrome > span:nth-child(2) {
  background: #febc2e;
}
.shy-store__chrome > span:nth-child(3) {
  background: #28c840;
}
.shy-store__chrome em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.7rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.shy-store__banner {
  height: 4.2rem;
  margin: 0.85rem 0.85rem 0.7rem;
  border-radius: 12px;
  background:
    linear-gradient(120deg, rgba(4, 228, 255, 0.25), rgba(255, 78, 203, 0.18)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: shy-banner 4s ease-in-out infinite;
}
@keyframes shy-banner {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.25);
  }
}
.shy-store__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0 0.85rem 0.85rem;
}
.shy-store__grid article {
  padding: 0.45rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.shy-store__thumb {
  aspect-ratio: 1 / 0.85;
  border-radius: 8px;
  margin-bottom: 0.4rem;
  background: linear-gradient(
    145deg,
    rgba(4, 228, 255, 0.35),
    rgba(50, 99, 185, 0.35)
  );
}
.shy-store__thumb--b {
  background: linear-gradient(
    145deg,
    rgba(255, 78, 203, 0.35),
    rgba(50, 99, 185, 0.3)
  );
}
.shy-store__thumb--c {
  background: linear-gradient(
    145deg,
    rgba(254, 188, 46, 0.35),
    rgba(4, 228, 255, 0.2)
  );
}
.shy-store__thumb--d {
  background: linear-gradient(
    145deg,
    rgba(43, 255, 136, 0.28),
    rgba(4, 228, 255, 0.22)
  );
}
.shy-store__grid b,
.shy-store__grid span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.shy-store__grid b {
  width: 70%;
  margin-bottom: 0.28rem;
}
.shy-store__grid span {
  width: 40%;
  background: rgba(4, 228, 255, 0.45);
}
.shy-store__cart {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(10, 14, 36, 0.92);
  border: 1px solid rgba(4, 228, 255, 0.3);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  animation: shy-cart 5s ease-in-out infinite;
}
@keyframes shy-cart {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.shy-caps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .shy-caps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .shy-caps {
    grid-template-columns: 1fr;
  }
}
.shy-cap {
  padding: 1.45rem 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(8, 12, 32, 0.55);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.shy-cap:hover {
  border-color: rgba(4, 228, 255, 0.3);
  transform: translateY(-3px);
}
.shy-cap__ico {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 0.95rem;
  color: var(--cyan);
  background: rgba(4, 228, 255, 0.1);
  border: 1px solid rgba(4, 228, 255, 0.16);
  font-size: 1.15rem;
}
.shy-cap h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}
.shy-cap p {
  margin: 0;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

.shy-spotlight__points {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.shy-spotlight__points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 550;
  color: #fff;
}
.shy-spotlight__points i {
  color: var(--cyan);
}

.shy-editorial__list {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.shy-editorial__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.45rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(135deg, rgba(4, 228, 255, 0.05), transparent 42%),
    rgba(255, 255, 255, 0.02);
}
.shy-editorial__n {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(4, 228, 255, 0.35);
  line-height: 1.2;
  padding-top: 0.15rem;
}
.shy-editorial__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.shy-editorial__deck {
  margin: 0 0 0.7rem !important;
  color: rgba(4, 228, 255, 0.85);
  font-weight: 500;
  font-size: 0.98rem;
}
.shy-editorial__item p {
  margin: 0;
  color: rgba(232, 236, 255, 0.7);
  line-height: 1.7;
}

.page-shy .shy-contact {
  border-color: rgba(4, 228, 255, 0.16);
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(4, 228, 255, 0.1), transparent 50%),
    var(--glass);
}

@media (prefers-reduced-motion: reduce) {
  .shy-store__banner,
  .shy-store__cart,
  .shy-cap {
    animation: none !important;
  }
  .shy-cap:hover {
    transform: none;
  }
}

/* ============================================================
   WordPress Web Design — block editor aesthetic
   ============================================================ */
.page-wp .wp-hero .lead {
  max-width: 36rem;
  line-height: 1.7;
}
.page-wp .wp-hero .svc-hero__sub {
  color: rgba(4, 228, 255, 0.88);
  font-weight: 500;
}

.wp-blocks {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.02;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .wp-blocks {
    display: none;
  }
}
.wp-blocks__glow {
  position: absolute;
  inset: 14% 8%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
}
.wp-blocks__panel {
  position: relative;
  width: 94%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(10, 14, 36, 0.95);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.wp-blocks__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  color: var(--cyan);
}
.wp-blocks__bar em {
  flex: 1;
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(232, 236, 255, 0.75);
}
.wp-blocks__bar span {
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
  background: var(--cyan);
  color: #041018;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.wp-blocks__canvas {
  padding: 0.9rem 0.9rem 0.7rem;
  display: grid;
  gap: 0.55rem;
}
.wp-blocks__block {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.7rem;
}
.wp-blocks__block--hero {
  min-height: 4.2rem;
  border-color: rgba(4, 228, 255, 0.28);
  background: rgba(4, 228, 255, 0.06);
  display: grid;
  gap: 0.45rem;
  align-content: center;
}
.wp-blocks__block--hero b,
.wp-blocks__block--hero i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}
.wp-blocks__block--hero b {
  width: 55%;
  height: 12px;
}
.wp-blocks__block--hero i {
  width: 72%;
}
.wp-blocks__block--text i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 0.35rem;
}
.wp-blocks__block--text i:nth-child(1) {
  width: 90%;
}
.wp-blocks__block--text i:nth-child(2) {
  width: 78%;
}
.wp-blocks__block--text i:nth-child(3) {
  width: 64%;
  margin-bottom: 0;
}
.wp-blocks__row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.55rem;
}
.wp-blocks__block--media {
  min-height: 3.4rem;
  background:
    linear-gradient(135deg, rgba(4, 228, 255, 0.2), rgba(255, 78, 203, 0.15)),
    rgba(255, 255, 255, 0.03);
}
.wp-blocks__block--cta {
  min-height: 3.4rem;
  display: grid;
  place-items: center;
  border-style: dashed;
  border-color: rgba(4, 228, 255, 0.35);
}
.wp-blocks__block--cta::after {
  content: "";
  width: 58%;
  height: 1.5rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), #3263b9);
  animation: wp-cta 2.8s ease-in-out infinite;
}
@keyframes wp-cta {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}
.wp-blocks__inserter {
  margin: 0 0.9rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem;
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  color: rgba(232, 236, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 600;
}

.wp-caps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .wp-caps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .wp-caps {
    grid-template-columns: 1fr;
  }
}
.wp-cap {
  padding: 1.45rem 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(8, 12, 32, 0.55);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.wp-cap:hover {
  border-color: rgba(4, 228, 255, 0.3);
  transform: translateY(-3px);
}
.wp-cap__ico {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 0.95rem;
  color: var(--cyan);
  background: rgba(4, 228, 255, 0.1);
  border: 1px solid rgba(4, 228, 255, 0.16);
  font-size: 1.15rem;
}
.wp-cap h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}
.wp-cap p {
  margin: 0;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

.wp-spotlight__points {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.wp-spotlight__points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 550;
  color: #fff;
}
.wp-spotlight__points i {
  color: var(--cyan);
}

.wp-editorial__list {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.wp-editorial__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.45rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(135deg, rgba(4, 228, 255, 0.05), transparent 42%),
    rgba(255, 255, 255, 0.02);
}
.wp-editorial__n {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(4, 228, 255, 0.35);
  line-height: 1.2;
  padding-top: 0.15rem;
}
.wp-editorial__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.wp-editorial__deck {
  margin: 0 0 0.7rem !important;
  color: rgba(4, 228, 255, 0.85);
  font-weight: 500;
  font-size: 0.98rem;
}
.wp-editorial__item p {
  margin: 0;
  color: rgba(232, 236, 255, 0.7);
  line-height: 1.7;
}

.page-wp .wp-contact {
  border-color: rgba(4, 228, 255, 0.16);
  background:
    radial-gradient(
      90% 120% at 100% 0%,
      rgba(4, 228, 255, 0.1),
      transparent 50%
    ),
    var(--glass);
}

@media (prefers-reduced-motion: reduce) {
  .wp-blocks__block--cta::after,
  .wp-cap {
    animation: none !important;
  }
  .wp-cap:hover {
    transform: none;
  }
}

/* ============================================================
   Development services — shared + per-page hero visuals
   ============================================================ */
.soft-fade-media {
  overflow: visible;
}
.soft-fade-media img {
  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 14%,
      #000 86%,
      transparent 100%
    );
  mask-composite: intersect;
}

.page-cwd .cwd-hero .lead,
.page-api .api-hero .lead,
.page-mob .mob-hero .lead,
.page-pos .pos-hero .lead,
.page-shy .shy-hero .lead,
.page-wp .wp-hero .lead {
  max-width: 36rem;
  line-height: 1.7;
}
.page-cwd .svc-hero__sub,
.page-api .svc-hero__sub,
.page-mob .svc-hero__sub,
.page-pos .svc-hero__sub,
.page-shy .svc-hero__sub,
.page-wp .svc-hero__sub {
  color: rgba(4, 228, 255, 0.88);
  font-weight: 500;
}

/* shared caps / editorial / points */
.cwd-caps,
.api-caps,
.mob-caps,
.pos-caps,
.shy-caps,
.wp-caps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .cwd-caps,
  .api-caps,
  .mob-caps,
  .pos-caps,
  .shy-caps,
  .wp-caps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .cwd-caps,
  .api-caps,
  .mob-caps,
  .pos-caps,
  .shy-caps,
  .wp-caps {
    grid-template-columns: 1fr;
  }
}
.cwd-cap,
.api-cap,
.mob-cap,
.pos-cap,
.shy-cap,
.wp-cap {
  padding: 1.45rem 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(8, 12, 32, 0.55);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.cwd-cap:hover,
.api-cap:hover,
.mob-cap:hover,
.pos-cap:hover,
.shy-cap:hover,
.wp-cap:hover {
  border-color: rgba(4, 228, 255, 0.3);
  transform: translateY(-3px);
}
.cwd-cap__ico,
.api-cap__ico,
.mob-cap__ico,
.pos-cap__ico,
.shy-cap__ico,
.wp-cap__ico {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 0.95rem;
  color: var(--cyan);
  background: rgba(4, 228, 255, 0.1);
  border: 1px solid rgba(4, 228, 255, 0.16);
  font-size: 1.15rem;
}
.cwd-cap h3,
.api-cap h3,
.mob-cap h3,
.pos-cap h3,
.shy-cap h3,
.wp-cap h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}
.cwd-cap p,
.api-cap p,
.mob-cap p,
.pos-cap p,
.shy-cap p,
.wp-cap p {
  margin: 0;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

.cwd-spotlight__points,
.api-spotlight__points,
.mob-spotlight__points,
.pos-spotlight__points,
.shy-spotlight__points,
.wp-spotlight__points {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.cwd-spotlight__points li,
.api-spotlight__points li,
.mob-spotlight__points li,
.pos-spotlight__points li,
.shy-spotlight__points li,
.wp-spotlight__points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 550;
  color: #fff;
}
.cwd-spotlight__points i,
.api-spotlight__points i,
.mob-spotlight__points i,
.pos-spotlight__points i,
.shy-spotlight__points i,
.wp-spotlight__points i {
  color: var(--cyan);
}

.cwd-editorial__list,
.api-editorial__list,
.mob-editorial__list,
.pos-editorial__list,
.shy-editorial__list,
.wp-editorial__list {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.cwd-editorial__item,
.api-editorial__item,
.mob-editorial__item,
.pos-editorial__item,
.shy-editorial__item,
.wp-editorial__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.45rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(135deg, rgba(4, 228, 255, 0.05), transparent 42%),
    rgba(255, 255, 255, 0.02);
}
.cwd-editorial__n,
.api-editorial__n,
.mob-editorial__n,
.pos-editorial__n,
.shy-editorial__n,
.wp-editorial__n {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(4, 228, 255, 0.35);
  line-height: 1.2;
  padding-top: 0.15rem;
}
.cwd-editorial__item h3,
.api-editorial__item h3,
.mob-editorial__item h3,
.pos-editorial__item h3,
.shy-editorial__item h3,
.wp-editorial__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.cwd-editorial__deck,
.api-editorial__deck,
.mob-editorial__deck,
.pos-editorial__deck,
.shy-editorial__deck,
.wp-editorial__deck {
  margin: 0 0 0.7rem !important;
  color: rgba(4, 228, 255, 0.85);
  font-weight: 500;
  font-size: 0.98rem;
}
.cwd-editorial__item p,
.api-editorial__item p,
.mob-editorial__item p,
.pos-editorial__item p,
.shy-editorial__item p,
.wp-editorial__item p {
  margin: 0;
  color: rgba(232, 236, 255, 0.7);
  line-height: 1.7;
}

.page-cwd .cwd-contact,
.page-api .api-contact,
.page-mob .mob-contact,
.page-pos .pos-contact,
.page-shy .shy-contact,
.page-wp .wp-contact {
  border-color: rgba(4, 228, 255, 0.16);
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(4, 228, 255, 0.1), transparent 50%),
    var(--glass);
}

/* ---- Custom website: wireframe canvas ---- */
.cwd-canvas {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.02;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .cwd-canvas {
    display: none;
  }
}
.cwd-canvas__glow {
  position: absolute;
  inset: 14% 8%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
}
.cwd-canvas__panel {
  position: relative;
  width: 92%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(10, 14, 36, 0.94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.cwd-canvas__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cwd-canvas__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.cwd-canvas__chrome span:nth-child(1) {
  background: #ff5f57;
}
.cwd-canvas__chrome span:nth-child(2) {
  background: #febc2e;
}
.cwd-canvas__chrome span:nth-child(3) {
  background: #28c840;
}
.cwd-canvas__chrome em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.7rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.cwd-canvas__stage {
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}
.cwd-canvas__nav {
  display: flex;
  gap: 0.45rem;
}
.cwd-canvas__nav i {
  height: 8px;
  flex: 1;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}
.cwd-canvas__hero-block {
  padding: 1.1rem;
  border-radius: 12px;
  background: rgba(4, 228, 255, 0.08);
  border: 1px dashed rgba(4, 228, 255, 0.28);
  display: grid;
  gap: 0.45rem;
}
.cwd-canvas__hero-block b {
  display: block;
  height: 12px;
  width: 62%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
}
.cwd-canvas__hero-block span {
  display: block;
  height: 8px;
  width: 88%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
}
.cwd-canvas__cta {
  width: 34% !important;
  height: 18px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--cyan), #3263b9) !important;
}
.cwd-canvas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.cwd-canvas__grid div {
  height: 54px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cwd-canvas__float {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 36, 0.9);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  animation: dev-float 5.5s ease-in-out infinite;
}
.cwd-canvas__float--pen {
  top: 8%;
  right: 0;
  width: 2.6rem;
  height: 2.6rem;
  color: var(--cyan);
}
.cwd-canvas__float--lay {
  bottom: 12%;
  left: 0;
  padding: 0.4rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff4ecb;
  animation-delay: 1s;
}

/* ---- API nodes ---- */
.api-nodes {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.02;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .api-nodes {
    display: none;
  }
}
.api-nodes__glow {
  position: absolute;
  inset: 12% 10%;
  background: radial-gradient(
    circle,
    rgba(124, 92, 255, 0.25),
    transparent 65%
  );
  filter: blur(28px);
  pointer-events: none;
}
.api-nodes__panel {
  position: relative;
  width: 92%;
  height: 86%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(10, 14, 36, 0.94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.api-nodes__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.api-nodes__line {
  stroke: rgba(4, 228, 255, 0.35);
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
  animation: api-dash 8s linear infinite;
}
.api-nodes__line--delay {
  animation-delay: -3s;
  stroke: rgba(124, 92, 255, 0.4);
}
@keyframes api-dash {
  to {
    stroke-dashoffset: -80;
  }
}
.api-nodes__node {
  position: absolute;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(4, 228, 255, 0.3);
  background: rgba(8, 12, 32, 0.95);
  color: var(--cyan);
  font-size: 1.05rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.api-nodes__node.is-hub {
  width: 3.1rem;
  height: 3.1rem;
  background: linear-gradient(
    145deg,
    rgba(4, 228, 255, 0.2),
    rgba(124, 92, 255, 0.25)
  );
  border-color: rgba(4, 228, 255, 0.5);
  color: #fff;
}
.api-nodes__node--a {
  top: 14%;
  left: 14%;
}
.api-nodes__node--b {
  top: 14%;
  right: 14%;
}
.api-nodes__node--c {
  top: 42%;
  left: 50%;
  transform: translateX(-50%);
}
.api-nodes__node--d {
  bottom: 16%;
  left: 14%;
}
.api-nodes__node--e {
  bottom: 16%;
  right: 14%;
}
.api-nodes__label {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2bff88;
}

/* ---- Mobile phone ---- */
.mob-phone {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 0.72;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .mob-phone {
    display: none;
  }
}
.mob-phone__glow {
  position: absolute;
  inset: 10% 8%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 65%);
  filter: blur(24px);
  pointer-events: none;
}
.mob-phone__device {
  position: relative;
  width: 68%;
  height: 92%;
  border-radius: 28px;
  padding: 0.45rem;
  background: linear-gradient(160deg, #1a2148, #0a0f24);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.mob-phone__notch {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 10px;
  border-radius: 0 0 10px 10px;
  background: #050816;
  z-index: 2;
}
.mob-phone__screen {
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #121938, #0b1028);
  padding: 1.35rem 0.75rem 0.75rem;
  display: grid;
  gap: 0.65rem;
  align-content: start;
}
.mob-phone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mob-phone__status em {
  font-style: normal;
  font-size: 0.65rem;
  color: var(--dim);
}
.mob-phone__status span {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
}
.mob-phone__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mob-phone__head b {
  width: 46%;
  height: 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
}
.mob-phone__head i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(4, 228, 255, 0.35);
}
.mob-phone__cards {
  display: grid;
  gap: 0.4rem;
}
.mob-phone__card {
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.mob-phone__card.is-active {
  background: linear-gradient(
    135deg,
    rgba(4, 228, 255, 0.2),
    rgba(124, 92, 255, 0.18)
  );
  border-color: rgba(4, 228, 255, 0.35);
}
.mob-phone__bars {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 48px;
  margin-top: 0.2rem;
}
.mob-phone__bars span {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--cyan), rgba(4, 228, 255, 0.15));
}
.mob-phone__dock {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 0.45rem 0.2rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
}
.mob-phone__dock i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.mob-phone__float {
  position: absolute;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 36, 0.92);
  animation: dev-float 5.5s ease-in-out infinite;
}
.mob-phone__float--ios {
  top: 12%;
  right: -4%;
  color: var(--cyan);
}
.mob-phone__float--and {
  bottom: 18%;
  left: -6%;
  color: #2bff88;
  animation-delay: 1s;
}

/* ---- POS till ---- */
.pos-till {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1.05;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .pos-till {
    display: none;
  }
}
.pos-till__glow {
  position: absolute;
  inset: 14% 8%;
  background: radial-gradient(
    circle,
    rgba(43, 255, 136, 0.18),
    transparent 65%
  );
  filter: blur(28px);
  pointer-events: none;
}
.pos-till__panel {
  position: relative;
  width: 92%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(10, 14, 36, 0.95);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  padding: 0 0 1rem;
}
.pos-till__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pos-till__live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2bff88;
}
.pos-till__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2bff88;
  animation: wh-pulse 1.8s ease-out infinite;
}
.pos-till__top em {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pos-till__lines {
  list-style: none;
  margin: 0;
  padding: 0.9rem 1.05rem 0.4rem;
  display: grid;
  gap: 0.55rem;
}
.pos-till__lines li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(232, 236, 255, 0.85);
  padding-bottom: 0.45rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.pos-till__lines b {
  color: #fff;
  font-weight: 650;
}
.pos-till__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 1.05rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(4, 228, 255, 0.08);
  border: 1px solid rgba(4, 228, 255, 0.2);
  font-weight: 700;
  color: #fff;
}
.pos-till__total strong {
  color: var(--cyan);
  font-size: 1.15rem;
}
.pos-till__actions {
  display: flex;
  gap: 0.55rem;
  padding: 0.35rem 1.05rem 0.85rem;
}
.pos-till__pay {
  flex: 1;
  text-align: center;
  padding: 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), #3263b9);
}
.pos-till__print {
  width: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cyan);
}
.pos-till__receipt {
  margin: 0 1.05rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  color: var(--dim);
  line-height: 1.55;
}

/* ---- Shopify store ---- */
.shy-store {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.02;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .shy-store {
    display: none;
  }
}
.shy-store__glow {
  position: absolute;
  inset: 14% 8%;
  background: radial-gradient(circle, rgba(149, 191, 71, 0.2), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
}
.shy-store__panel {
  position: relative;
  width: 92%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(10, 14, 36, 0.94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.shy-store__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.shy-store__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.shy-store__chrome span:nth-child(1) {
  background: #ff5f57;
}
.shy-store__chrome span:nth-child(2) {
  background: #febc2e;
}
.shy-store__chrome span:nth-child(3) {
  background: #28c840;
}
.shy-store__chrome em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.7rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.shy-store__banner {
  height: 56px;
  margin: 0.85rem 0.85rem 0.65rem;
  border-radius: 12px;
  background: linear-gradient(
    120deg,
    rgba(149, 191, 71, 0.35),
    rgba(4, 228, 255, 0.2)
  );
}
.shy-store__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0 0.85rem 0.85rem;
}
.shy-store__grid > div {
  padding: 0.55rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.shy-store__thumb {
  height: 48px;
  border-radius: 8px;
  margin-bottom: 0.45rem;
  background: linear-gradient(
    135deg,
    rgba(4, 228, 255, 0.25),
    rgba(124, 92, 255, 0.2)
  );
}
.shy-store__thumb--b {
  background: linear-gradient(
    135deg,
    rgba(255, 78, 203, 0.25),
    rgba(255, 198, 54, 0.2)
  );
}
.shy-store__thumb--c {
  background: linear-gradient(
    135deg,
    rgba(43, 255, 136, 0.22),
    rgba(4, 228, 255, 0.18)
  );
}
.shy-store__thumb--d {
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.3),
    rgba(4, 228, 255, 0.15)
  );
}
.shy-store__grid b {
  display: block;
  height: 7px;
  width: 70%;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.3rem;
}
.shy-store__grid span {
  display: block;
  height: 6px;
  width: 40%;
  border-radius: 3px;
  background: rgba(149, 191, 71, 0.7);
}
.shy-store__cart {
  margin: 0 0.85rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(149, 191, 71, 0.15);
  border: 1px solid rgba(149, 191, 71, 0.35);
  color: #c8f07a;
  font-size: 0.78rem;
  font-weight: 650;
}

/* ---- WordPress blocks ---- */
.wp-blocks {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.02;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
@media (max-width: 991px) {
  .wp-blocks {
    display: none;
  }
}
.wp-blocks__glow {
  position: absolute;
  inset: 14% 8%;
  background: radial-gradient(
    circle,
    rgba(33, 117, 155, 0.28),
    transparent 65%
  );
  filter: blur(28px);
  pointer-events: none;
}
.wp-blocks__panel {
  position: relative;
  width: 92%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(10, 14, 36, 0.94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.wp-blocks__bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 650;
  color: #fff;
}
.wp-blocks__bar i {
  color: #21759b;
  font-size: 1.15rem;
}
.wp-blocks__bar em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.68rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.wp-blocks__canvas {
  padding: 0.9rem;
  display: grid;
  gap: 0.55rem;
}
.wp-blocks__block {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.7rem;
}
.wp-blocks__block--hero {
  min-height: 64px;
  background: rgba(33, 117, 155, 0.15);
  border-color: rgba(33, 117, 155, 0.35);
  display: grid;
  gap: 0.35rem;
  align-content: center;
}
.wp-blocks__block--hero b {
  display: block;
  height: 10px;
  width: 55%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
}
.wp-blocks__block--hero span {
  display: block;
  height: 7px;
  width: 80%;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.16);
}
.wp-blocks__block--text {
  display: grid;
  gap: 0.3rem;
}
.wp-blocks__block--text i {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
}
.wp-blocks__block--text i:nth-child(2) {
  width: 88%;
}
.wp-blocks__block--text i:nth-child(3) {
  width: 72%;
}
.wp-blocks__row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.55rem;
}
.wp-blocks__block--media {
  min-height: 52px;
  background: rgba(4, 228, 255, 0.1);
}
.wp-blocks__block--cta {
  min-height: 52px;
  background: linear-gradient(
    135deg,
    rgba(33, 117, 155, 0.35),
    rgba(4, 228, 255, 0.15)
  );
}
.wp-blocks__inserter {
  margin: 0 0.9rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 600;
}

@keyframes dev-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cwd-canvas__float,
  .mob-phone__float,
  .api-nodes__line,
  .pos-till__live i {
    animation: none !important;
  }
  .cwd-cap:hover,
  .api-cap:hover,
  .mob-cap:hover,
  .pos-cap:hover,
  .shy-cap:hover,
  .wp-cap:hover {
    transform: none;
  }
}

.pos-till__receipt i {
  display: block;
  height: 5px;
  margin: 0.28rem 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
}
.pos-till__receipt i:nth-child(2) {
  width: 78%;
}
.pos-till__receipt i:nth-child(3) {
  width: 55%;
}

/* ==========================================================================
   PROMOTION — SEO (package-led + SERP + ladder)
   ========================================================================== */
.page-seo .seo-serp {
  position: relative;
  min-height: 340px;
}
.seo-serp__glow {
  position: absolute;
  inset: 12% 8%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}
.seo-serp__panel {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 16, 32, 0.72);
  backdrop-filter: blur(16px);
  padding: 1rem 1.1rem 1.15rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.seo-serp__bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}
.seo-serp__bar i {
  color: var(--accent, #04e4ff);
}
.seo-serp__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.seo-serp__list li {
  padding: 0.75rem 0.85rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
}
.seo-serp__list li.is-you {
  border-color: rgba(4, 228, 255, 0.35);
  background: linear-gradient(
    135deg,
    rgba(4, 228, 255, 0.12),
    rgba(124, 92, 255, 0.08)
  );
}
.seo-serp__list b {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}
.seo-serp__list span {
  display: block;
  color: rgba(4, 228, 255, 0.85);
  font-size: 0.78rem;
  margin: 0.15rem 0 0.35rem;
}
.seo-serp__list p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}
.seo-serp__meter {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.seo-serp__meter i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.seo-serp__meter i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 70%);
  border-radius: inherit;
  background: linear-gradient(90deg, #04e4ff, #7c5cff);
  animation: seoMeter 2.4s ease-in-out infinite alternate;
}
@keyframes seoMeter {
  from {
    filter: brightness(0.9);
  }
  to {
    filter: brightness(1.15);
  }
}
.seo-serp__meter b {
  color: #2bff88;
}

.seo-signals__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.seo-signals__item {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.seo-signals__item b {
  display: block;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.seo-signals__item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 900px) {
  .seo-signals__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.seo-plan__tagline {
  margin: 0.35rem 0 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.seo-plan__alloc {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(4, 228, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}
.seo-plan .price-card__list {
  max-height: 280px;
  overflow: auto;
  margin-bottom: 1.1rem;
  padding-right: 0.35rem;
}

.seo-ladder {
  display: grid;
  gap: 0;
  position: relative;
}
.seo-ladder::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(4, 228, 255, 0.5),
    rgba(124, 92, 255, 0.15)
  );
}
.seo-ladder__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.15rem 0 1.15rem 0.25rem;
  position: relative;
}
.seo-ladder__n {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #041018;
  background: linear-gradient(135deg, #04e4ff, #7c5cff);
  z-index: 1;
}
.seo-ladder__step h3 {
  margin: 0.15rem 0 0.4rem;
  color: #fff;
}
.seo-ladder__step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  max-width: 52rem;
}

.seo-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}
.seo-feature__media {
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 280px;
}
.seo-feature__points {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.seo-feature__points li {
  display: flex;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
}
.seo-feature__points i {
  color: #2bff88;
}
@media (max-width: 900px) {
  .seo-feature {
    grid-template-columns: 1fr;
  }
}

.seo-audit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(4, 228, 255, 0.25);
  background:
    radial-gradient(
      800px 200px at 10% 0%,
      rgba(4, 228, 255, 0.16),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.03);
}
.seo-audit .h2 {
  margin: 0.35rem 0 0.5rem;
}
.seo-audit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  max-width: 40rem;
}
@media (max-width: 800px) {
  .seo-audit {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   PROMOTION — Social Media (platforms + reels + week)
   ========================================================================== */
.page-smm .smm-feed {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
}
.smm-feed__glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(circle, rgba(255, 78, 203, 0.2), transparent 65%);
  filter: blur(30px);
}
.smm-feed__card {
  position: absolute;
  width: min(260px, 78%);
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 14, 28, 0.88);
  padding: 0.75rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.smm-feed__card header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.55rem;
}
.smm-feed__card p {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}
.smm-feed__media {
  height: 110px;
  border-radius: 0.7rem;
  background: linear-gradient(
    135deg,
    rgba(255, 78, 203, 0.45),
    rgba(124, 92, 255, 0.35)
  );
}
.smm-feed__media--alt {
  background: linear-gradient(
    135deg,
    rgba(4, 228, 255, 0.4),
    rgba(124, 92, 255, 0.35)
  );
}
.smm-feed__media--biz {
  background: linear-gradient(
    135deg,
    rgba(43, 255, 136, 0.25),
    rgba(4, 228, 255, 0.35)
  );
  height: 88px;
}
.smm-feed__card--back {
  transform: translate(-42px, -36px) rotate(-6deg);
  opacity: 0.72;
}
.smm-feed__card--mid {
  transform: translate(38px, -8px) rotate(5deg);
  opacity: 0.85;
}
.smm-feed__card--front {
  position: relative;
  transform: translateY(28px);
  animation: smmFloat 3.2s ease-in-out infinite alternate;
}
@keyframes smmFloat {
  from {
    transform: translateY(24px);
  }
  to {
    transform: translateY(34px);
  }
}
.smm-feed__meta {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.55rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}
.smm-feed__live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #2bff88;
}
.smm-feed__live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: seoMeter 1s ease-in-out infinite alternate;
}

.smm-platforms {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}
.smm-platform {
  text-align: center;
  padding: 1.1rem 0.6rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.smm-platform:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 78, 203, 0.35);
}
.smm-platform i {
  font-size: 1.45rem;
  color: #ff4ecb;
  display: block;
  margin-bottom: 0.45rem;
}
.smm-platform b {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}
.smm-platform span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 900px) {
  .smm-platforms {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 520px) {
  .smm-platforms {
    grid-template-columns: repeat(2, 1fr);
  }
}

.smm-why__panel {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 0 0.5rem;
}
.smm-why__lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}
.smm-why__list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.smm-why__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}
.smm-why__list i {
  color: #ff4ecb;
  font-size: 1.35rem;
  line-height: 1;
}

.smm-reels {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem max(1.25rem, calc((100vw - 1120px) / 2)) 1.25rem;
  scroll-snap-type: x mandatory;
}
.smm-reel {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  padding: 1.35rem 1.25rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    160deg,
    rgba(255, 78, 203, 0.1),
    rgba(255, 255, 255, 0.03)
  );
  min-height: 210px;
}
.smm-reel__ico {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: rgba(255, 78, 203, 0.15);
  color: #ff4ecb;
  margin-bottom: 0.9rem;
}
.smm-reel h3 {
  margin: 0 0 0.45rem;
  color: #fff;
}
.smm-reel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.smm-spotlight {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: center;
}
.smm-spotlight__media {
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 260px;
}
.smm-spotlight__deck {
  color: rgba(255, 78, 203, 0.9);
  font-weight: 600;
  margin: 0.35rem 0 0.75rem;
}
@media (max-width: 900px) {
  .smm-spotlight {
    grid-template-columns: 1fr;
  }
}

.smm-editorial__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.smm-editorial__item {
  padding: 1.5rem 1.35rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}
.smm-editorial__mark {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 78, 203, 0.35);
}
.smm-editorial__deck {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin: 0.35rem 0 0.7rem;
}
@media (max-width: 800px) {
  .smm-editorial__grid {
    grid-template-columns: 1fr;
  }
}

.smm-week {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.smm-week__day {
  padding: 1.35rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.smm-week__day:last-child {
  border-right: 0;
}
.smm-week__label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff4ecb;
  margin-bottom: 0.45rem;
}
.smm-week__day b {
  display: block;
  color: #fff;
  margin-bottom: 0.35rem;
}
.smm-week__day p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
}
@media (max-width: 900px) {
  .smm-week {
    grid-template-columns: 1fr 1fr;
  }
  .smm-week__day:nth-child(2n) {
    border-right: 0;
  }
  .smm-week__day:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ==========================================================================
   PROMOTION — Google Ads (funnel + mosaic + ROI)
   ========================================================================== */
.page-ads .ads-panel {
  position: relative;
  min-height: 340px;
}
.ads-panel__glow {
  position: absolute;
  inset: 8% 6%;
  background: radial-gradient(circle, rgba(255, 198, 54, 0.2), transparent 70%);
  filter: blur(28px);
}
.ads-panel__frame {
  position: relative;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 28, 0.85);
  padding: 1rem 1.1rem 1.15rem;
  backdrop-filter: blur(14px);
}
.ads-panel__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.ads-panel__live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #2bff88;
}
.ads-panel__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.ads-panel__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.ads-panel__metrics div {
  padding: 0.7rem 0.55rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}
.ads-panel__metrics b {
  display: block;
  color: #fff;
  font-size: 1.15rem;
}
.ads-panel__metrics span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}
.ads-panel__chart {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 84px;
  margin-bottom: 1rem;
  padding: 0 0.2rem;
}
.ads-panel__chart i {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 0.35rem 0.35rem 0.15rem 0.15rem;
  background: linear-gradient(180deg, #ffc636, rgba(255, 198, 54, 0.25));
  animation: adsBar 2.8s ease-in-out infinite alternate;
}
.ads-panel__chart i:nth-child(odd) {
  animation-delay: 0.35s;
}
@keyframes adsBar {
  from {
    transform: scaleY(0.92);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1.05);
    transform-origin: bottom;
  }
}
.ads-panel__row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.ads-panel__row b {
  color: #ffc636;
}
.ads-panel__row b.is-up {
  color: #2bff88;
}

.ads-intents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.ads-intent {
  padding: 1.6rem 1.35rem;
  border-radius: 1.2rem;
  min-height: 220px;
  background: linear-gradient(
    165deg,
    rgba(255, 198, 54, 0.12),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 198, 54, 0.2);
}
.ads-intent__n {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 198, 54, 0.55);
  line-height: 1;
  margin-bottom: 0.85rem;
}
.ads-intent h3 {
  margin: 0 0 0.55rem;
  color: #fff;
}
.ads-intent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}
@media (max-width: 900px) {
  .ads-intents {
    grid-template-columns: 1fr;
  }
}

.ads-funnel {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ads-funnel__step {
  flex: 1 1 160px;
  max-width: 220px;
  text-align: center;
  padding: 1.25rem 0.9rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.ads-funnel__ico {
  width: 2.8rem;
  height: 2.8rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 198, 54, 0.15);
  color: #ffc636;
}
.ads-funnel__step h3 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 1.05rem;
}
.ads-funnel__step p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}
.ads-funnel__join {
  width: 28px;
  align-self: center;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 198, 54, 0.7),
    rgba(255, 198, 54, 0.15)
  );
  flex: 0 0 28px;
}
@media (max-width: 700px) {
  .ads-funnel__join {
    display: none;
  }
  .ads-funnel__step {
    max-width: none;
  }
}

.ads-mosaic__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.ads-mosaic__card {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.ads-mosaic__media {
  min-height: 180px;
}
.ads-mosaic__body {
  padding: 1.35rem 1.25rem 1.5rem;
}
.ads-mosaic__deck {
  color: rgba(255, 198, 54, 0.9);
  font-weight: 600;
  margin: 0.25rem 0 0.65rem;
}
@media (max-width: 900px) {
  .ads-mosaic__grid {
    grid-template-columns: 1fr;
  }
}

.ads-roi {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 1.75rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 198, 54, 0.25);
  background:
    radial-gradient(
      700px 180px at 90% 0%,
      rgba(255, 198, 54, 0.14),
      transparent 55%
    ),
    rgba(255, 255, 255, 0.03);
}
.ads-roi .h2 {
  margin: 0 0 0.55rem;
}
.ads-roi p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}
.ads-roi__stats {
  display: grid;
  gap: 0.75rem;
}
.ads-roi__stats div {
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ads-roi__stats b {
  display: block;
  color: #ffc636;
  font-size: 1.25rem;
  margin-bottom: 0.15rem;
}
.ads-roi__stats span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 800px) {
  .ads-roi {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PROMOTION — Consulting (agenda hero + split modes + quotes)
   ========================================================================== */
.page-csl .csl-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}
.page-csl .csl-hero .hero__grid {
  display: contents;
}
@media (max-width: 900px) {
  .page-csl .csl-hero__inner {
    grid-template-columns: 1fr;
  }
}

.csl-agenda {
  position: relative;
  min-height: 300px;
}
.csl-agenda__glow {
  position: absolute;
  inset: 12% 10%;
  background: radial-gradient(
    circle,
    rgba(124, 92, 255, 0.28),
    transparent 70%
  );
  filter: blur(28px);
}
.csl-agenda__sheet {
  position: relative;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 16, 30, 0.88);
  padding: 1.1rem 1.15rem 1.2rem;
  backdrop-filter: blur(14px);
}
.csl-agenda__sheet header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}
.csl-agenda__sheet header span {
  margin-left: auto;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.2);
  color: #cbb8ff;
  font-size: 0.75rem;
}
.csl-agenda__sheet ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.csl-agenda__sheet li {
  display: flex;
  gap: 0.75rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}
.csl-agenda__sheet li.is-active {
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.22),
    rgba(4, 228, 255, 0.08)
  );
  color: #fff;
  border: 1px solid rgba(124, 92, 255, 0.35);
}
.csl-agenda__sheet li b {
  color: rgba(203, 184, 255, 0.95);
  min-width: 1.5rem;
}
.csl-agenda__sheet footer {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.csl-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.csl-mode {
  padding: 1.75rem 1.5rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    160deg,
    rgba(124, 92, 255, 0.14),
    rgba(255, 255, 255, 0.02)
  );
  min-height: 320px;
}
.csl-mode__ico {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: rgba(124, 92, 255, 0.2);
  color: #cbb8ff;
  margin-bottom: 1rem;
}
.csl-mode h3 {
  margin: 0.35rem 0 0.45rem;
  color: #fff;
}
.csl-mode__deck {
  color: rgba(203, 184, 255, 0.95);
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.csl-mode ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.csl-mode li {
  display: flex;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}
.csl-mode li i {
  color: #2bff88;
}
@media (max-width: 900px) {
  .csl-modes {
    grid-template-columns: 1fr;
  }
}

.csl-guidance__panel {
  max-width: 46rem;
  margin: 0 auto;
  text-align: left;
}
.csl-guidance__lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}
.csl-guidance__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.csl-guidance__list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}
.csl-guidance__list span {
  font-weight: 700;
  color: #cbb8ff;
  min-width: 1.75rem;
}

.csl-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.csl-quote {
  margin: 0;
  padding: 1.4rem 1.25rem;
  border-radius: 1.15rem;
  border-left: 3px solid #7c5cff;
  background: rgba(255, 255, 255, 0.03);
}
.csl-quote h3 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 1.05rem;
}
.csl-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}
@media (max-width: 900px) {
  .csl-quotes {
    grid-template-columns: 1fr;
  }
}

.csl-journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.csl-journey__step {
  padding: 1.25rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.csl-journey__step > span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #cbb8ff;
  margin-bottom: 0.55rem;
}
.csl-journey__step h3 {
  margin: 0 0 0.4rem;
  color: #fff;
}
.csl-journey__step p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
}
@media (max-width: 900px) {
  .csl-journey {
    grid-template-columns: 1fr 1fr;
  }
}

.csl-spotlight {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}
.csl-spotlight__media {
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 260px;
}
.csl-spotlight__deck {
  color: rgba(203, 184, 255, 0.95);
  font-weight: 600;
  margin: 0.35rem 0 0.75rem;
}
@media (max-width: 900px) {
  .csl-spotlight {
    grid-template-columns: 1fr;
  }
}

.csl-book {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(124, 92, 255, 0.3);
  background:
    radial-gradient(
      800px 200px at 0% 0%,
      rgba(124, 92, 255, 0.2),
      transparent 55%
    ),
    rgba(255, 255, 255, 0.03);
}
.csl-book .h2 {
  margin: 0.35rem 0 0.5rem;
}
.csl-book p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  max-width: 38rem;
}
@media (max-width: 800px) {
  .csl-book {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   Portfolio section — shared + page-pf-* layouts
   ============================================================ */
[class^="page-pf-"],
[class*=" page-pf-"] {
  position: relative;
  z-index: 1;
}

/* Filter chips */
.pf-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.pf-filter-chips--tabs {
  margin: 0.35rem auto 2rem;
  padding: 0.35rem;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.pf-filter-chips--tabs .pf-filter-chip {
  border-radius: 999px;
  border-color: transparent;
  background: transparent;
  min-height: 2.45rem;
  padding-inline: 1.15rem;
}
.pf-filter-chip.is-active {
  border-color: rgba(4, 228, 255, 0.55);
  background: rgba(4, 228, 255, 0.12);
  color: var(--cyan);
}
.pf-filter-chips--tabs .pf-filter-chip.is-active {
  border-color: rgba(4, 228, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(4, 228, 255, 0.15);
}

/* Portfolio index mosaic */
.pf-index-hero__stage {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
}
.pf-index-hero__glow {
  position: absolute;
  inset: 8% 4%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 92, 255, 0.38),
    transparent 68%
  );
  filter: blur(22px);
  pointer-events: none;
}
.pf-index-hero__frame {
  position: relative;
  width: min(100%, 420px);
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 32, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.pf-index-hero__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.pf-index-hero__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.pf-index-hero__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.pf-index-hero__chrome > span:nth-child(2) {
  background: #febc2e;
}
.pf-index-hero__chrome > span:nth-child(3) {
  background: #28c840;
}
.pf-index-hero__chrome em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pf-index-hero__shots {
  position: relative;
  height: 210px;
  margin: 1rem 1rem 0.4rem;
}
.pf-index-hero__shot {
  position: absolute;
  margin: 0;
  width: 68%;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0a0e1c;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}
.pf-index-hero__shot img {
  display: block;
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.pf-index-hero__shot figcaption {
  padding: 0.45rem 0.65rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}
.pf-index-hero__shot--1 {
  left: 0;
  top: 18px;
  z-index: 1;
  transform: rotate(-5deg);
  opacity: 0.88;
}
.pf-index-hero__shot--2 {
  left: 16%;
  top: 0;
  z-index: 3;
  animation: pfHeroFloat 3.2s ease-in-out infinite alternate;
}
.pf-index-hero__shot--3 {
  right: 0;
  top: 28px;
  z-index: 2;
  transform: rotate(4deg);
  opacity: 0.9;
}
@keyframes pfHeroFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(8px);
  }
}
.pf-index-hero__meta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding: 0.85rem 1rem 1.05rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}
.pf-index-hero__meta i {
  color: var(--cyan);
  margin-right: 0.25rem;
}
@media (max-width: 991px) {
  .pf-index-hero__stage {
    display: none;
  }
}

.page-pf-index .pf-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.page-pf-index .pf-mosaic__tile {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(14px);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}
.page-pf-index .pf-mosaic__tile:hover {
  transform: translateY(-6px);
  border-color: rgba(4, 228, 255, 0.35);
}
.page-pf-index .pf-mosaic__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}
.page-pf-index .pf-mosaic__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* no soft-fade masks on portfolio tiles */
  -webkit-mask-image: none;
  mask-image: none;
}
.page-pf-index .pf-mosaic__body {
  padding: 1.1rem 1.15rem 1.25rem;
}
.page-pf-index .pf-mosaic__cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  font-weight: 700;
}
.page-pf-index .pf-mosaic__body h3 {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.05rem;
  color: #fff;
}
.page-pf-index .pf-mosaic__body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--dim);
}

.pf-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.pf-hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.4rem 1.35rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
  min-height: 100%;
}
.pf-hub-card:hover {
  border-color: rgba(4, 228, 255, 0.4);
  transform: translateY(-4px);
}
.pf-hub-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.pf-hub-card__ico {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.12);
  color: var(--cyan);
  font-size: 1.15rem;
}
.pf-hub-card__count {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pf-hub-card h3 {
  margin: 0;
  font-size: 1.08rem;
  color: #fff;
}
.pf-hub-card > p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--dim);
  line-height: 1.55;
}
.pf-hub-card__points {
  list-style: none;
  margin: 0.35rem 0 0.5rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.pf-hub-card__points li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
}
.pf-hub-card__points i {
  color: #2bff88;
}
.pf-hub-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cyan);
  padding-top: 0.35rem;
}
@media (max-width: 991px) {
  .page-pf-index .pf-mosaic,
  .pf-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .page-pf-index .pf-mosaic,
  .pf-hub-grid {
    grid-template-columns: 1fr;
  }
}

.pf-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.pf-mosaic__tile {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(14px);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}
.pf-mosaic__tile:hover {
  transform: translateY(-6px);
  border-color: rgba(4, 228, 255, 0.35);
}
.pf-mosaic__tile--lg {
  grid-column: span 4;
}
.pf-mosaic__tile--md {
  grid-column: span 3;
}
.pf-mosaic__tile--sm {
  grid-column: span 2;
}
.pf-mosaic__media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.pf-mosaic__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pf-mosaic__body {
  padding: 1.1rem 1.15rem 1.25rem;
}
.pf-mosaic__cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  font-weight: 700;
}
.pf-mosaic__body h3 {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.05rem;
  color: #fff;
}
.pf-mosaic__body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--dim);
}

.pf-editorial {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(124, 92, 255, 0.28);
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.12),
    rgba(255, 255, 255, 0.02)
  );
}
.pf-editorial__body .h2 {
  margin: 0.35rem 0 0.65rem;
}
.pf-editorial__body p {
  margin: 0;
  color: var(--dim);
  max-width: 36rem;
}

.pf-hub-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pf-hub-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.pf-hub-link:hover {
  border-color: rgba(4, 228, 255, 0.4);
  transform: translateY(-4px);
}
.pf-hub-link__ico {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.12);
  color: var(--cyan);
  font-size: 1.1rem;
}
.pf-hub-link h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  color: #fff;
}
.pf-hub-link p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--dim);
}
.pf-hub-link__arrow {
  margin-left: auto;
  color: var(--cyan);
}

/* Design & development hub */
.pf-dd-stats {
  margin-bottom: 0;
}
.pf-dd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.pf-dd-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}
.pf-dd-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 92, 255, 0.4);
}
.pf-dd-card__media {
  aspect-ratio: 16/11;
}
.pf-dd-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pf-dd-card__body {
  padding: 1.2rem 1.25rem 1.35rem;
}
.pf-dd-card__tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #cbb8ff;
  font-weight: 700;
}
.pf-dd-card__body h3 {
  margin: 0.35rem 0 0.35rem;
  color: #fff;
  font-size: 1.08rem;
}
.pf-dd-card__body p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--dim);
}
.pf-dd-card__link {
  font-size: 0.85rem;
  color: var(--cyan);
  font-weight: 600;
}

/* SEO projects hub vertical list */
.pf-seo-cases {
  display: grid;
  gap: 1.25rem;
}
.pf-seo-case {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease;
}
.pf-seo-case:hover {
  border-color: rgba(4, 228, 255, 0.35);
}
.pf-seo-case__media {
  border-radius: 0.85rem;
  overflow: hidden;
  min-height: 160px;
}
.pf-seo-case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pf-seo-case__body h3 {
  margin: 0 0 0.45rem;
  color: #fff;
}
.pf-seo-case__body p {
  margin: 0 0 0.85rem;
  color: var(--dim);
  font-size: 0.92rem;
}
.pf-seo-case__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.pf-seo-case__metric {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(4, 228, 255, 0.25);
  background: rgba(4, 228, 255, 0.08);
  font-size: 0.8rem;
}
.pf-seo-case__metric b {
  color: var(--cyan);
  margin-right: 0.25rem;
}

/* Corporate trust grid */
.pf-corp-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-corp-trust__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-corp-trust__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(124, 92, 255, 0.15);
  color: #cbb8ff;
  margin-bottom: 0.65rem;
}
.pf-corp-trust__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-corp-trust__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

/* Keep hero right column from collapsing when left chips are nowrap */
.pf-corp-hero .hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.5rem;
}
.pf-corp-hero .chips {
  flex-wrap: wrap;
  overflow: visible;
}
.pf-corp-hero__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 0.75rem 1.25rem;
  box-sizing: border-box;
}
.pf-corp-hero__glow {
  position: absolute;
  inset: 12% 6%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}
.pf-corp-hero__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 32, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.pf-corp-hero__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.pf-corp-hero__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.pf-corp-hero__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.pf-corp-hero__chrome > span:nth-child(2) {
  background: #febc2e;
}
.pf-corp-hero__chrome > span:nth-child(3) {
  background: #28c840;
}
.pf-corp-hero__chrome em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pf-corp-hero__shot img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.pf-corp-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.85rem 0.9rem 1rem;
}
.pf-corp-hero__stats div {
  text-align: center;
  padding: 0.55rem 0.35rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-corp-hero__stats b {
  display: block;
  color: #fff;
  font-size: 1rem;
}
.pf-corp-hero__stats span {
  font-size: 0.7rem;
  color: var(--dim);
}
.pf-corp-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 16, 34, 0.92);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
.pf-corp-hero__float i {
  color: var(--cyan);
}
.pf-corp-hero__float--trust {
  top: 12%;
  right: -0.25rem;
}
.pf-corp-hero__float--brand {
  bottom: 18%;
  left: -0.5rem;
}
@media (max-width: 991px) {
  .pf-corp-hero__stage {
    display: none;
  }
}

.page-pf-corporate-web-design .pf-frame {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.page-pf-corporate-web-design .pf-frame img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.page-pf-corporate-web-design .pf-corp-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}
.page-pf-corporate-web-design .pf-corp-case__tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

/* Construction blueprint + timeline */
.pf-build-blueprint {
  position: relative;
  min-height: 260px;
  border-radius: 1rem;
  border: 1px dashed rgba(4, 228, 255, 0.35);
  background:
    linear-gradient(rgba(4, 228, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 228, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 1.25rem;
}
.pf-build-blueprint__frame {
  border: 1px solid rgba(4, 228, 255, 0.3);
  border-radius: 0.65rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.25);
}
.pf-build-blueprint__frame em {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.pf-build-blueprint__frame span {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(4, 228, 255, 0.2);
  margin-bottom: 0.45rem;
}
.pf-build-blueprint__frame span:nth-child(3) {
  width: 80%;
}
.pf-build-blueprint__frame span:nth-child(4) {
  width: 55%;
}

.pf-build-timeline {
  --pf-build-node: 2.3rem;
  --pf-build-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pf-build-gap);
  position: relative;
  isolation: isolate;
}
.pf-build-timeline::before {
  display: none;
}
.pf-build-timeline__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: 0;
  border: 0;
  background: transparent;
}
.pf-build-timeline__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--pf-build-node) / 2);
  left: calc(50% + (var(--pf-build-node) / 2));
  width: calc(100% - var(--pf-build-node) + var(--pf-build-gap));
  height: 2px;
  margin-top: -1px;
  background: rgba(4, 228, 255, 0.55);
  z-index: 0;
  pointer-events: none;
}
.pf-build-timeline__n {
  position: relative;
  z-index: 1;
  width: var(--pf-build-node);
  height: var(--pf-build-node);
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(4, 228, 255, 0.55);
  background: #0a0e1c;
  box-shadow: 0 0 0 4px rgba(10, 14, 28, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.02em;
}
.pf-build-timeline__body {
  width: 100%;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.pf-build-timeline__step h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #fff;
}
.pf-build-timeline__step p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}

.page-pf-construction-web-design .pf-frame {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.page-pf-construction-web-design .pf-frame img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.page-pf-construction-web-design .pf-frame--crop-top img {
  transform: scale(1.05) translateY(-2.6%);
  transform-origin: center top;
}

/* Dental clinical portfolio */
.pf-dental-hero .hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.5rem;
}
.pf-dental-hero__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 0.75rem 1.25rem;
  box-sizing: border-box;
}
.pf-dental-hero__glow {
  position: absolute;
  inset: 12% 6%;
  background: radial-gradient(
    circle,
    rgba(126, 231, 135, 0.22),
    transparent 70%
  );
  filter: blur(28px);
  pointer-events: none;
}
.pf-dental-hero__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 32, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.pf-dental-hero__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.pf-dental-hero__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.pf-dental-hero__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.pf-dental-hero__chrome > span:nth-child(2) {
  background: #febc2e;
}
.pf-dental-hero__chrome > span:nth-child(3) {
  background: #28c840;
}
.pf-dental-hero__chrome em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pf-dental-hero__shot img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.pf-dental-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.85rem 0.9rem 1rem;
}
.pf-dental-hero__stats div {
  text-align: center;
  padding: 0.55rem 0.35rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-dental-hero__stats b {
  display: block;
  color: #fff;
  font-size: 1rem;
}
.pf-dental-hero__stats span {
  font-size: 0.7rem;
  color: var(--dim);
}
.pf-dental-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 16, 34, 0.92);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
.pf-dental-hero__float i {
  color: #7ee787;
}
.pf-dental-hero__float--book {
  top: 12%;
  right: -0.25rem;
}
.pf-dental-hero__float--calm {
  bottom: 18%;
  left: -0.5rem;
}
@media (max-width: 991px) {
  .pf-dental-hero__stage {
    display: none;
  }
}

.pf-dental-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-dental-pillars__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-dental-pillars__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(126, 231, 135, 0.12);
  color: #7ee787;
  margin-bottom: 0.65rem;
}
.pf-dental-pillars__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-dental-pillars__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.pf-dental-journey {
  --pf-dental-node: 2.3rem;
  --pf-dental-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pf-dental-gap);
  position: relative;
  isolation: isolate;
}
.pf-dental-journey__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.pf-dental-journey__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--pf-dental-node) / 2);
  left: calc(50% + (var(--pf-dental-node) / 2));
  width: calc(100% - var(--pf-dental-node) + var(--pf-dental-gap));
  height: 2px;
  margin-top: -1px;
  background: rgba(126, 231, 135, 0.45);
  z-index: 0;
  pointer-events: none;
}
.pf-dental-journey__n {
  position: relative;
  z-index: 1;
  width: var(--pf-dental-node);
  height: var(--pf-dental-node);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(126, 231, 135, 0.55);
  background: #0a0e1c;
  box-shadow: 0 0 0 4px rgba(10, 14, 28, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  color: #7ee787;
}
.pf-dental-journey__body {
  width: 100%;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.pf-dental-journey__body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #fff;
}
.pf-dental-journey__body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}

.pf-dental-treatments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-dental-treatments__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-dental-treatments__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
  margin-bottom: 0.65rem;
}
.pf-dental-treatments__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-dental-treatments__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.page-pf-dental-web-design .pf-frame {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.page-pf-dental-web-design .pf-frame img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.page-pf-dental-web-design .pf-dental-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}
.page-pf-dental-web-design .pf-dental-case__tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

/* Hotel hospitality portfolio */
.pf-hotel-hero .hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.5rem;
}
.pf-hotel-hero__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 0.75rem 1.25rem;
  box-sizing: border-box;
}
.pf-hotel-hero__glow {
  position: absolute;
  inset: 12% 6%;
  background: radial-gradient(
    circle,
    rgba(232, 196, 124, 0.22),
    transparent 70%
  );
  filter: blur(28px);
  pointer-events: none;
}
.pf-hotel-hero__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 32, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.pf-hotel-hero__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.pf-hotel-hero__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.pf-hotel-hero__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.pf-hotel-hero__chrome > span:nth-child(2) {
  background: #febc2e;
}
.pf-hotel-hero__chrome > span:nth-child(3) {
  background: #28c840;
}
.pf-hotel-hero__chrome em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pf-hotel-hero__shot img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.pf-hotel-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.85rem 0.9rem 1rem;
}
.pf-hotel-hero__stats div {
  text-align: center;
  padding: 0.55rem 0.35rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-hotel-hero__stats b {
  display: block;
  color: #fff;
  font-size: 1rem;
}
.pf-hotel-hero__stats span {
  font-size: 0.7rem;
  color: var(--dim);
}
.pf-hotel-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 16, 34, 0.92);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
.pf-hotel-hero__float i {
  color: #e8c47c;
}
.pf-hotel-hero__float--book {
  top: 12%;
  right: -0.25rem;
}
.pf-hotel-hero__float--stay {
  bottom: 18%;
  left: -0.5rem;
}
@media (max-width: 991px) {
  .pf-hotel-hero__stage {
    display: none;
  }
}

.pf-hotel-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-hotel-pillars__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-hotel-pillars__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(232, 196, 124, 0.12);
  color: #e8c47c;
  margin-bottom: 0.65rem;
}
.pf-hotel-pillars__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-hotel-pillars__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.pf-hotel-journey {
  --pf-hotel-node: 2.3rem;
  --pf-hotel-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pf-hotel-gap);
  position: relative;
  isolation: isolate;
}
.pf-hotel-journey__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.pf-hotel-journey__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--pf-hotel-node) / 2);
  left: calc(50% + (var(--pf-hotel-node) / 2));
  width: calc(100% - var(--pf-hotel-node) + var(--pf-hotel-gap));
  height: 2px;
  margin-top: -1px;
  background: rgba(232, 196, 124, 0.45);
  z-index: 0;
  pointer-events: none;
}
.pf-hotel-journey__n {
  position: relative;
  z-index: 1;
  width: var(--pf-hotel-node);
  height: var(--pf-hotel-node);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(232, 196, 124, 0.55);
  background: #0a0e1c;
  box-shadow: 0 0 0 4px rgba(10, 14, 28, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  color: #e8c47c;
}
.pf-hotel-journey__body {
  width: 100%;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.pf-hotel-journey__body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #fff;
}
.pf-hotel-journey__body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}

.pf-hotel-lookbook {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
.pf-hotel-lookbook__slide {
  margin: 0;
  min-width: 0;
}
.pf-hotel-lookbook__media {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0a0e1c;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}
.pf-hotel-lookbook__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 42%,
    rgba(6, 10, 22, 0.88) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.pf-hotel-lookbook__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  transition: transform 0.55s ease;
}
.pf-hotel-lookbook__slide:hover .pf-hotel-lookbook__media img {
  transform: scale(1.04);
}
.pf-hotel-lookbook__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.15rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pf-hotel-lookbook__label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.pf-hotel-lookbook__cap em {
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(232, 196, 124, 0.92);
}

.pf-hotel-amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-hotel-amenities__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-hotel-amenities__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
  margin-bottom: 0.65rem;
}
.pf-hotel-amenities__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-hotel-amenities__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.pf-hotel-booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(232, 196, 124, 0.28);
  background: linear-gradient(
    120deg,
    rgba(232, 196, 124, 0.12),
    rgba(255, 255, 255, 0.02)
  );
}
.pf-hotel-booking .h2 {
  margin: 0.35rem 0 0.55rem;
}
.pf-hotel-booking p {
  margin: 0;
  max-width: 42rem;
  color: var(--dim);
}

.page-pf-hotel-web-design .pf-frame {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.page-pf-hotel-web-design .pf-frame img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.page-pf-hotel-web-design .pf-hotel-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}
.page-pf-hotel-web-design .pf-hotel-case__tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

/* Vape retail portfolio */
.pf-vape-hero {
  position: relative;
  overflow: hidden;
}
.pf-vape-hero .hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.5rem;
}
.pf-vape-smoke {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.pf-vape-hero .container {
  position: relative;
  z-index: 1;
}
.pf-vape-smoke__plume {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.35;
  mix-blend-mode: screen;
  animation: pfVapeSmokeDrift 14s ease-in-out infinite;
}
.pf-vape-smoke__plume--1 {
  width: 280px;
  height: 280px;
  left: 8%;
  bottom: -40px;
  background: radial-gradient(
    circle,
    rgba(158, 240, 255, 0.55),
    transparent 70%
  );
  animation-duration: 16s;
}
.pf-vape-smoke__plume--2 {
  width: 340px;
  height: 340px;
  right: 12%;
  top: 10%;
  background: radial-gradient(
    circle,
    rgba(201, 160, 255, 0.45),
    transparent 68%
  );
  animation-duration: 18s;
  animation-delay: -4s;
}
.pf-vape-smoke__plume--3 {
  width: 220px;
  height: 220px;
  left: 42%;
  top: 28%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.35), transparent 70%);
  animation-duration: 12s;
  animation-delay: -2s;
}
.pf-vape-smoke__plume--4 {
  width: 260px;
  height: 260px;
  right: 28%;
  bottom: 5%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18),
    transparent 70%
  );
  animation-duration: 20s;
  animation-delay: -7s;
}
.pf-vape-smoke__wisp {
  position: absolute;
  width: 120px;
  height: 220px;
  border-radius: 60% 40% 55% 45%;
  filter: blur(28px);
  opacity: 0.22;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent);
  animation: pfVapeWispRise 9s ease-in-out infinite;
}
.pf-vape-smoke__wisp--a {
  right: 18%;
  bottom: 8%;
  animation-delay: -1s;
}
.pf-vape-smoke__wisp--b {
  right: 8%;
  bottom: 0;
  width: 90px;
  height: 180px;
  animation-delay: -4.5s;
}
@keyframes pfVapeSmokeDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  40% {
    transform: translate3d(28px, -34px, 0) scale(1.08);
  }
  70% {
    transform: translate3d(-18px, -18px, 0) scale(0.96);
  }
}
@keyframes pfVapeWispRise {
  0% {
    transform: translate3d(0, 24px, 0) scale(0.9);
    opacity: 0.05;
  }
  40% {
    opacity: 0.28;
  }
  100% {
    transform: translate3d(-20px, -120px, 0) scale(1.2);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pf-vape-smoke__plume,
  .pf-vape-smoke__wisp {
    animation: none;
  }
}

.pf-vape-hero__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 0.75rem 1.25rem;
  box-sizing: border-box;
}
.pf-vape-hero__glow {
  position: absolute;
  inset: 12% 6%;
  background: radial-gradient(
    circle,
    rgba(201, 160, 255, 0.22),
    transparent 70%
  );
  filter: blur(28px);
  pointer-events: none;
}
.pf-vape-hero__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 32, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.pf-vape-hero__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.pf-vape-hero__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.pf-vape-hero__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.pf-vape-hero__chrome > span:nth-child(2) {
  background: #febc2e;
}
.pf-vape-hero__chrome > span:nth-child(3) {
  background: #28c840;
}
.pf-vape-hero__chrome em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pf-vape-hero__shot img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.pf-vape-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.85rem 0.9rem 1rem;
}
.pf-vape-hero__stats div {
  text-align: center;
  padding: 0.55rem 0.35rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-vape-hero__stats b {
  display: block;
  color: #fff;
  font-size: 1rem;
}
.pf-vape-hero__stats span {
  font-size: 0.7rem;
  color: var(--dim);
}
.pf-vape-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 16, 34, 0.92);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
.pf-vape-hero__float i {
  color: #c9a0ff;
}
.pf-vape-hero__float--deal {
  top: 12%;
  right: -0.25rem;
}
.pf-vape-hero__float--cart {
  bottom: 18%;
  left: -0.5rem;
}
@media (max-width: 991px) {
  .pf-vape-hero__stage {
    display: none;
  }
  .pf-vape-smoke__wisp {
    display: none;
  }
}

.pf-vape-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-vape-pillars__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-vape-pillars__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(201, 160, 255, 0.14);
  color: #c9a0ff;
  margin-bottom: 0.65rem;
}
.pf-vape-pillars__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-vape-pillars__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.pf-vape-journey {
  --pf-vape-node: 2.3rem;
  --pf-vape-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pf-vape-gap);
  position: relative;
  isolation: isolate;
}
.pf-vape-journey__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.pf-vape-journey__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--pf-vape-node) / 2);
  left: calc(50% + (var(--pf-vape-node) / 2));
  width: calc(100% - var(--pf-vape-node) + var(--pf-vape-gap));
  height: 2px;
  margin-top: -1px;
  background: rgba(201, 160, 255, 0.45);
  z-index: 0;
  pointer-events: none;
}
.pf-vape-journey__n {
  position: relative;
  z-index: 1;
  width: var(--pf-vape-node);
  height: var(--pf-vape-node);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(201, 160, 255, 0.55);
  background: #0a0e1c;
  box-shadow: 0 0 0 4px rgba(10, 14, 28, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  color: #c9a0ff;
}
.pf-vape-journey__body {
  width: 100%;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.pf-vape-journey__body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #fff;
}
.pf-vape-journey__body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}

.pf-vape-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
.pf-vape-mosaic__cell {
  margin: 0;
  min-width: 0;
}
.pf-vape-mosaic__frame {
  position: relative;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 32, 0.95);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}
.pf-vape-mosaic__chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}
.pf-vape-mosaic__chrome > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.pf-vape-mosaic__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.pf-vape-mosaic__chrome > span:nth-child(2) {
  background: #febc2e;
}
.pf-vape-mosaic__chrome > span:nth-child(3) {
  background: #28c840;
}
.pf-vape-mosaic__shot {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #0a0e1c;
}
.pf-vape-mosaic__shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(6, 10, 22, 0.88) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.pf-vape-mosaic__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  image-rendering: auto;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  filter: none !important;
  transition: transform 0.55s ease;
}
.pf-vape-mosaic__cell:hover .pf-vape-mosaic__shot img {
  transform: scale(1.035);
}
.pf-vape-mosaic__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.05rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.pf-vape-mosaic__label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.pf-vape-mosaic__cap em {
  font-style: normal;
  font-size: 0.8rem;
  color: #c9a0ff;
}

.pf-vape-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-vape-modules__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-vape-modules__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
  margin-bottom: 0.65rem;
}
.pf-vape-modules__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-vape-modules__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.page-pf-vape-web-design .pf-frame {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.page-pf-vape-web-design .pf-frame img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.page-pf-vape-web-design .pf-vape-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}
.page-pf-vape-web-design .pf-vape-case__tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

/* eCommerce store portfolio */
.pf-eco-hero .hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.5rem;
}
.pf-eco-hero__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 0.75rem 1.25rem;
  box-sizing: border-box;
}
.pf-eco-hero__glow {
  position: absolute;
  inset: 12% 6%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}
.pf-eco-hero__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 32, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.pf-eco-hero__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.pf-eco-hero__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.pf-eco-hero__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.pf-eco-hero__chrome > span:nth-child(2) {
  background: #febc2e;
}
.pf-eco-hero__chrome > span:nth-child(3) {
  background: #28c840;
}
.pf-eco-hero__chrome em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pf-eco-hero__shot img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.pf-eco-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.85rem 0.9rem 1rem;
}
.pf-eco-hero__stats div {
  text-align: center;
  padding: 0.55rem 0.35rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-eco-hero__stats b {
  display: block;
  color: #fff;
  font-size: 1rem;
}
.pf-eco-hero__stats span {
  font-size: 0.7rem;
  color: var(--dim);
}
.pf-eco-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 16, 34, 0.92);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
.pf-eco-hero__float i {
  color: var(--cyan);
}
.pf-eco-hero__float--cart {
  top: 12%;
  right: -0.25rem;
}
.pf-eco-hero__float--pdp {
  bottom: 18%;
  left: -0.5rem;
}
@media (max-width: 991px) {
  .pf-eco-hero__stage {
    display: none;
  }
}

.pf-eco-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-eco-pillars__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-eco-pillars__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.12);
  color: var(--cyan);
  margin-bottom: 0.65rem;
}
.pf-eco-pillars__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-eco-pillars__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.pf-eco-journey {
  --pf-eco-node: 2.3rem;
  --pf-eco-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pf-eco-gap);
  position: relative;
  isolation: isolate;
}
.pf-eco-journey__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.pf-eco-journey__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--pf-eco-node) / 2);
  left: calc(50% + (var(--pf-eco-node) / 2));
  width: calc(100% - var(--pf-eco-node) + var(--pf-eco-gap));
  height: 2px;
  margin-top: -1px;
  background: rgba(4, 228, 255, 0.45);
  z-index: 0;
  pointer-events: none;
}
.pf-eco-journey__n {
  position: relative;
  z-index: 1;
  width: var(--pf-eco-node);
  height: var(--pf-eco-node);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(4, 228, 255, 0.55);
  background: #0a0e1c;
  box-shadow: 0 0 0 4px rgba(10, 14, 28, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
}
.pf-eco-journey__body {
  width: 100%;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.pf-eco-journey__body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #fff;
}
.pf-eco-journey__body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}

.pf-eco-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-eco-metrics__item {
  text-align: center;
  padding: 1.25rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-eco-metrics__item b {
  display: block;
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}
.pf-eco-metrics__item span {
  display: block;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 0.35rem;
}
.pf-eco-metrics__item em {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--dim);
}

.pf-eco-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-eco-modules__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-eco-modules__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
  margin-bottom: 0.65rem;
}
.pf-eco-modules__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-eco-modules__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.page-pf-ecommerce-web-design .pf-frame {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.page-pf-ecommerce-web-design .pf-frame img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.page-pf-ecommerce-web-design .pf-eco-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}
.page-pf-ecommerce-web-design .pf-eco-case__tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

/* Furniture showroom portfolio */
.pf-furn-hero .hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.5rem;
}
.pf-furn-hero__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 0.75rem 1.25rem;
  box-sizing: border-box;
}
.pf-furn-hero__glow {
  position: absolute;
  inset: 12% 6%;
  background: radial-gradient(
    circle,
    rgba(201, 162, 122, 0.24),
    transparent 70%
  );
  filter: blur(28px);
  pointer-events: none;
}
.pf-furn-hero__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 32, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.pf-furn-hero__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.pf-furn-hero__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.pf-furn-hero__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.pf-furn-hero__chrome > span:nth-child(2) {
  background: #febc2e;
}
.pf-furn-hero__chrome > span:nth-child(3) {
  background: #28c840;
}
.pf-furn-hero__chrome em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pf-furn-hero__shot img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.pf-furn-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.85rem 0.9rem 1rem;
}
.pf-furn-hero__stats div {
  text-align: center;
  padding: 0.55rem 0.35rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-furn-hero__stats b {
  display: block;
  color: #fff;
  font-size: 1rem;
}
.pf-furn-hero__stats span {
  font-size: 0.7rem;
  color: var(--dim);
}
.pf-furn-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 16, 34, 0.92);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
.pf-furn-hero__float i {
  color: #c9a27a;
}
.pf-furn-hero__float--room {
  top: 12%;
  right: -0.25rem;
}
.pf-furn-hero__float--craft {
  bottom: 18%;
  left: -0.5rem;
}
@media (max-width: 991px) {
  .pf-furn-hero__stage {
    display: none;
  }
}

.pf-furn-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-furn-pillars__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-furn-pillars__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 122, 0.14);
  color: #c9a27a;
  margin-bottom: 0.65rem;
}
.pf-furn-pillars__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-furn-pillars__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.pf-furn-journey {
  --pf-furn-node: 2.3rem;
  --pf-furn-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pf-furn-gap);
  position: relative;
  isolation: isolate;
}
.pf-furn-journey__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.pf-furn-journey__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--pf-furn-node) / 2);
  left: calc(50% + (var(--pf-furn-node) / 2));
  width: calc(100% - var(--pf-furn-node) + var(--pf-furn-gap));
  height: 2px;
  margin-top: -1px;
  background: rgba(201, 162, 122, 0.45);
  z-index: 0;
  pointer-events: none;
}
.pf-furn-journey__n {
  position: relative;
  z-index: 1;
  width: var(--pf-furn-node);
  height: var(--pf-furn-node);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 122, 0.55);
  background: #0a0e1c;
  box-shadow: 0 0 0 4px rgba(10, 14, 28, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  color: #c9a27a;
}
.pf-furn-journey__body {
  width: 100%;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.pf-furn-journey__body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #fff;
}
.pf-furn-journey__body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}

.pf-furn-lookbook {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
.pf-furn-lookbook__slide {
  margin: 0;
  min-width: 0;
}
.pf-furn-lookbook__media {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0a0e1c;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}
.pf-furn-lookbook__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 42%,
    rgba(6, 10, 22, 0.88) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.pf-furn-lookbook__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  transition: transform 0.55s ease;
}
.pf-furn-lookbook__slide:hover .pf-furn-lookbook__media img {
  transform: scale(1.04);
}
.pf-furn-lookbook__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.15rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pf-furn-lookbook__label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.pf-furn-lookbook__cap em {
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(201, 162, 122, 0.95);
}

.pf-furn-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-furn-modules__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-furn-modules__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
  margin-bottom: 0.65rem;
}
.pf-furn-modules__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-furn-modules__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.page-pf-furniture-web-design .pf-frame {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.page-pf-furniture-web-design .pf-frame img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.page-pf-furniture-web-design .pf-furn-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}
.page-pf-furniture-web-design .pf-furn-case__tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

/* Jobs portal portfolio */
.pf-jobs-hero .hero__grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 2.5rem;
}
.pf-jobs-hero__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  display: grid;
  place-items: center;
  padding: 0.5rem 0.75rem;
  box-sizing: border-box;
}
.pf-jobs-hero__glow {
  position: absolute;
  inset: 8% 4%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.2), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}
.pf-jobs-mock {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 32, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.pf-jobs-mock__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}
.pf-jobs-mock__bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.pf-jobs-mock__bar > span:nth-child(1) {
  background: #ff5f57;
}
.pf-jobs-mock__bar > span:nth-child(2) {
  background: #febc2e;
}
.pf-jobs-mock__bar > span:nth-child(3) {
  background: #28c840;
}
.pf-jobs-mock__bar em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pf-jobs-mock__search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.85rem 0.9rem 0.55rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  color: var(--dim);
}
.pf-jobs-mock__search i {
  color: var(--cyan);
}
.pf-jobs-mock__list {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0.35rem;
}
.pf-jobs-mock__list li {
  padding: 0.7rem 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  color: var(--dim);
}
.pf-jobs-mock__list li:last-child {
  border-bottom: 0;
}
.pf-jobs-mock__list li b {
  display: block;
  color: #fff;
  margin-bottom: 0.2rem;
  font-size: 0.88rem;
}
.pf-jobs-mock__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.75rem 0.85rem 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}
.pf-jobs-mock__stats div {
  text-align: center;
  padding: 0.45rem 0.25rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-jobs-mock__stats b {
  display: block;
  color: #fff;
  font-size: 0.88rem;
}
.pf-jobs-mock__stats span {
  font-size: 0.65rem;
  color: var(--dim);
}
.pf-jobs-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 16, 34, 0.92);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
.pf-jobs-hero__float i {
  color: var(--cyan);
}
.pf-jobs-hero__float--hire {
  top: 8%;
  right: -0.15rem;
}
.pf-jobs-hero__float--apply {
  bottom: 14%;
  left: -0.35rem;
}
@media (max-width: 991px) {
  .pf-jobs-hero__stage {
    display: none;
  }
}

.pf-jobs-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-jobs-pillars__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-jobs-pillars__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.12);
  color: var(--cyan);
  margin-bottom: 0.65rem;
}
.pf-jobs-pillars__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-jobs-pillars__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.pf-jobs-journey {
  --pf-jobs-node: 2.3rem;
  --pf-jobs-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pf-jobs-gap);
  position: relative;
  isolation: isolate;
}
.pf-jobs-journey__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.pf-jobs-journey__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--pf-jobs-node) / 2);
  left: calc(50% + (var(--pf-jobs-node) / 2));
  width: calc(100% - var(--pf-jobs-node) + var(--pf-jobs-gap));
  height: 2px;
  margin-top: -1px;
  background: rgba(4, 228, 255, 0.45);
  z-index: 0;
  pointer-events: none;
}
.pf-jobs-journey__n {
  position: relative;
  z-index: 1;
  width: var(--pf-jobs-node);
  height: var(--pf-jobs-node);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(4, 228, 255, 0.55);
  background: #0a0e1c;
  box-shadow: 0 0 0 4px rgba(10, 14, 28, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
}
.pf-jobs-journey__body {
  width: 100%;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.pf-jobs-journey__body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #fff;
}
.pf-jobs-journey__body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}

.pf-jobs-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-jobs-modules__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-jobs-modules__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
  margin-bottom: 0.65rem;
}
.pf-jobs-modules__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-jobs-modules__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.page-pf-jobs-website-design .pf-frame {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.page-pf-jobs-website-design .pf-frame img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.page-pf-jobs-website-design .pf-jobs-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}
.page-pf-jobs-website-design .pf-jobs-case__tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

/* Education campus portfolio */
.pf-edu-hero .hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.5rem;
}
.pf-edu-hero__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 0.75rem 1.25rem;
  box-sizing: border-box;
}
.pf-edu-hero__glow {
  position: absolute;
  inset: 12% 6%;
  background: radial-gradient(
    circle,
    rgba(184, 192, 255, 0.22),
    transparent 70%
  );
  filter: blur(28px);
  pointer-events: none;
}
.pf-edu-hero__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 32, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.pf-edu-hero__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.pf-edu-hero__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.pf-edu-hero__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.pf-edu-hero__chrome > span:nth-child(2) {
  background: #febc2e;
}
.pf-edu-hero__chrome > span:nth-child(3) {
  background: #28c840;
}
.pf-edu-hero__chrome em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pf-edu-hero__shot img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.pf-edu-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.85rem 0.9rem 1rem;
}
.pf-edu-hero__stats div {
  text-align: center;
  padding: 0.55rem 0.35rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-edu-hero__stats b {
  display: block;
  color: #fff;
  font-size: 1rem;
}
.pf-edu-hero__stats span {
  font-size: 0.7rem;
  color: var(--dim);
}
.pf-edu-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 16, 34, 0.92);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
.pf-edu-hero__float i {
  color: #b8c0ff;
}
.pf-edu-hero__float--admit {
  top: 12%;
  right: -0.25rem;
}
.pf-edu-hero__float--learn {
  bottom: 18%;
  left: -0.5rem;
}
@media (max-width: 991px) {
  .pf-edu-hero__stage {
    display: none;
  }
}

.pf-edu-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-edu-pillars__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-edu-pillars__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(184, 192, 255, 0.14);
  color: #b8c0ff;
  margin-bottom: 0.65rem;
}
.pf-edu-pillars__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-edu-pillars__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.pf-edu-journey {
  --pf-edu-node: 2.3rem;
  --pf-edu-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pf-edu-gap);
  position: relative;
  isolation: isolate;
}
.pf-edu-journey__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.pf-edu-journey__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--pf-edu-node) / 2);
  left: calc(50% + (var(--pf-edu-node) / 2));
  width: calc(100% - var(--pf-edu-node) + var(--pf-edu-gap));
  height: 2px;
  margin-top: -1px;
  background: rgba(184, 192, 255, 0.45);
  z-index: 0;
  pointer-events: none;
}
.pf-edu-journey__n {
  position: relative;
  z-index: 1;
  width: var(--pf-edu-node);
  height: var(--pf-edu-node);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(184, 192, 255, 0.55);
  background: #0a0e1c;
  box-shadow: 0 0 0 4px rgba(10, 14, 28, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  color: #b8c0ff;
}
.pf-edu-journey__body {
  width: 100%;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.pf-edu-journey__body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #fff;
}
.pf-edu-journey__body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}

.pf-edu-platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-edu-platforms__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-edu-platforms__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
  margin-bottom: 0.65rem;
}
.pf-edu-platforms__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-edu-platforms__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.pf-edu-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-edu-modules__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-edu-modules__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(184, 192, 255, 0.12);
  color: #b8c0ff;
  margin-bottom: 0.65rem;
}
.pf-edu-modules__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-edu-modules__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.page-pf-education-website-design .pf-frame {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.page-pf-education-website-design .pf-frame img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.page-pf-education-website-design .pf-edu-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}
.page-pf-education-website-design .pf-edu-case__tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

/* Audio listening portfolio */
.pf-audio-hero .hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.5rem;
}
.pf-audio-hero__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 0.75rem 1.25rem;
  box-sizing: border-box;
}
.pf-audio-hero__glow {
  position: absolute;
  inset: 12% 6%;
  background: radial-gradient(
    circle,
    rgba(124, 92, 255, 0.28),
    transparent 70%
  );
  filter: blur(28px);
  pointer-events: none;
}
.pf-audio-hero__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 32, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.pf-audio-hero__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.pf-audio-hero__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.pf-audio-hero__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.pf-audio-hero__chrome > span:nth-child(2) {
  background: #febc2e;
}
.pf-audio-hero__chrome > span:nth-child(3) {
  background: #28c840;
}
.pf-audio-hero__chrome em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pf-audio-wave {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1rem 0.35rem;
}
.pf-audio-wave__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 110px;
  padding: 0 0.25rem;
}
.pf-audio-wave__bars span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(
    to top,
    rgba(124, 92, 255, 0.85),
    rgba(4, 228, 255, 0.65)
  );
  height: calc(var(--h, 50) * 1%);
  animation: pf-wave 1.2s ease-in-out infinite alternate;
  animation-delay: calc(var(--i, 0) * 0.04s);
}
@keyframes pf-wave {
  from {
    opacity: 0.65;
    transform: scaleY(0.92);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pf-audio-wave__bars span {
    animation: none;
  }
}
.pf-audio-wave__track {
  margin-top: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pf-audio-wave__track i {
  color: var(--cyan);
  font-size: 1rem;
}
.pf-audio-wave__track em {
  font-style: normal;
}
.pf-audio-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.85rem 0.9rem 1rem;
}
.pf-audio-hero__stats div {
  text-align: center;
  padding: 0.55rem 0.35rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-audio-hero__stats b {
  display: block;
  color: #fff;
  font-size: 1rem;
}
.pf-audio-hero__stats span {
  font-size: 0.7rem;
  color: var(--dim);
}
.pf-audio-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 16, 34, 0.92);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
.pf-audio-hero__float i {
  color: #cbb8ff;
}
.pf-audio-hero__float--play {
  top: 12%;
  right: -0.25rem;
}
.pf-audio-hero__float--lib {
  bottom: 18%;
  left: -0.5rem;
}
@media (max-width: 991px) {
  .pf-audio-hero__stage {
    display: none;
  }
}

.pf-audio-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-audio-pillars__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-audio-pillars__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(124, 92, 255, 0.16);
  color: #cbb8ff;
  margin-bottom: 0.65rem;
}
.pf-audio-pillars__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-audio-pillars__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.pf-audio-journey {
  --pf-audio-node: 2.3rem;
  --pf-audio-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pf-audio-gap);
  position: relative;
  isolation: isolate;
}
.pf-audio-journey__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.pf-audio-journey__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--pf-audio-node) / 2);
  left: calc(50% + (var(--pf-audio-node) / 2));
  width: calc(100% - var(--pf-audio-node) + var(--pf-audio-gap));
  height: 2px;
  margin-top: -1px;
  background: rgba(124, 92, 255, 0.45);
  z-index: 0;
  pointer-events: none;
}
.pf-audio-journey__n {
  position: relative;
  z-index: 1;
  width: var(--pf-audio-node);
  height: var(--pf-audio-node);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(124, 92, 255, 0.55);
  background: #0a0e1c;
  box-shadow: 0 0 0 4px rgba(10, 14, 28, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  color: #cbb8ff;
}
.pf-audio-journey__body {
  width: 100%;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.pf-audio-journey__body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #fff;
}
.pf-audio-journey__body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}

.pf-audio-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-audio-modules__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-audio-modules__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
  margin-bottom: 0.65rem;
}
.pf-audio-modules__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-audio-modules__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.page-pf-audio-website-design .pf-frame {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.page-pf-audio-website-design .pf-frame img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.page-pf-audio-website-design .pf-audio-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}
.page-pf-audio-website-design .pf-audio-case__tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

/* MTill POS & CMS portfolio */
.pf-pos-hero .hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.5rem;
}
.pf-pos-hero__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 0.75rem 1.25rem;
  box-sizing: border-box;
}
.pf-pos-hero__glow {
  position: absolute;
  inset: 10% 4%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}
.pf-pos-dashboard {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 14, 28, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}
.pf-pos-dashboard__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}
.pf-pos-dashboard__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.pf-pos-dashboard__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.pf-pos-dashboard__chrome > span:nth-child(2) {
  background: #febc2e;
}
.pf-pos-dashboard__chrome > span:nth-child(3) {
  background: #28c840;
}
.pf-pos-dashboard__chrome em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pf-pos-dashboard__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.85rem 0.85rem 0.35rem;
}
.pf-pos-dashboard__widget {
  padding: 0.7rem 0.65rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 228, 255, 0.08);
  font-size: 0.72rem;
  color: var(--dim);
}
.pf-pos-dashboard__widget b {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}
.pf-pos-dashboard__shot {
  margin: 0.5rem 0.85rem 0.35rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.pf-pos-dashboard__shot img {
  display: block;
  width: 100%;
  height: auto;
}
.pf-pos-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.65rem 0.85rem 1rem;
}
.pf-pos-hero__stats div {
  text-align: center;
  padding: 0.5rem 0.3rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-pos-hero__stats b {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}
.pf-pos-hero__stats span {
  font-size: 0.68rem;
  color: var(--dim);
}
.pf-pos-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 16, 32, 0.94);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}
.pf-pos-hero__float i {
  color: var(--cyan);
}
.pf-pos-hero__float--till {
  top: 10%;
  right: -0.35rem;
}
.pf-pos-hero__float--stock {
  bottom: 16%;
  left: -0.55rem;
}
@media (max-width: 991px) {
  .pf-pos-hero__stage {
    display: none;
  }
}

.pf-pos-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-pos-pillars__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-pos-pillars__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.12);
  color: var(--cyan);
  margin-bottom: 0.65rem;
}
.pf-pos-pillars__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-pos-pillars__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.pf-pos-journey {
  --pf-pos-node: 2.3rem;
  --pf-pos-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pf-pos-gap);
  position: relative;
  isolation: isolate;
}
.pf-pos-journey__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.pf-pos-journey__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--pf-pos-node) / 2);
  left: calc(50% + (var(--pf-pos-node) / 2));
  width: calc(100% - var(--pf-pos-node) + var(--pf-pos-gap));
  height: 2px;
  margin-top: -1px;
  background: rgba(4, 228, 255, 0.4);
  z-index: 0;
  pointer-events: none;
}
.pf-pos-journey__n {
  position: relative;
  z-index: 1;
  width: var(--pf-pos-node);
  height: var(--pf-pos-node);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(4, 228, 255, 0.5);
  background: #0a0e1c;
  box-shadow: 0 0 0 4px rgba(10, 14, 28, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
}
.pf-pos-journey__body {
  width: 100%;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.pf-pos-journey__body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #fff;
}
.pf-pos-journey__body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}

.pf-pos-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-pos-modules__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-pos-modules__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(124, 92, 255, 0.14);
  color: #cbb8ff;
  margin-bottom: 0.65rem;
}
.pf-pos-modules__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-pos-modules__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.page-pf-mtill-pos-cms .pf-frame {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.page-pf-mtill-pos-cms .pf-frame img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.page-pf-mtill-pos-cms .pf-pos-case__points {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}
.page-pf-mtill-pos-cms .pf-pos-case__points li {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}
.page-pf-mtill-pos-cms .pf-pos-case__points i {
  color: var(--cyan);
  margin-top: 0.15rem;
}
.page-pf-mtill-pos-cms .pf-pos-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}
.page-pf-mtill-pos-cms .pf-pos-case__tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

/* Vape store SEO portfolio */
.pf-vseo-hero .hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.5rem;
}
.pf-vseo-hero__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 0.75rem 1.1rem;
  box-sizing: border-box;
}
.pf-vseo-hero__glow {
  position: absolute;
  inset: 10% 4%;
  background: radial-gradient(
    circle,
    rgba(201, 160, 255, 0.28),
    transparent 70%
  );
  filter: blur(28px);
  pointer-events: none;
}
.pf-vseo-serp {
  position: relative;
  width: 100%;
  max-width: 440px;
  min-height: 0;
}
.pf-vseo-serp .seo-serp__panel {
  padding: 0;
  overflow: hidden;
  background: rgba(10, 14, 28, 0.94);
  border-color: rgba(255, 255, 255, 0.14);
}
.pf-vseo-serp__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}
.pf-vseo-serp__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.pf-vseo-serp__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.pf-vseo-serp__chrome > span:nth-child(2) {
  background: #febc2e;
}
.pf-vseo-serp__chrome > span:nth-child(3) {
  background: #28c840;
}
.pf-vseo-serp__chrome em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pf-vseo-serp .seo-serp__bar {
  margin: 0.85rem 0.9rem 0.75rem;
}
.pf-vseo-serp .seo-serp__bar i {
  color: #c9a0ff;
}
.pf-vseo-serp .seo-serp__list {
  padding: 0 0.9rem;
  gap: 0.55rem;
}
.pf-vseo-serp .seo-serp__list li {
  padding: 0.65rem 0.75rem;
}
.pf-vseo-serp .seo-serp__list li.is-you {
  border-color: rgba(201, 160, 255, 0.4);
  background: linear-gradient(
    135deg,
    rgba(201, 160, 255, 0.14),
    rgba(124, 92, 255, 0.08)
  );
}
.pf-vseo-serp .seo-serp__list span {
  color: rgba(201, 160, 255, 0.9);
}
.pf-vseo-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.75rem 0.9rem 1rem;
}
.pf-vseo-hero__stats div {
  text-align: center;
  padding: 0.5rem 0.3rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-vseo-hero__stats b {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}
.pf-vseo-hero__stats span {
  font-size: 0.68rem;
  color: var(--dim);
}
.pf-vseo-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 14, 30, 0.94);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}
.pf-vseo-hero__float i {
  color: #c9a0ff;
}
.pf-vseo-hero__float--rank {
  top: 10%;
  right: -0.35rem;
}
.pf-vseo-hero__float--traffic {
  bottom: 14%;
  left: -0.5rem;
}
@media (max-width: 991px) {
  .pf-vseo-hero__stage {
    display: none;
  }
}

.pf-vseo-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-vseo-pillars__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-vseo-pillars__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(201, 160, 255, 0.14);
  color: #c9a0ff;
  margin-bottom: 0.65rem;
}
.pf-vseo-pillars__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-vseo-pillars__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.pf-vseo-journey {
  --pf-vseo-node: 2.3rem;
  --pf-vseo-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pf-vseo-gap);
  position: relative;
  isolation: isolate;
}
.pf-vseo-journey__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.pf-vseo-journey__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--pf-vseo-node) / 2);
  left: calc(50% + (var(--pf-vseo-node) / 2));
  width: calc(100% - var(--pf-vseo-node) + var(--pf-vseo-gap));
  height: 2px;
  margin-top: -1px;
  background: rgba(201, 160, 255, 0.45);
  z-index: 0;
  pointer-events: none;
}
.pf-vseo-journey__n {
  position: relative;
  z-index: 1;
  width: var(--pf-vseo-node);
  height: var(--pf-vseo-node);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(201, 160, 255, 0.55);
  background: #0a0e1c;
  box-shadow: 0 0 0 4px rgba(10, 14, 28, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  color: #c9a0ff;
}
.pf-vseo-journey__body {
  width: 100%;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.pf-vseo-journey__body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #fff;
}
.pf-vseo-journey__body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}

.pf-vseo-growth {
  padding: 1.5rem 1.75rem;
  border-radius: 1.15rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-vseo-growth__head p {
  margin: 0.35rem 0 0;
  color: var(--dim);
  font-size: 0.9rem;
}
.pf-vseo-growth__chart {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
  height: 160px;
  margin: 1.25rem 0 1rem;
  padding-top: 0.5rem;
}
.pf-vseo-growth__bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  height: 100%;
  justify-content: flex-end;
}
.pf-vseo-growth__bar i {
  display: block;
  width: 100%;
  max-width: 48px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(
    to top,
    rgba(124, 92, 255, 0.85),
    rgba(201, 160, 255, 0.75)
  );
  height: calc(var(--h, 40) * 1%);
  animation: pf-vseo-bar 1.4s ease-out both;
}
@keyframes pf-vseo-bar {
  from {
    transform: scaleY(0.4);
    opacity: 0.5;
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
    transform-origin: bottom;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pf-vseo-growth__bar i {
    animation: none;
  }
}
.pf-vseo-growth__bar span {
  font-size: 0.72rem;
  color: var(--dim);
}
.pf-vseo-growth__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
.pf-vseo-growth__metrics div {
  padding: 0.75rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(201, 160, 255, 0.06);
}
.pf-vseo-growth__metrics b {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}
.pf-vseo-growth__metrics span {
  font-size: 0.78rem;
  color: var(--dim);
}

.pf-vseo-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-vseo-modules__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-vseo-modules__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(124, 92, 255, 0.14);
  color: #cbb8ff;
  margin-bottom: 0.65rem;
}
.pf-vseo-modules__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-vseo-modules__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.page-pf-vape-store-seo .pf-frame {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.page-pf-vape-store-seo .pf-frame img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.page-pf-vape-store-seo .pf-vseo-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}
.page-pf-vape-store-seo .pf-vseo-case__tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

/* Mobile store SEO portfolio */
.pf-mseo-hero .hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.5rem;
}
.pf-mseo-hero__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 0.75rem 1.1rem;
  box-sizing: border-box;
}
.pf-mseo-hero__glow {
  position: absolute;
  inset: 12% 10%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.24), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}
.pf-mseo-phone {
  position: relative;
  z-index: 1;
}
.pf-mseo-phone__frame {
  width: 248px;
  margin: 0 auto;
  padding: 0.7rem 0.65rem 0.85rem;
  border-radius: 1.85rem;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(
    160deg,
    rgba(20, 28, 48, 0.95),
    rgba(6, 10, 22, 0.98)
  );
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}
.pf-mseo-phone__notch {
  width: 38%;
  height: 8px;
  margin: 0 auto 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
}
.pf-mseo-phone__screen {
  border-radius: 1.15rem;
  overflow: hidden;
  background: #0a0e1c;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.pf-mseo-phone__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.75rem;
  font-size: 0.75rem;
  color: var(--dim);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.pf-mseo-phone__bar i {
  color: var(--cyan);
}
.pf-mseo-phone__bar em {
  font-style: normal;
}
.pf-mseo-phone__list {
  list-style: none;
  margin: 0;
  padding: 0.55rem 0.55rem 0.25rem;
  display: grid;
  gap: 0.4rem;
}
.pf-mseo-phone__list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border-radius: 0.65rem;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.03);
}
.pf-mseo-phone__list li.is-you {
  border-color: rgba(4, 228, 255, 0.4);
  background: linear-gradient(
    135deg,
    rgba(4, 228, 255, 0.14),
    rgba(43, 255, 136, 0.08)
  );
}
.pf-mseo-phone__list b {
  font-size: 0.78rem;
  color: #fff;
  font-weight: 600;
}
.pf-mseo-phone__list span {
  font-size: 0.68rem;
  color: var(--dim);
  white-space: nowrap;
}
.pf-mseo-phone__list li.is-you span {
  color: #2bff88;
}
.pf-mseo-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  padding: 0.55rem 0.55rem 0.7rem;
}
.pf-mseo-hero__stats div {
  text-align: center;
  padding: 0.4rem 0.2rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-mseo-hero__stats b {
  display: block;
  color: #fff;
  font-size: 0.78rem;
}
.pf-mseo-hero__stats span {
  font-size: 0.58rem;
  color: var(--dim);
}
.pf-mseo-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 16, 32, 0.94);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}
.pf-mseo-hero__float i {
  color: var(--cyan);
}
.pf-mseo-hero__float--rank {
  top: 12%;
  right: 2%;
}
.pf-mseo-hero__float--cat {
  bottom: 14%;
  left: 0;
}
@media (max-width: 991px) {
  .pf-mseo-hero__stage {
    display: none;
  }
}

.pf-mseo-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-mseo-pillars__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-mseo-pillars__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.12);
  color: var(--cyan);
  margin-bottom: 0.65rem;
}
.pf-mseo-pillars__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-mseo-pillars__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.pf-mseo-journey {
  --pf-mseo-node: 2.3rem;
  --pf-mseo-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pf-mseo-gap);
  position: relative;
  isolation: isolate;
}
.pf-mseo-journey__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.pf-mseo-journey__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--pf-mseo-node) / 2);
  left: calc(50% + (var(--pf-mseo-node) / 2));
  width: calc(100% - var(--pf-mseo-node) + var(--pf-mseo-gap));
  height: 2px;
  margin-top: -1px;
  background: rgba(4, 228, 255, 0.4);
  z-index: 0;
  pointer-events: none;
}
.pf-mseo-journey__n {
  position: relative;
  z-index: 1;
  width: var(--pf-mseo-node);
  height: var(--pf-mseo-node);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(4, 228, 255, 0.5);
  background: #0a0e1c;
  box-shadow: 0 0 0 4px rgba(10, 14, 28, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
}
.pf-mseo-journey__body {
  width: 100%;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.pf-mseo-journey__body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #fff;
}
.pf-mseo-journey__body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}

.pf-mseo-ladder {
  display: grid;
  gap: 0.75rem;
}
.pf-mseo-ladder__step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-mseo-ladder__n {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(4, 228, 255, 0.35);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
}
.pf-mseo-ladder__body h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 600;
}
.pf-mseo-ladder__body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}
.pf-mseo-rank {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(43, 255, 136, 0.15);
  color: #2bff88;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.pf-mseo-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-mseo-modules__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-mseo-modules__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(43, 255, 136, 0.1);
  color: #2bff88;
  margin-bottom: 0.65rem;
}
.pf-mseo-modules__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-mseo-modules__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.page-pf-mobile-store-seo .pf-frame {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.page-pf-mobile-store-seo .pf-frame img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.page-pf-mobile-store-seo .pf-mseo-case__points {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}
.page-pf-mobile-store-seo .pf-mseo-case__points li {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}
.page-pf-mobile-store-seo .pf-mseo-case__points i {
  color: var(--cyan);
  margin-top: 0.15rem;
}
.page-pf-mobile-store-seo .pf-mseo-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}
.page-pf-mobile-store-seo .pf-mseo-case__tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

/* Dental website SEO portfolio */
.pf-dseo-hero .hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.5rem;
}
.pf-dseo-hero__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 0.75rem 1.1rem;
  box-sizing: border-box;
}
.pf-dseo-hero__glow {
  position: absolute;
  inset: 10% 6%;
  background: radial-gradient(
    circle,
    rgba(126, 231, 135, 0.22),
    transparent 70%
  );
  filter: blur(28px);
  pointer-events: none;
}
.pf-dseo-map {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 14, 24, 0.94);
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}
.pf-dseo-map__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}
.pf-dseo-map__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.pf-dseo-map__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.pf-dseo-map__chrome > span:nth-child(2) {
  background: #febc2e;
}
.pf-dseo-map__chrome > span:nth-child(3) {
  background: #28c840;
}
.pf-dseo-map__chrome em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pf-dseo-map__canvas {
  position: relative;
  min-height: 240px;
  margin: 0.75rem 0.85rem 0.35rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(rgba(126, 231, 135, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 231, 135, 0.06) 1px, transparent 1px),
    rgba(6, 12, 20, 0.9);
  background-size:
    22px 22px,
    22px 22px,
    auto;
  overflow: hidden;
}
.pf-dseo-map__pin {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  animation: pf-dseo-pin 2s ease-in-out infinite;
  animation-delay: var(--d, 0ms);
}
.pf-dseo-map__pin i {
  font-size: 1.35rem;
  color: #7ee787;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.45));
}
.pf-dseo-map__pin em {
  font-style: normal;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.12rem 0.35rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}
@keyframes pf-dseo-pin {
  0%,
  100% {
    transform: translate(-50%, -100%);
  }
  50% {
    transform: translate(-50%, calc(-100% - 5px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .pf-dseo-map__pin {
    animation: none;
  }
}
.pf-dseo-map__pack {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
  right: 0.65rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}
.pf-dseo-map__pack b {
  display: block;
  color: #fff;
  margin-bottom: 0.15rem;
}
.pf-dseo-map__pack span {
  color: var(--dim);
}
.pf-dseo-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.65rem 0.85rem 1rem;
}
.pf-dseo-hero__stats div {
  text-align: center;
  padding: 0.5rem 0.3rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-dseo-hero__stats b {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}
.pf-dseo-hero__stats span {
  font-size: 0.68rem;
  color: var(--dim);
}
.pf-dseo-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 16, 28, 0.94);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}
.pf-dseo-hero__float i {
  color: #7ee787;
}
.pf-dseo-hero__float--gbp {
  top: 10%;
  right: -0.2rem;
}
.pf-dseo-hero__float--book {
  bottom: 16%;
  left: -0.4rem;
}
@media (max-width: 991px) {
  .pf-dseo-hero__stage {
    display: none;
  }
}

.pf-dseo-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-dseo-pillars__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-dseo-pillars__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(126, 231, 135, 0.12);
  color: #7ee787;
  margin-bottom: 0.65rem;
}
.pf-dseo-pillars__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-dseo-pillars__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.pf-dseo-journey {
  --pf-dseo-node: 2.3rem;
  --pf-dseo-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pf-dseo-gap);
  position: relative;
  isolation: isolate;
}
.pf-dseo-journey__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.pf-dseo-journey__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--pf-dseo-node) / 2);
  left: calc(50% + (var(--pf-dseo-node) / 2));
  width: calc(100% - var(--pf-dseo-node) + var(--pf-dseo-gap));
  height: 2px;
  margin-top: -1px;
  background: rgba(126, 231, 135, 0.4);
  z-index: 0;
  pointer-events: none;
}
.pf-dseo-journey__n {
  position: relative;
  z-index: 1;
  width: var(--pf-dseo-node);
  height: var(--pf-dseo-node);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(126, 231, 135, 0.5);
  background: #0a0e1c;
  box-shadow: 0 0 0 4px rgba(10, 14, 28, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  color: #7ee787;
}
.pf-dseo-journey__body {
  width: 100%;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.pf-dseo-journey__body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #fff;
}
.pf-dseo-journey__body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}

.pf-dseo-treatments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-dseo-treatments__item {
  padding: 1.15rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.pf-dseo-treatments__ico {
  width: 2.3rem;
  height: 2.3rem;
  margin: 0 auto 0.55rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(126, 231, 135, 0.1);
  color: #7ee787;
}
.pf-dseo-treatments__item h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
  color: #fff;
}
.pf-dseo-treatments__item p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--dim);
}

.pf-dseo-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-dseo-modules__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-dseo-modules__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
  margin-bottom: 0.65rem;
}
.pf-dseo-modules__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-dseo-modules__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.page-pf-dental-website-seo .pf-frame {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.page-pf-dental-website-seo .pf-frame img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.page-pf-dental-website-seo .pf-dseo-case__points {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}
.page-pf-dental-website-seo .pf-dseo-case__points li {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}
.page-pf-dental-website-seo .pf-dseo-case__points i {
  color: #7ee787;
  margin-top: 0.15rem;
}
.page-pf-dental-website-seo .pf-dseo-case__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 0.9rem 0 0.35rem;
}
.page-pf-dental-website-seo .pf-dseo-case__metrics div {
  padding: 0.65rem 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(126, 231, 135, 0.06);
  text-align: center;
}
.page-pf-dental-website-seo .pf-dseo-case__metrics b {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}
.page-pf-dental-website-seo .pf-dseo-case__metrics span {
  font-size: 0.72rem;
  color: var(--dim);
}
.page-pf-dental-website-seo .pf-dseo-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}
.page-pf-dental-website-seo .pf-dseo-case__tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

/* Hotel website management portfolio */
.pf-hmgmt-hero .hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.5rem;
}
.pf-hmgmt-hero__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
}
.pf-hmgmt-hero__glow {
  position: absolute;
  inset: 10% 4%;
  background: radial-gradient(
    circle,
    rgba(232, 196, 124, 0.22),
    transparent 70%
  );
  filter: blur(28px);
  pointer-events: none;
}
.pf-hmgmt-preview {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 26, 0.94);
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}
.pf-hmgmt-preview__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}
.pf-hmgmt-preview__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.pf-hmgmt-preview__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.pf-hmgmt-preview__chrome > span:nth-child(2) {
  background: #febc2e;
}
.pf-hmgmt-preview__chrome > span:nth-child(3) {
  background: #28c840;
}
.pf-hmgmt-preview__chrome em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.pf-hmgmt-preview__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.75rem 0.7rem 0.35rem;
}
.pf-hmgmt-preview__col {
  padding: 0.55rem 0.45rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.pf-hmgmt-preview__col h4 {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #e8c47c;
  font-weight: 700;
}
.pf-hmgmt-preview__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.pf-hmgmt-preview__col li {
  padding: 0.4rem 0.35rem;
  border-radius: 0.45rem;
  background: rgba(0, 0, 0, 0.25);
}
.pf-hmgmt-preview__col b {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  line-height: 1.3;
}
.pf-hmgmt-preview__col span {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.58rem;
  padding: 0.1rem 0.3rem;
  border-radius: 999px;
  background: rgba(232, 196, 124, 0.12);
  color: #e8c47c;
}
.pf-hmgmt-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.65rem 0.75rem 1rem;
}
.pf-hmgmt-hero__stats div {
  text-align: center;
  padding: 0.5rem 0.3rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-hmgmt-hero__stats b {
  display: block;
  color: #fff;
  font-size: 0.9rem;
}
.pf-hmgmt-hero__stats span {
  font-size: 0.66rem;
  color: var(--dim);
}
.pf-hmgmt-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 14, 26, 0.94);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}
.pf-hmgmt-hero__float i {
  color: #e8c47c;
}
.pf-hmgmt-hero__float--direct {
  top: 10%;
  right: -0.25rem;
}
.pf-hmgmt-hero__float--ops {
  bottom: 14%;
  left: -0.35rem;
}
@media (max-width: 991px) {
  .pf-hmgmt-hero__stage {
    display: none;
  }
}

.pf-hmgmt-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-hmgmt-pillars__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-hmgmt-pillars__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(232, 196, 124, 0.12);
  color: #e8c47c;
  margin-bottom: 0.65rem;
}
.pf-hmgmt-pillars__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-hmgmt-pillars__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.pf-hmgmt-journey {
  --pf-hmgmt-node: 2.3rem;
  --pf-hmgmt-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pf-hmgmt-gap);
  position: relative;
  isolation: isolate;
}
.pf-hmgmt-journey__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.pf-hmgmt-journey__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--pf-hmgmt-node) / 2);
  left: calc(50% + (var(--pf-hmgmt-node) / 2));
  width: calc(100% - var(--pf-hmgmt-node) + var(--pf-hmgmt-gap));
  height: 2px;
  margin-top: -1px;
  background: rgba(232, 196, 124, 0.4);
  z-index: 0;
  pointer-events: none;
}
.pf-hmgmt-journey__n {
  position: relative;
  z-index: 1;
  width: var(--pf-hmgmt-node);
  height: var(--pf-hmgmt-node);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(232, 196, 124, 0.5);
  background: #0a0e1c;
  box-shadow: 0 0 0 4px rgba(10, 14, 28, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  color: #e8c47c;
}
.pf-hmgmt-journey__body {
  width: 100%;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.pf-hmgmt-journey__body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #fff;
}
.pf-hmgmt-journey__body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}

.pf-hmgmt-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-hmgmt-metrics__item {
  text-align: center;
  padding: 1.15rem 0.75rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-hmgmt-metrics__item b {
  display: block;
  font-size: 1.35rem;
  color: #e8c47c;
  margin-bottom: 0.2rem;
}
.pf-hmgmt-metrics__item span {
  display: block;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.pf-hmgmt-metrics__item em {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--dim);
}

.pf-hmgmt-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pf-hmgmt-board__col {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-hmgmt-board__col h3 {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e8c47c;
}
.pf-hmgmt-board__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.pf-hmgmt-board__col li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--dim);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-hmgmt-board__col li span {
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(232, 196, 124, 0.12);
  color: #e8c47c;
  white-space: nowrap;
}

.pf-hmgmt-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pf-hmgmt-modules__item {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.pf-hmgmt-modules__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(232, 196, 124, 0.1);
  color: #e8c47c;
  margin-bottom: 0.65rem;
}
.pf-hmgmt-modules__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: #fff;
}
.pf-hmgmt-modules__item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.page-pf-hotel-website-management .pf-frame {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.page-pf-hotel-website-management .pf-frame img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.page-pf-hotel-website-management .pf-hmgmt-case__points {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
}
.page-pf-hotel-website-management .pf-hmgmt-case__points li {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}
.page-pf-hotel-website-management .pf-hmgmt-case__points i {
  color: #e8c47c;
  margin-top: 0.15rem;
}
.page-pf-hotel-website-management .pf-hmgmt-case__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}
.page-pf-hotel-website-management .pf-hmgmt-case__tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

/* Shared case study spacing within portfolio pages */
.page-pf-corporate-web-design .pf-corp-case,
.page-pf-construction-web-design .pf-build-case,
.page-pf-dental-web-design .pf-dental-case,
.page-pf-hotel-web-design .pf-hotel-case,
.page-pf-vape-web-design .pf-vape-case,
.page-pf-ecommerce-web-design .pf-eco-case,
.page-pf-jobs-website-design .pf-jobs-case,
.page-pf-education-website-design .pf-edu-case,
.page-pf-furniture-web-design .pf-furn-case,
.page-pf-mtill-pos-cms .pf-pos-case,
.page-pf-vape-store-seo .pf-vseo-case,
.page-pf-dental-website-seo .pf-dseo-case,
.page-pf-hotel-website-management .pf-hmgmt-case {
  margin-bottom: 1.25rem;
}

/* Portfolio responsive */
@media (max-width: 1100px) {
  .pf-mosaic__tile,
  .pf-mosaic__tile--lg,
  .pf-mosaic__tile--md,
  .pf-mosaic__tile--sm {
    grid-column: span 4;
  }
  .pf-dd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pf-corp-trust,
  .pf-dental-pillars,
  .pf-dental-treatments,
  .pf-hotel-pillars,
  .pf-hotel-amenities,
  .pf-vape-pillars,
  .pf-vape-modules,
  .pf-eco-pillars,
  .pf-eco-modules,
  .pf-eco-metrics,
  .pf-furn-pillars,
  .pf-furn-modules,
  .pf-jobs-pillars,
  .pf-jobs-modules,
  .pf-edu-pillars,
  .pf-edu-platforms,
  .pf-edu-modules,
  .pf-audio-pillars,
  .pf-audio-modules,
  .pf-pos-pillars,
  .pf-pos-modules,
  .pf-vseo-pillars,
  .pf-vseo-modules,
  .pf-mseo-pillars,
  .pf-mseo-modules,
  .pf-dseo-pillars,
  .pf-dseo-treatments,
  .pf-dseo-modules,
  .pf-hmgmt-pillars,
  .pf-hmgmt-modules,
  .pf-hmgmt-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .pf-hmgmt-board {
    grid-template-columns: 1fr 1fr;
  }
  .pf-build-timeline,
  .pf-dental-journey,
  .pf-hotel-journey,
  .pf-vape-journey,
  .pf-eco-journey,
  .pf-furn-journey,
  .pf-jobs-journey,
  .pf-edu-journey,
  .pf-audio-journey,
  .pf-pos-journey,
  .pf-vseo-journey,
  .pf-mseo-journey,
  .pf-dseo-journey,
  .pf-hmgmt-journey {
    grid-template-columns: repeat(2, 1fr);
  }
  .pf-build-timeline::before {
    display: none;
  }
  .pf-build-timeline__step:not(:last-child)::after,
  .pf-dental-journey__step:not(:last-child)::after,
  .pf-hotel-journey__step:not(:last-child)::after,
  .pf-vape-journey__step:not(:last-child)::after,
  .pf-eco-journey__step:not(:last-child)::after,
  .pf-furn-journey__step:not(:last-child)::after,
  .pf-jobs-journey__step:not(:last-child)::after,
  .pf-edu-journey__step:not(:last-child)::after,
  .pf-audio-journey__step:not(:last-child)::after,
  .pf-pos-journey__step:not(:last-child)::after,
  .pf-vseo-journey__step:not(:last-child)::after,
  .pf-mseo-journey__step:not(:last-child)::after,
  .pf-dseo-journey__step:not(:last-child)::after,
  .pf-hmgmt-journey__step:not(:last-child)::after {
    display: none;
  }
  .pf-vseo-growth__metrics {
    grid-template-columns: 1fr 1fr;
  }
  .pf-seo-case {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .pf-mosaic__tile,
  .pf-mosaic__tile--lg,
  .pf-mosaic__tile--md,
  .pf-mosaic__tile--sm {
    grid-column: span 12;
  }
  .pf-hub-links,
  .pf-dd-grid,
  .pf-vape-mosaic,
  .pf-hmgmt-board,
  .pf-corp-trust,
  .pf-dental-pillars,
  .pf-dental-treatments,
  .pf-dental-journey,
  .pf-hotel-pillars,
  .pf-hotel-amenities,
  .pf-hotel-journey,
  .pf-vape-pillars,
  .pf-vape-modules,
  .pf-vape-journey,
  .pf-eco-pillars,
  .pf-eco-modules,
  .pf-eco-journey,
  .pf-eco-metrics,
  .pf-furn-pillars,
  .pf-furn-modules,
  .pf-furn-journey,
  .pf-jobs-pillars,
  .pf-jobs-modules,
  .pf-jobs-journey,
  .pf-edu-pillars,
  .pf-edu-platforms,
  .pf-edu-modules,
  .pf-edu-journey,
  .pf-audio-pillars,
  .pf-audio-modules,
  .pf-audio-journey,
  .pf-pos-pillars,
  .pf-pos-modules,
  .pf-pos-journey,
  .pf-vseo-pillars,
  .pf-vseo-modules,
  .pf-vseo-journey,
  .pf-mseo-pillars,
  .pf-mseo-modules,
  .pf-mseo-journey,
  .pf-dseo-pillars,
  .pf-dseo-treatments,
  .pf-dseo-modules,
  .pf-dseo-journey,
  .pf-hmgmt-pillars,
  .pf-hmgmt-modules,
  .pf-hmgmt-journey,
  .pf-hmgmt-metrics,
  .pf-build-timeline {
    grid-template-columns: 1fr;
  }
  .pf-vseo-growth__metrics {
    grid-template-columns: 1fr;
  }
  .pf-mseo-ladder__step {
    grid-template-columns: auto 1fr;
  }
  .pf-mseo-ladder__step .pf-mseo-rank {
    grid-column: 2;
    justify-self: start;
  }
  .pf-vape-mosaic {
    grid-template-columns: 1fr;
  }
  .pf-vape-mosaic__shot {
    aspect-ratio: 16 / 10;
  }
  .pf-furn-lookbook {
    grid-template-columns: 1fr;
  }
  .pf-furn-lookbook__media {
    aspect-ratio: 16 / 10;
  }
  .pf-editorial,
  .pf-hotel-booking {
    flex-direction: column;
    align-items: flex-start;
  }
  .pf-hotel-lookbook {
    grid-template-columns: 1fr;
  }
  .pf-hotel-lookbook__media {
    aspect-ratio: 16 / 10;
  }
}

/* Blog listing */
.page-blog .section--tight {
  padding-top: 1.25rem;
}
.blog-hero .hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.5rem;
}
.blog-hero .svc-hero__sub {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.72);
}
.blog-hero__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 0.75rem 1.1rem;
  box-sizing: border-box;
}
.blog-hero__glow {
  position: absolute;
  inset: 12% 8%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.2), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}
.blog-hero__panel {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 28, 0.94);
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}
.blog-hero__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}
.blog-hero__chrome > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.blog-hero__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.blog-hero__chrome > span:nth-child(2) {
  background: #febc2e;
}
.blog-hero__chrome > span:nth-child(3) {
  background: #28c840;
}
.blog-hero__chrome em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.blog-hero__list {
  display: grid;
  gap: 0.45rem;
  padding: 0.85rem;
}
.blog-hero__list div {
  padding: 0.7rem 0.8rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}
.blog-hero__list div.is-active {
  border-color: rgba(4, 228, 255, 0.35);
  background: linear-gradient(
    135deg,
    rgba(4, 228, 255, 0.12),
    rgba(124, 92, 255, 0.08)
  );
}
.blog-hero__list b {
  display: block;
  color: #fff;
  font-size: 0.9rem;
}
.blog-hero__list span {
  font-size: 0.75rem;
  color: var(--dim);
}
.blog-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 16, 32, 0.94);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}
.blog-hero__float i {
  color: var(--cyan);
}
.blog-hero__float--read {
  top: 12%;
  right: -0.2rem;
}
.blog-hero__float--seo {
  bottom: 16%;
  left: -0.35rem;
}
@media (max-width: 991px) {
  .blog-hero__stage {
    display: none;
  }
}

.blog-toolbar {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.blog-search {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.7rem 0.95rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
}
.blog-search i {
  color: var(--cyan);
  flex-shrink: 0;
}
.blog-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
}
.blog-search input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.blog-filters__btn {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}
.blog-filters__btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.blog-filters__btn.is-active {
  color: var(--cyan);
  border-color: rgba(4, 228, 255, 0.45);
  background: rgba(4, 228, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(4, 228, 255, 0.12);
}

.blog-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan);
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.05fr);
  gap: 1.35rem;
  align-items: stretch;
  margin-bottom: 1.75rem;
  padding: 0.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.blog-featured:hover {
  border-color: rgba(4, 228, 255, 0.35);
  transform: translateY(-2px);
}
.blog-featured__media {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 16 / 11;
  background: rgba(0, 0, 0, 0.25);
  min-height: 0;
}
.blog-featured__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.blog-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.65rem 0.85rem 0.65rem 0.15rem;
}
.blog-featured__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  margin-bottom: 0.7rem;
  font-size: 0.8rem;
  color: var(--dim);
}
.blog-featured__body .h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.25;
}
.blog-featured__body p {
  margin: 0 0 1rem;
  color: var(--dim);
  font-size: 0.95rem;
  line-height: 1.55;
}
.blog-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.92rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.blog-card:hover {
  border-color: rgba(4, 228, 255, 0.3);
  transform: translateY(-3px);
}
.blog-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}
.blog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1.05rem 1.15rem;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--dim);
}
.blog-card__body h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.35;
}
.blog-card__body p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--dim);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}

.blog-empty {
  margin: 1.25rem 0 0;
  text-align: center;
  color: var(--dim);
  font-size: 0.95rem;
}
.blog-more {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
}
.blog-more__btn {
  min-width: 12rem;
}
.blog-more__btn i {
  margin-left: 0.35rem;
}
.blog-more__meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dim);
}

.blog-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: linear-gradient(
    135deg,
    rgba(4, 228, 255, 0.08),
    rgba(124, 92, 255, 0.08)
  );
}
.blog-cta .h2 {
  margin: 0.35rem 0 0.45rem;
}
.blog-cta p {
  margin: 0;
  color: var(--dim);
  max-width: 42rem;
}

@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-featured {
    grid-template-columns: 1fr;
  }
  .blog-featured__body {
    padding: 0.35rem 0.35rem 0.55rem;
  }
}
@media (max-width: 720px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-toolbar {
    padding: 0.75rem;
  }
  .blog-filters__btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.82rem;
  }
}

/* ===== BLOG DETAIL ===== */
.blog-detail-hero .hero__grid {
  align-items: center;
  gap: 2rem 2.5rem;
}
.blog-detail-hero__grid--text-only {
  grid-template-columns: 1fr;
}
.blog-detail-hero__copy {
  min-width: 0;
}
.blog-detail-hero h1 {
  margin: 0.65rem 0 0.75rem;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  line-height: 1.15;
  color: #fff;
}
.blog-detail-hero .lead {
  max-width: 38rem;
  color: var(--dim);
}
.blog-detail-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--dim);
}
.blog-detail-hero__dot {
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  user-select: none;
}

.blog-detail-hero__media {
  position: relative;
  margin: 0;
  min-width: 0;
}
.blog-detail-hero__glow {
  position: absolute;
  inset: 12% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}
.blog-detail-hero__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.blog-detail-hero__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 960px) {
  .blog-detail-hero .hero__grid {
    grid-template-columns: 1fr;
  }
  .blog-detail-hero__media {
    max-width: 28rem;
  }
}
@media (max-width: 720px) {
  .blog-detail-hero__frame {
    aspect-ratio: 16 / 10;
  }
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17.5rem;
  gap: 2rem;
  align-items: start;
}
.blog-detail-main {
  min-width: 0;
  display: grid;
  gap: 1.25rem;
}

.blog-toc {
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: linear-gradient(
    160deg,
    rgba(4, 228, 255, 0.07),
    rgba(124, 92, 255, 0.06)
  );
}
.blog-toc__toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}
.blog-toc__toggle .eyebrow {
  margin: 0;
}
.blog-toc__toggle i {
  color: var(--cyan);
  font-size: 0.85rem;
}
.blog-toc__list {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.85rem;
}
.blog-toc__item a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}
.blog-toc__item a:hover {
  color: var(--cyan);
}
.blog-toc__item--h2 a {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.blog-toc__item--h3 {
  padding-left: 0.85rem;
}
.blog-toc__item--h4 {
  padding-left: 1.7rem;
}
.blog-toc__item--h3 a,
.blog-toc__item--h4 a {
  font-size: 0.84rem;
}

.blog-prose {
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
}
.blog-prose > *:first-child {
  margin-top: 0;
}
.blog-prose h2,
.blog-prose h3,
.blog-prose h4 {
  color: #fff;
  margin: 1.75rem 0 0.75rem;
  line-height: 1.3;
  scroll-margin-top: 6rem;
}
.blog-prose h2 {
  font-size: 1.45rem;
}
.blog-prose h3 {
  font-size: 1.2rem;
}
.blog-prose h4 {
  font-size: 1.05rem;
}
.blog-prose p {
  margin: 0 0 1rem;
}
.blog-prose ul,
.blog-prose ol {
  margin: 0 0 1.15rem;
  padding-left: 1.25rem;
}
.blog-prose li {
  margin: 0.35rem 0;
}
.blog-prose a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.blog-prose a:hover {
  color: #fff;
}
.blog-prose img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.25rem 0;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
}
.blog-prose blockquote {
  margin: 1.25rem 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--cyan);
  background: rgba(4, 228, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}
.blog-prose strong,
.blog-prose b {
  color: #fff;
}

.blog-cat--link {
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.blog-cat--link:hover {
  color: #041018;
  background: var(--cyan);
  border-color: transparent;
}
.blog-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}
.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--dim);
  font-size: 0.75rem;
  line-height: 1.2;
}

.blog-detail-aside {
  position: sticky;
  top: 5.5rem;
  display: grid;
  gap: 1rem;
}
.blog-detail-aside__card {
  padding: 1.25rem 1.15rem;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: linear-gradient(
    160deg,
    rgba(4, 228, 255, 0.07),
    rgba(124, 92, 255, 0.06)
  );
  display: grid;
  gap: 0.7rem;
}
.blog-detail-aside__nav .eyebrow {
  margin-bottom: 0.15rem;
}
.blog-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}
.blog-cat-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.65rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.88rem;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.blog-cat-list__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.blog-cat-list__link.is-active {
  background: rgba(4, 228, 255, 0.12);
  color: #fff;
}
.blog-cat-list__link em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--dim);
  min-width: 1.4rem;
  text-align: right;
}
.blog-cat-list__link.is-active em {
  color: var(--cyan);
}

.blog-cat-more {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  width: auto;
  margin-top: 0.45rem;
  margin-left: 0.55rem;
  padding: 0.35rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--cyan);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}
.blog-cat-more:hover {
  color: #fff;
  background: transparent;
}
.blog-cat-more i {
  font-size: 0.75rem;
  line-height: 1;
}

.blog-detail-aside__card .h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #fff;
}
.blog-detail-aside__card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--dim);
  line-height: 1.5;
}
.btn--block {
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

.blog-related-head {
  margin-bottom: 1.25rem;
}
.blog-related-head .h2 {
  margin: 0.25rem 0 0;
}
.blog-grid--related {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }
  .blog-detail-aside {
    position: static;
  }
  .blog-grid--related {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .blog-grid--related {
    grid-template-columns: 1fr;
  }
  .blog-prose {
    font-size: 1rem;
  }
}

/* ===== CONTACT ===== */
.contact-hero .hero__grid {
  align-items: center;
}
.contact-hero__stage {
  position: relative;
  min-width: 0;
}
.contact-hero__glow {
  position: absolute;
  inset: 8% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.contact-hero__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  background: linear-gradient(
    160deg,
    rgba(4, 228, 255, 0.08),
    rgba(8, 14, 36, 0.55)
  );
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.contact-hero__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 0.9rem;
  border-radius: 0.9rem;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-hero__row.is-live {
  border-color: rgba(4, 228, 255, 0.28);
  background: rgba(4, 228, 255, 0.08);
}
.contact-hero__row > i {
  color: var(--cyan);
  font-size: 1.15rem;
  margin-top: 0.1rem;
}
.contact-hero__row b {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.35;
}
.contact-hero__row span {
  display: block;
  margin-top: 0.15rem;
  color: var(--dim);
  font-size: 0.8rem;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.contact-channel:hover {
  border-color: rgba(4, 228, 255, 0.35);
  background: rgba(4, 228, 255, 0.06);
  transform: translateY(-2px);
}
.contact-channel__ico {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
  font-size: 1.1rem;
}
.contact-channel__body {
  min-width: 0;
  display: grid;
  gap: 0.12rem;
}
.contact-channel__body em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}
.contact-channel__body b {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.3;
  word-break: break-word;
}
.contact-channel__body small {
  color: var(--dim);
  font-size: 0.78rem;
}
.contact-channel__go {
  color: var(--cyan);
  opacity: 0.7;
}

.contact-enquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}
.contact-enquiry__intro .h2 {
  margin: 0.4rem 0 0.75rem;
}
.contact-enquiry__intro > p {
  margin: 0;
  color: var(--dim);
  max-width: 28rem;
  line-height: 1.6;
}
.contact-enquiry__points {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.contact-enquiry__points li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}
.contact-enquiry__points i {
  color: var(--cyan);
  margin-top: 0.15rem;
}

.contact-enquiry__form-wrap {
  padding: 1.35rem 1.35rem 1.4rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: linear-gradient(
    160deg,
    rgba(4, 228, 255, 0.07),
    rgba(8, 14, 36, 0.45)
  );
}
.contact-alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
}
.contact-alert--ok {
  background: rgba(40, 200, 120, 0.1);
  border-color: rgba(40, 200, 120, 0.35);
}
.contact-alert--err {
  background: rgba(255, 95, 87, 0.1);
  border-color: rgba(255, 95, 87, 0.35);
}
.contact-alert i {
  font-size: 1.15rem;
  margin-top: 0.1rem;
}
.contact-alert--ok i {
  color: #4ade80;
}
.contact-alert--err i {
  color: #ff8b84;
}
.contact-alert b {
  display: block;
  color: #fff;
  margin-bottom: 0.2rem;
}
.contact-alert p {
  margin: 0;
  color: var(--dim);
  font-size: 0.9rem;
  line-height: 1.45;
}
.contact-alert a {
  color: var(--cyan);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}
.contact-field {
  display: grid;
  gap: 0.4rem;
}
.contact-field > span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
}
.contact-field > span em {
  font-style: normal;
  color: var(--dim);
  font-weight: 400;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.contact-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--cyan) 50%),
    linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}
.contact-field textarea {
  resize: vertical;
  min-height: 8.5rem;
  margin-bottom: 1rem;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(4, 228, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(4, 228, 255, 0.12);
}
.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.contact-offices .office p {
  margin-bottom: 0.65rem;
}
.contact-office__tel {
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}
.contact-office__tel:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .contact-channels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-enquiry {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .contact-hero__stage {
    display: none;
  }
  .contact-channels {
    grid-template-columns: 1fr;
  }
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
  .contact-enquiry__form-wrap {
    padding: 1.05rem;
  }
}

/* ========== Auth (login / register) — tools orange / light ========== */
.body-auth {
  --auth-orange: #f25c27;
  --auth-orange-deep: #e04f1c;
  --auth-ink: #1a1a2e;
  --auth-muted: #6b7280;
  --auth-line: #e5e7eb;
  --auth-soft: #f4f5f9;
  --auth-panel: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--auth-soft);
  color: var(--auth-ink);
}
.body-auth .auth-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 70% 50% at 10% -10%,
      rgba(242, 92, 39, 0.12),
      transparent 55%
    ),
    radial-gradient(
      ellipse 55% 45% at 100% 0%,
      rgba(242, 92, 39, 0.08),
      transparent 50%
    ),
    linear-gradient(180deg, #fff 0%, var(--auth-soft) 55%, #eef0f5 100%);
}
.body-auth .eyebrow {
  color: var(--auth-orange);
}
.body-auth .eyebrow::before {
  background: linear-gradient(90deg, var(--auth-orange), transparent);
}
.body-auth .btn--solid {
  background: var(--auth-orange);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 22px rgba(242, 92, 39, 0.28);
}
.body-auth .btn--solid:hover {
  background: var(--auth-orange-deep);
  color: #fff;
  filter: none;
}
.body-auth .btn--ghost {
  background: transparent;
  color: var(--auth-ink);
  border: 1px solid var(--auth-line);
}
.body-auth .btn--ghost:hover {
  border-color: var(--auth-orange);
  color: var(--auth-orange);
  background: rgba(242, 92, 39, 0.06);
}
.body-auth .contact-field > span {
  color: #4b5563;
  font-weight: 600;
}
.body-auth .contact-field > span em {
  color: var(--auth-muted);
}
.body-auth .contact-field input,
.body-auth .contact-field select,
.body-auth .contact-field textarea {
  border: 1px solid var(--auth-line);
  background: #fff;
  color: var(--auth-ink);
}
.body-auth .contact-field input::placeholder,
.body-auth .contact-field textarea::placeholder {
  color: #9ca3af;
}
.body-auth .contact-field input:focus,
.body-auth .contact-field select:focus,
.body-auth .contact-field textarea:focus {
  border-color: rgba(242, 92, 39, 0.55);
  box-shadow: 0 0 0 3px rgba(242, 92, 39, 0.14);
}
.body-auth .contact-alert {
  border-color: var(--auth-line);
  background: #fff;
}
.body-auth .contact-alert--ok {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.28);
}
.body-auth .contact-alert--err {
  background: rgba(239, 68, 68, 0.07);
  border-color: rgba(239, 68, 68, 0.25);
}
.body-auth .contact-alert b {
  color: var(--auth-ink);
}
.body-auth .contact-alert p {
  color: var(--auth-muted);
}
.body-auth .contact-alert a {
  color: var(--auth-orange);
}
.auth-main {
  flex: 1;
  position: relative;
  z-index: 1;
}
.auth-bar {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--auth-orange);
}
.auth-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 4.25rem;
  padding-block: 0.75rem;
}
.auth-bar__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.auth-bar__logo img {
  height: 1.85rem;
  width: auto;
  max-width: min(42vw, 11.5rem);
  display: block;
}
.auth-bar__links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex-shrink: 0;
}
.auth-bar__links > a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}
.auth-bar__links > a:hover {
  color: #fff;
}
.auth-bar__cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff !important;
  font-weight: 600 !important;
  background: rgba(255, 255, 255, 0.12);
}
.auth-bar__cta:hover {
  background: #fff;
  color: var(--auth-orange) !important;
}
.auth-bar__cta-short {
  display: none;
}
.auth-foot {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--auth-line);
  padding: 1.1rem 0 1.35rem;
  margin-top: auto;
  background: transparent;
}
.auth-foot__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.auth-foot p {
  margin: 0;
  color: var(--auth-muted);
  font-size: 0.82rem;
}
.auth-foot nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.auth-foot a {
  color: #4b5563;
  text-decoration: none;
  font-size: 0.82rem;
}
.auth-foot a:hover {
  color: var(--auth-orange);
}

.page-auth {
  position: relative;
  z-index: 1;
}
.auth-wrap {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 720px) {
  .auth-wrap {
    padding-top: 1.15rem;
    padding-bottom: 1.75rem;
  }
}
.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  border: 1px solid var(--auth-line);
  border-radius: 1.35rem;
  overflow: hidden;
  background: var(--auth-panel);
  box-shadow: 0 18px 50px rgba(26, 26, 46, 0.08);
}
.auth-panel {
  padding: 2.1rem 2rem 2.2rem;
  background: #fff;
}
.auth-panel__title {
  margin: 0.35rem 0 0.45rem;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
  color: var(--auth-ink);
}
.auth-panel__sub {
  margin: 0 0 1.25rem;
  color: var(--auth-muted);
  font-size: 0.95rem;
}
.auth-panel__sub a {
  color: var(--auth-orange);
  text-decoration: none;
  font-weight: 600;
}
.auth-panel__sub a:hover {
  color: var(--auth-orange-deep);
  text-decoration: underline;
}
.auth-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 0.35rem;
}
.auth-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.auth-pass {
  position: relative;
}
.auth-pass input {
  width: 100%;
  padding: 0.75rem 2.7rem 0.75rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid var(--auth-line);
  background: #fff;
  color: var(--auth-ink);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.auth-pass input:focus {
  border-color: rgba(242, 92, 39, 0.55);
  box-shadow: 0 0 0 3px rgba(242, 92, 39, 0.14);
}
.auth-pass__toggle {
  position: absolute;
  right: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #9ca3af;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 0.5rem;
}
.auth-pass__toggle:hover {
  color: var(--auth-orange);
}
.auth-hint {
  display: block;
  margin-top: 0.35rem;
  color: var(--auth-muted);
  font-size: 0.78rem;
}
.auth-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
}
.auth-meta a {
  color: var(--auth-orange);
  text-decoration: none;
  font-weight: 600;
}
.auth-meta a:hover {
  color: var(--auth-orange-deep);
  text-decoration: underline;
}
.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #4b5563;
  cursor: pointer;
  user-select: none;
}
.auth-check input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--auth-orange);
}
.auth-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}
.auth-or {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  margin: 1.15rem 0 0.95rem;
  color: var(--auth-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.auth-or::before,
.auth-or::after {
  content: "";
  height: 1px;
  background: var(--auth-line);
}
.auth-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--auth-line);
  background: #fff;
  color: var(--auth-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.auth-google:hover {
  border-color: rgba(242, 92, 39, 0.45);
  background: rgba(242, 92, 39, 0.05);
  color: var(--auth-ink);
  box-shadow: 0 6px 18px rgba(26, 26, 46, 0.06);
}
.auth-aside {
  padding: 2.4rem 2.1rem;
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(255, 255, 255, 0.22),
      transparent 42%
    ),
    linear-gradient(160deg, #f25c27 0%, #e04f1c 55%, #c94315 100%);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.auth-aside h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.02em;
}
.auth-aside > p {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  max-width: 28ch;
}
.auth-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.auth-aside li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.92rem;
  line-height: 1.4;
}
.auth-aside li i {
  color: #fff;
  margin-top: 0.12rem;
  opacity: 0.95;
}
@media (max-width: 900px) {
  .auth-shell {
    grid-template-columns: 1fr;
  }
  .auth-aside {
    display: none;
  }
}
@media (max-width: 720px) {
  .auth-bar__inner {
    min-height: 3.5rem;
    padding-block: 0.55rem;
  }
  .auth-bar__logo img {
    height: 1.55rem;
  }
  .auth-bar__back span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .auth-bar__back {
    width: 2.35rem;
    height: 2.35rem;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }
  .auth-bar__cta {
    padding: 0.4rem 0.8rem;
    font-size: 0.84rem;
  }
  .auth-bar__cta-full {
    display: none;
  }
  .auth-bar__cta-short {
    display: inline;
  }
  .auth-panel {
    padding: 1.35rem 1.05rem 1.45rem;
  }
  .auth-panel__title {
    font-size: 1.7rem;
  }
  .auth-meta {
    gap: 0.55rem 0.85rem;
  }
  .auth-or {
    margin: 1rem 0 0.85rem;
  }
  .auth-foot {
    padding: 1rem 0 1.25rem;
  }
  .auth-foot__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.55rem;
  }
}
@media (max-width: 560px) {
  .auth-shell {
    border-radius: 1.05rem;
  }
  .auth-panel {
    padding: 1.2rem 0.95rem 1.3rem;
  }
  .auth-form__row {
    grid-template-columns: 1fr;
  }
  .auth-google {
    font-size: 0.88rem;
    padding: 0.72rem 0.85rem;
  }
}

/* ========== Customer dashboard (sidebar app) — light ========== */
body.dash-app {
  --dash-bg: #eef3f8;
  --dash-surface: #ffffff;
  --dash-ink: #0f1b2d;
  --dash-muted: #5a6b7c;
  --dash-line: rgba(15, 27, 45, 0.1);
  --dash-accent: #0a8aa0;
  --dash-accent-soft: rgba(10, 138, 160, 0.1);
  --dash-ok: #0f9f6e;
  --dash-warn: #b8860b;
  --dash-bad: #d63b55;
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(
      ellipse 80% 50% at 100% -10%,
      rgba(10, 138, 160, 0.08),
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 0% 100%,
      rgba(50, 99, 185, 0.06),
      transparent 45%
    ),
    var(--dash-bg);
  color: var(--dash-ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
}
.dash-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}
.dash-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 1.1rem 0.9rem 1.5rem;
  border-right: 1px solid var(--dash-line);
  background: var(--dash-surface);
  z-index: 40;
  box-shadow: 4px 0 24px rgba(15, 27, 45, 0.03);
}
.dash-sidebar__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  padding: 0 0.35rem;
}
.dash-sidebar__logo {
  color: var(--dash-ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}
.dash-sidebar__logo:hover {
  color: var(--dash-accent);
}
.dash-sidebar__close {
  display: none;
  border: 0;
  background: transparent;
  color: var(--dash-muted);
  font-size: 1.1rem;
  cursor: pointer;
}
.dash-sidebar__user {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--dash-line);
  background: #f7fafc;
}
.dash-sidebar__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10, 138, 160, 0.28);
  background: var(--dash-accent-soft);
  color: var(--dash-accent);
  font-weight: 700;
  font-size: 0.8rem;
}
.dash-sidebar__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dash-sidebar__who {
  min-width: 0;
}
.dash-sidebar__who b {
  display: block;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--dash-ink);
}
.dash-sidebar__who small {
  display: block;
  color: var(--dash-muted);
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-nav__group {
  margin: 1rem 0.5rem 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a97a6;
}
.dash-nav__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.62rem 0.75rem;
  border-radius: 0.7rem;
  border: 0;
  border-left: 3px solid transparent;
  background: transparent;
  color: #3a4a5c;
  text-decoration: none;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}
.dash-nav__link i {
  width: 1.1rem;
  text-align: center;
  color: var(--dash-accent);
  opacity: 0.9;
}
.dash-nav__link:hover {
  background: #f2f7fa;
  color: var(--dash-ink);
}
.dash-nav__link.is-active {
  background: var(--dash-accent-soft);
  color: var(--dash-accent);
  border-left-color: var(--dash-accent);
  font-weight: 600;
}
.dash-nav__link--danger {
  color: var(--dash-bad);
}
.dash-nav__link--danger i {
  color: var(--dash-bad);
}
.dash-nav__link--danger:hover {
  background: rgba(214, 59, 85, 0.08);
  color: #b82f46;
}
.dash-nav__logout {
  margin: 0;
}
.dash-shell__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.dash-topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--dash-line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.dash-topbar__menu {
  display: none;
  border: 0;
  background: #eef3f8;
  color: var(--dash-ink);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  cursor: pointer;
}
.dash-topbar__title {
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--dash-ink);
}
.dash-topbar__actions {
  margin-left: auto;
  display: flex;
  gap: 0.75rem;
}
.dash-topbar__link {
  color: var(--dash-muted);
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.dash-topbar__link:hover {
  color: var(--dash-accent);
}
.dash-main {
  padding: 1.4rem 1.4rem 2.5rem;
}
.dash-shell__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 45, 0.35);
  z-index: 30;
}

.dash-page {
  max-width: 1100px;
}
.dash-page__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.35rem;
}
.dash-page__head h1 {
  margin: 0 0 0.3rem;
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  letter-spacing: -0.02em;
  color: var(--dash-ink);
}
.dash-page__head p {
  margin: 0;
  color: var(--dash-muted);
}
.dash-alert {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(15, 159, 110, 0.28);
  background: rgba(15, 159, 110, 0.08);
}
.dash-alert i {
  color: var(--dash-ok);
  margin-top: 0.15rem;
}
.dash-alert b {
  display: block;
  color: var(--dash-ink);
}
.dash-alert p {
  margin: 0.2rem 0 0;
  color: var(--dash-muted);
  font-size: 0.9rem;
}

.dash-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.dash-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.dash-product {
  padding: 1.1rem 1.15rem 1.15rem;
  border-radius: 1.1rem;
  border: 1px solid var(--dash-line);
  background: var(--dash-surface);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 8px 24px rgba(15, 27, 45, 0.04);
}
.dash-product.is-empty {
  opacity: 0.95;
}
.dash-product__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.dash-product__ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: var(--dash-accent-soft);
  border: 1px solid rgba(10, 138, 160, 0.22);
  color: var(--dash-accent);
}
.dash-product h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--dash-ink);
}
.dash-product p {
  margin: 0;
  color: var(--dash-muted);
  font-size: 0.86rem;
  line-height: 1.45;
  flex: 1;
}
.dash-product__actions {
  margin-top: 1rem;
}
.dash-product__actions a {
  color: var(--dash-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}
.dash-badge--muted,
.dash-badge.none {
  background: #eef2f6;
  color: var(--dash-muted);
  border-color: rgba(15, 27, 45, 0.1);
}

.dash-plan-chip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid var(--dash-line);
  background: var(--dash-surface);
}
.dash-plan-chip--wide {
  margin-bottom: 1.25rem;
}
.dash-plan-chip__ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: var(--dash-accent-soft);
  border: 1px solid rgba(10, 138, 160, 0.22);
  color: var(--dash-accent);
}
.dash-plan-chip b {
  display: block;
  font-size: 0.95rem;
  color: var(--dash-ink);
}
.dash-plan-chip small {
  color: var(--dash-muted);
  font-size: 0.8rem;
}
.dash-plan-chip a {
  margin-left: auto;
  color: var(--dash-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}
.dash-stats--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.dash-stats--1 {
  grid-template-columns: minmax(0, 16rem);
}
.dash-stat {
  padding: 1.15rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid var(--dash-line);
  background: var(--dash-surface);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(15, 27, 45, 0.04);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.dash-stat--static {
  cursor: default;
}
.dash-stat:not(.dash-stat--static):hover {
  transform: translateY(-2px);
  border-color: rgba(10, 138, 160, 0.35);
  box-shadow: 0 12px 28px rgba(15, 27, 45, 0.07);
}
.dash-stat i {
  color: var(--dash-accent);
}
.dash-stat b {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.55rem;
  line-height: 1.1;
  color: var(--dash-ink);
}
.dash-stat span {
  color: var(--dash-muted);
  font-size: 0.8rem;
}

.dash-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.dash-quick__card {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid var(--dash-line);
  background: var(--dash-surface);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(15, 27, 45, 0.04);
}
.dash-quick__card:hover {
  border-color: rgba(10, 138, 160, 0.35);
}
.dash-quick__card > i {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: var(--dash-accent-soft);
  color: var(--dash-accent);
}
.dash-quick__card b {
  display: block;
  color: var(--dash-ink);
}
.dash-quick__card span {
  color: var(--dash-muted);
  font-size: 0.82rem;
}

.dash-section {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.dash-section__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.65rem;
}
.dash-section__head h2 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--dash-ink);
}
.dash-section__head a {
  color: var(--dash-accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.dash-panel {
  border-radius: 1.1rem;
  border: 1px solid var(--dash-line);
  background: var(--dash-surface);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 27, 45, 0.04);
}
.dash-panel--pad {
  padding: 1.2rem 1.2rem 1.35rem;
}
.dash-panel__title {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  color: var(--dash-ink);
}
.dash-empty {
  text-align: center;
  padding: 2.5rem 1.2rem;
  color: var(--dash-muted);
}
.dash-empty i {
  display: block;
  font-size: 1.8rem;
  opacity: 0.35;
  margin-bottom: 0.6rem;
}
.dash-empty p {
  margin: 0 0 1rem;
}
.dash-table-wrap {
  overflow-x: auto;
}
.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.dash-table th,
.dash-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(15, 27, 45, 0.06);
  vertical-align: middle;
  color: var(--dash-ink);
}
.dash-table th {
  color: #7a8a9a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #f7fafc;
}
.dash-table tbody tr:last-child td {
  border-bottom: 0;
}
.dash-table .text-end {
  text-align: right;
}
.dash-table b {
  color: var(--dash-ink);
}
.dash-muted {
  color: var(--dash-muted);
}
.dash-type-ico {
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  margin-right: 0.45rem;
  border-radius: 0.55rem;
  background: var(--dash-accent-soft);
  border: 1px solid rgba(10, 138, 160, 0.2);
  color: var(--dash-accent);
  vertical-align: middle;
}
.dash-badge {
  display: inline-block;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--dash-accent-soft);
  color: var(--dash-accent);
  border: 1px solid rgba(10, 138, 160, 0.28);
}
.dash-badge.active,
.dash-badge.completed,
.dash-badge.paid {
  background: rgba(15, 159, 110, 0.1);
  color: var(--dash-ok);
  border-color: rgba(15, 159, 110, 0.28);
}
.dash-badge.pending,
.dash-badge.processing {
  background: rgba(184, 134, 11, 0.1);
  color: var(--dash-warn);
  border-color: rgba(184, 134, 11, 0.28);
}
.dash-badge.suspended,
.dash-badge.cancelled,
.dash-badge.refunded,
.dash-badge.expired {
  background: rgba(214, 59, 85, 0.1);
  color: var(--dash-bad);
  border-color: rgba(214, 59, 85, 0.28);
}
.dash-badge.free {
  background: var(--dash-accent-soft);
  color: var(--dash-accent);
  border-color: rgba(10, 138, 160, 0.28);
}
.dash-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.dash-tool {
  display: block;
  padding: 1.25rem 1.15rem;
  border-radius: 1.1rem;
  border: 1px solid var(--dash-line);
  background: var(--dash-surface);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(15, 27, 45, 0.04);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.dash-tool:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 138, 160, 0.35);
}
.dash-tool__ico {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  background: var(--dash-accent-soft);
  border: 1px solid rgba(10, 138, 160, 0.22);
  color: var(--dash-accent);
}
.dash-tool h2 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--dash-ink);
}
.dash-tool p {
  margin: 0 0 0.8rem;
  color: var(--dash-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.dash-tool__go {
  color: var(--dash-accent);
  font-size: 0.85rem;
  font-weight: 600;
}
.dash-health {
  font-weight: 700;
}
.dash-health.is-good {
  color: var(--dash-ok);
}
.dash-health.is-mid {
  color: var(--dash-warn);
}
.dash-health.is-bad {
  color: var(--dash-bad);
}
.dash-health.is-na {
  color: #9aa8b5;
}
.dash-mini-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--dash-line);
  color: var(--dash-ink);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  background: #fff;
}
.dash-mini-btn:hover {
  border-color: var(--dash-accent);
  color: var(--dash-accent);
}

.dash-profile-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  margin-bottom: 1rem;
  border-radius: 1.1rem;
  border: 1px solid var(--dash-line);
  background: var(--dash-surface);
  box-shadow: 0 8px 24px rgba(15, 27, 45, 0.04);
}
.dash-profile-card__avatar {
  width: 3.4rem;
  height: 3.4rem;
  font-size: 1rem;
}
.dash-profile-card b {
  display: block;
  font-size: 1.1rem;
  color: var(--dash-ink);
}
.dash-profile-card p {
  margin: 0.25rem 0 0;
  color: var(--dash-muted);
}
.dash-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.dash-field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}
.dash-field span {
  font-size: 0.8rem;
  color: var(--dash-muted);
}
.dash-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.85rem;
  border-radius: 0.7rem;
  border: 1px solid var(--dash-line);
  background: #fff;
  color: var(--dash-ink);
  font: inherit;
}
.dash-field input:focus {
  outline: none;
  border-color: rgba(10, 138, 160, 0.45);
  box-shadow: 0 0 0 3px rgba(10, 138, 160, 0.12);
}
.dash-field-note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
}
.dash-field-note.is-ok {
  color: var(--dash-ok);
}
.dash-field-note.is-err {
  color: var(--dash-bad);
}
.dash-usage {
  display: grid;
  gap: 0.85rem;
}
.dash-usage > div span {
  display: block;
  font-size: 0.82rem;
  color: var(--dash-muted);
  margin-bottom: 0.35rem;
}
.dash-usage > div i {
  display: block;
  height: 0.4rem;
  border-radius: 999px;
  background: #e6edf3;
  position: relative;
  overflow: hidden;
}
.dash-usage > div i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 0%);
  background: linear-gradient(90deg, #0a8aa0, #3263b9);
  border-radius: inherit;
}

/* Dashboard buttons (light) */
body.dash-app .btn--solid {
  background: linear-gradient(135deg, #0a8aa0, #3263b9);
  color: #fff;
  border: 0;
}
body.dash-app .btn--ghost {
  background: #fff;
  color: var(--dash-ink);
  border: 1px solid var(--dash-line);
}
body.dash-app .btn--ghost:hover {
  border-color: rgba(10, 138, 160, 0.4);
  color: var(--dash-accent);
}

@media (max-width: 980px) {
  .dash-shell {
    grid-template-columns: 1fr;
  }
  .dash-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(300px, 88vw);
    transform: translateX(-105%);
    transition: transform 0.25s ease;
  }
  .dash-shell.is-open .dash-sidebar {
    transform: translateX(0);
  }
  .dash-shell.is-open .dash-shell__backdrop {
    display: block;
  }
  .dash-sidebar__close,
  .dash-topbar__menu {
    display: inline-grid;
    place-items: center;
  }
  .dash-stats,
  .dash-tools,
  .dash-quick,
  .dash-grid-2,
  .dash-stats--3,
  .dash-products {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .dash-main {
    padding: 1rem 0.9rem 2rem;
  }
  .dash-topbar__actions .dash-topbar__link:first-child {
    display: none;
  }
}

/* ========== Store / shop catalog ========== */
.store-hero {
  padding: 4.5rem 0 2.25rem;
  background:
    radial-gradient(
      ellipse 70% 60% at 15% 0%,
      rgba(4, 228, 255, 0.12),
      transparent 55%
    ),
    linear-gradient(180deg, #071018 0%, #0a1520 100%);
  color: #fff;
}
.store-hero--product {
  padding-bottom: 1.5rem;
}
.store-hero .eyebrow {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.store-hero .eyebrow a {
  color: var(--cyan, #04e4ff);
  text-decoration: none;
}
.store-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
}
.store-hero .lede {
  margin: 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.55;
}
.store-catalog,
.store-detail {
  padding: 2rem 0 4rem;
}
.store-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.store-filters__types,
.store-filters__currency {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.store-chip {
  display: inline-flex;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #1a2430;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}
.store-chip.is-active {
  background: #0b1b28;
  color: #fff;
  border-color: #0b1b28;
}
.store-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.store-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f4f7fa;
  color: #1a2430;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}
.store-cat.is-active {
  border-color: rgba(4, 228, 255, 0.5);
  background: rgba(4, 228, 255, 0.1);
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.store-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.25rem 1.2rem 1.3rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: inherit;
  text-decoration: none;
  min-height: 100%;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.store-card:hover {
  transform: translateY(-3px);
  border-color: rgba(4, 228, 255, 0.45);
  box-shadow: 0 12px 30px rgba(7, 20, 32, 0.08);
}
.store-card__top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}
.store-card__type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5a6b7a;
}
.store-card__feat {
  font-size: 0.7rem;
  font-weight: 700;
  color: #0a8aa0;
}
.store-card h2 {
  margin: 0;
  font-size: 1.15rem;
}
.store-card p {
  margin: 0;
  color: #5a6b7a;
  font-size: 0.92rem;
  line-height: 1.45;
  flex: 1;
}
.store-card__price {
  margin-top: 0.6rem;
}
.store-card__price b {
  font-size: 1.25rem;
}
.store-card__price small {
  color: #7a8a98;
  margin-left: 0.25rem;
}
.store-card__go {
  color: #0a8aa0;
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 0.35rem;
}
.store-empty {
  padding: 2rem;
  border-radius: 1rem;
  background: #f4f7fa;
  color: #5a6b7a;
}
.store-detail__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.store-detail__copy {
  color: #3a4a58;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.store-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.store-features li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: #1a2430;
}
.store-features i {
  color: #0a8aa0;
  margin-top: 0.15rem;
}
.store-buy {
  position: sticky;
  top: 1rem;
  padding: 1.35rem 1.3rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 10px 28px rgba(7, 20, 32, 0.06);
}
.store-buy__badge {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #5a6b7a;
}
.store-buy__prices {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}
.store-buy__price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.store-buy__price-row:last-child {
  border-bottom: 0;
}
.store-buy__cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-bottom: 0.75rem;
}
.store-buy__note {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  color: #5a6b7a;
  line-height: 1.45;
}
.store-buy__back {
  color: #0a8aa0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .store-grid,
  .store-detail__grid {
    grid-template-columns: 1fr;
  }
  .store-buy {
    position: static;
  }
}

/* ========== Tools hub + tool pages ========== */
.page-tools {
  position: relative;
  z-index: 1;
}
.tools-hero .hero__grid {
  align-items: center;
}
.tools-hero__stage {
  position: relative;
  min-height: 16rem;
}
.tools-hero__glow {
  position: absolute;
  inset: 10% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.22), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
}
.tools-hero__panel {
  position: relative;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 11, 31, 0.72);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.tools-hero__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.tools-hero__chrome > span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #ff5f57;
}
.tools-hero__chrome > span:nth-child(2) {
  background: #febc2e;
}
.tools-hero__chrome > span:nth-child(3) {
  background: #28c840;
}
.tools-hero__chrome em {
  margin-left: 0.45rem;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--dim);
}
.tools-hero__list {
  list-style: none;
  margin: 0;
  padding: 0.65rem;
  display: grid;
  gap: 0.4rem;
}
.tools-hero__list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}
.tools-hero__list li.is-active {
  border-color: rgba(4, 228, 255, 0.3);
  background: rgba(4, 228, 255, 0.08);
}
.tools-hero__list i {
  color: var(--cyan);
}
.tools-hero__list b {
  color: #fff;
  font-weight: 600;
}
.tools-hero__list span {
  color: var(--dim);
  font-size: 0.75rem;
}

.tools-group {
  margin-bottom: 2.75rem;
}
.tools-group__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.tools-group__head .h2 {
  margin: 0;
  font-size: 1.35rem;
}
.tools-group__ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.1);
  border: 1px solid rgba(4, 228, 255, 0.25);
  color: var(--cyan);
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.tools-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.85rem;
  padding: 1.15rem 1.1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.tools-card:hover {
  border-color: rgba(4, 228, 255, 0.35);
  background: rgba(4, 228, 255, 0.06);
  transform: translateY(-2px);
  color: inherit;
}
.tools-card--featured {
  border-color: rgba(4, 228, 255, 0.28);
  background: linear-gradient(
    160deg,
    rgba(4, 228, 255, 0.1),
    rgba(255, 255, 255, 0.02)
  );
}
.tools-card--local {
  box-shadow: inset 0 0 0 1px rgba(4, 228, 255, 0.12);
}
.tools-card__ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
  font-size: 1.15rem;
}
.tools-card__body b {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.tools-card__body b em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: rgba(4, 228, 255, 0.15);
  color: var(--cyan);
  border: 1px solid rgba(4, 228, 255, 0.3);
}
.tools-card__body > span {
  display: block;
  color: var(--dim);
  font-size: 0.88rem;
  line-height: 1.45;
}
.tools-card__go {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 600;
}

.tools-why {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.tools-why__item {
  padding: 1.2rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.tools-why__item i {
  color: var(--cyan);
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
  display: inline-block;
}
.tools-why__item b {
  display: block;
  color: #fff;
  margin-bottom: 0.35rem;
}
.tools-why__item p {
  margin: 0;
  color: var(--dim);
  font-size: 0.9rem;
  line-height: 1.45;
}

.tools-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.5rem 1.4rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(4, 228, 255, 0.22);
  background: linear-gradient(
    120deg,
    rgba(4, 228, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );
}
.tools-cta .h2 {
  margin: 0.25rem 0 0.4rem;
}
.tools-cta p {
  margin: 0;
  color: var(--dim);
  max-width: 40rem;
}

.wc-stat-preview {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1rem;
}
.wc-stat-preview__item {
  padding: 1.1rem 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 11, 31, 0.75);
  text-align: center;
}
.wc-stat-preview__item b {
  display: block;
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}
.wc-stat-preview__item span {
  color: var(--dim);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.tool-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 1.1rem;
  align-items: start;
}
.tool-shell__main,
.tool-shell__aside {
  padding: 1.25rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.tool-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
}
.tool-label i {
  color: var(--cyan);
}
.tool-textarea {
  width: 100%;
  min-height: 16rem;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font: inherit;
  font-size: 0.98rem;
  line-height: 1.55;
  resize: vertical;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.tool-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.tool-textarea:focus {
  border-color: rgba(4, 228, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(4, 228, 255, 0.12);
}
.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.9rem;
}
.tool-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.tool-stat {
  padding: 0.9rem 0.75rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  text-align: center;
}
.tool-stat--wide {
  grid-column: 1 / -1;
}
.tool-stat b {
  display: block;
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.tool-stat span {
  display: block;
  margin-top: 0.3rem;
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tool-hint {
  margin: 0.95rem 0 0;
  color: var(--dim);
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.tool-hint i {
  color: var(--cyan);
}

@media (max-width: 1100px) {
  .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tools-why {
    grid-template-columns: 1fr;
  }
  .tool-shell {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .tools-hero__stage {
    display: none;
  }
  .tools-grid {
    grid-template-columns: 1fr;
  }
  .tools-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .tool-shell__main,
  .tool-shell__aside {
    padding: 1.05rem;
  }
}

/* ========== Tools chrome (dedicated header/footer) ========== */
.body-tools {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.tools-main {
  flex: 1;
  position: relative;
  z-index: 1;
}
.body-tools .hero {
  padding-top: 5.5rem;
  padding-bottom: 3.5rem;
}
.tools-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 31, 0.82);
  backdrop-filter: blur(16px);
}
.tools-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  padding-block: 0.65rem;
}
.tools-bar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.tools-bar__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.tools-bar__logo img {
  height: 1.7rem;
  width: auto;
  max-width: min(38vw, 10.5rem);
  display: block;
}
.tools-bar__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(4, 228, 255, 0.3);
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tools-bar__badge:hover {
  color: #fff;
  border-color: rgba(4, 228, 255, 0.5);
}
.tools-bar__nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.tools-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.35rem 0.55rem;
  border-radius: 0.55rem;
}
.tools-bar__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.tools-bar__link em {
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.12rem 0.35rem;
  border-radius: 999px;
  background: rgba(4, 228, 255, 0.16);
  color: var(--cyan);
  margin-left: 0.15rem;
}
.tools-bar__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(4, 228, 255, 0.35);
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
}
.tools-bar__cta:hover {
  background: rgba(4, 228, 255, 0.1);
  color: #fff;
}
.tools-bar__account {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(4, 228, 255, 0.35);
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.tools-bar__account img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tools-bar__account:hover {
  border-color: var(--cyan);
  color: #fff;
}

.tools-foot {
  position: relative;
  z-index: 2;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem 0 1.5rem;
  background: rgba(7, 11, 31, 0.45);
}
.tools-foot__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.tools-foot__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 500;
}
.tools-foot__tag {
  margin: 0.3rem 0 0;
  color: var(--dim);
  font-size: 0.8rem;
}
.tools-foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  justify-content: flex-end;
}
.tools-foot__nav a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.84rem;
}
.tools-foot__nav a:hover {
  color: var(--cyan);
}

@media (max-width: 900px) {
  .tools-bar__link--site span,
  .tools-bar__link span:not(:only-child) {
    /* keep icons readable */
  }
  .tools-bar__link[href*="site-audit"] {
    display: none;
  }
}
@media (max-width: 720px) {
  .body-tools .hero {
    padding-top: 4.25rem;
    padding-bottom: 2.5rem;
  }
  .tools-bar__inner {
    min-height: 3.5rem;
    padding-block: 0.5rem;
  }
  .tools-bar__logo img {
    height: 1.45rem;
  }
  .tools-bar__badge span {
    display: none;
  }
  .tools-bar__badge {
    padding: 0.35rem 0.5rem;
  }
  .tools-bar__link span {
    display: none;
  }
  .tools-bar__link {
    width: 2.2rem;
    height: 2.2rem;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
  }
  .tools-bar__cta {
    padding: 0.38rem 0.7rem;
    font-size: 0.8rem;
  }
  .tools-foot__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .tools-foot__nav {
    justify-content: center;
  }
}

/* ============================================================
   Legal / support pages — privacy, refund, terms, accessibility,
   FAQs, locations, unsubscribe.
   ============================================================ */

.legal-hero__inner {
  max-width: 62rem;
}
.legal-hero .lead {
  max-width: 46rem;
}
.legal-hero__updated {
  margin: 1.1rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--dim);
  font-size: 0.82rem;
}
.legal-hero__updated strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
.legal-hero__updated i {
  color: var(--cyan);
}

.legal-layout {
  display: grid;
  grid-template-columns: 17rem minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
.legal-aside {
  position: sticky;
  top: 5.5rem;
  display: grid;
  gap: 1rem;
}
.legal-toc {
  padding: 1.15rem 1.1rem;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.legal-toc__list {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.15rem;
  counter-reset: none;
}
.legal-toc__list a {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  padding: 0.4rem 0.55rem;
  border-radius: 0.6rem;
  color: var(--dim);
  text-decoration: none;
  font-size: 0.87rem;
  line-height: 1.45;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.legal-toc__list a:hover {
  background: rgba(4, 228, 255, 0.08);
  color: #fff;
}
.legal-toc__list em {
  font-style: normal;
  font-variant-numeric: tabular-nums;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 1rem;
}
.legal-aside__card {
  padding: 1.15rem 1.1rem;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: linear-gradient(
    160deg,
    rgba(4, 228, 255, 0.07),
    rgba(255, 78, 203, 0.06)
  );
}
.legal-aside__card p {
  margin: 0.5rem 0 0.9rem;
  color: var(--text);
  font-size: 0.9rem;
}

.legal-body {
  max-width: 50rem;
}
.legal-body .legal-intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}
.legal-body .legal-callout {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 0 0 2rem;
  padding: 0.9rem 1.1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(4, 228, 255, 0.28);
  background: rgba(4, 228, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
}
.legal-body .legal-callout i {
  color: var(--cyan);
  margin-top: 0.2rem;
}
.legal-body .legal-note {
  margin: 0 0 1.15rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--pink);
  border-radius: 0 0.6rem 0.6rem 0;
  background: rgba(255, 78, 203, 0.07);
  color: rgba(255, 255, 255, 0.9);
}

.legal-section {
  padding-top: 0.5rem;
  scroll-margin-top: 8rem;
}
.legal-section + .legal-section {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.legal-body .legal-section h2 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.4rem;
  margin: 0 0 0.9rem;
}
.legal-section__num {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  flex-shrink: 0;
  border-radius: 0.6rem;
  border: 1px solid rgba(4, 228, 255, 0.3);
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
}

.legal-defs {
  margin: 0 0 1.1rem;
  display: grid;
  gap: 0.7rem;
}
.legal-def {
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.legal-def dt {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.97rem;
  margin-bottom: 0.25rem;
}
.legal-def dd {
  margin: 0;
  color: var(--text);
}

.legal-contact-card {
  padding: 1.2rem 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: linear-gradient(
    160deg,
    rgba(4, 228, 255, 0.07),
    rgba(255, 78, 203, 0.05)
  );
}
.legal-contact-card p {
  margin: 0 0 0.3rem;
}
.legal-contact-card p:last-child {
  margin-bottom: 0;
}
.legal-body .legal-updated {
  margin: 2.2rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .legal-aside {
    position: static;
  }
  .legal-body {
    max-width: none;
  }
}

/* ---------- FAQs ---------- */

.faq-list {
  display: grid;
  gap: 0.7rem;
  max-width: 56rem;
  margin-inline: auto;
}
.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.faq-item.is-open {
  border-color: rgba(4, 228, 255, 0.35);
  background: rgba(4, 228, 255, 0.05);
}
.faq-item__h {
  margin: 0;
  font-size: 1rem;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 1.2rem;
  background: none;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
.faq-cat {
  flex-shrink: 0;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--dim);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.faq-item.is-open .faq-cat {
  border-color: rgba(4, 228, 255, 0.4);
  color: var(--cyan);
}
.faq-q__text {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.faq-q__ico {
  flex-shrink: 0;
  color: var(--cyan);
  transition: transform 0.3s var(--ease);
}
.faq-item.is-open .faq-q__ico {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 1.2rem 1.15rem;
}
.faq-a p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
  max-width: 48rem;
}
.faq-a a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.faq-a a:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .faq-q {
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    padding: 0.95rem 1rem;
  }
  .faq-q__text {
    flex-basis: 100%;
    order: 3;
  }
  .faq-q__ico {
    margin-left: auto;
  }
  .faq-a {
    padding: 0 1rem 1rem;
  }
}

/* ---------- Locations ---------- */

.loc-offices {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.loc-office {
  position: relative;
  padding: 1.5rem 1.5rem 1.4rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.loc-office--head {
  background: linear-gradient(
    160deg,
    rgba(4, 228, 255, 0.09),
    rgba(255, 78, 203, 0.05)
  );
  border-color: rgba(4, 228, 255, 0.25);
}
.loc-office--head h2 {
  margin: 0.35rem 0 0.6rem;
  font-size: 1.35rem;
}
.loc-office__flag {
  font-size: 1.6rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.loc-office__addr {
  margin: 0 0 0.85rem;
  color: var(--text);
  line-height: 1.7;
}
.loc-office__tel {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}
.loc-office__tel:hover {
  color: #fff;
}
.loc-office__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}
.loc-support {
  display: grid;
  gap: 0.9rem;
}
.loc-office--sm {
  padding: 1.15rem 1.2rem;
}
.loc-office--sm h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}
.loc-office--sm .loc-office__flag {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}
.loc-office__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}
.loc-office__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--dim);
  text-decoration: none;
  font-size: 0.86rem;
}
.loc-office__links a:hover {
  color: var(--cyan);
}

.loc-cities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 0.85rem;
}
.loc-city {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.loc-city:hover {
  transform: translateY(-3px);
  border-color: rgba(4, 228, 255, 0.4);
  background: rgba(4, 228, 255, 0.06);
}
.loc-city__ico {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  border: 1px solid rgba(4, 228, 255, 0.28);
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
}
.loc-city__body {
  display: grid;
  min-width: 0;
}
.loc-city__body b {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
}
.loc-city__body small {
  color: var(--dim);
  font-size: 0.78rem;
}
.loc-city__go {
  margin-left: auto;
  color: var(--dim);
  transition:
    transform 0.25s var(--ease),
    color 0.25s var(--ease);
}
.loc-city:hover .loc-city__go {
  color: var(--cyan);
  transform: translate(2px, -2px);
}

@media (max-width: 860px) {
  .loc-offices {
    grid-template-columns: 1fr;
  }
}

/* ---------- Unsubscribe ---------- */

.unsub-card {
  max-width: 34rem;
  margin-inline: auto;
  padding: 2rem 1.75rem;
  border-radius: 1.3rem;
  border: 1px solid var(--line);
  background: linear-gradient(
    160deg,
    rgba(4, 228, 255, 0.07),
    rgba(255, 78, 203, 0.05)
  );
  text-align: center;
}
.unsub-card__ico {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(4, 228, 255, 0.3);
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
  font-size: 1.25rem;
}
.unsub-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}
.unsub-card__note {
  margin: 0 0 1.4rem;
  color: var(--text);
  font-size: 0.92rem;
}
.unsub-form {
  display: grid;
  gap: 0.9rem;
  text-align: left;
}
.unsub-form .btn {
  justify-content: center;
}
.unsub-msg {
  margin: 1rem 0 0;
  padding: 0.7rem 0.9rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
}
.unsub-msg.is-ok {
  border: 1px solid rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.1);
  color: #a7f3d0;
}
.unsub-msg.is-err {
  border: 1px solid rgba(255, 78, 203, 0.35);
  background: rgba(255, 78, 203, 0.09);
  color: #ffc4ec;
}
.unsub-card__privacy {
  margin: 1.4rem 0 0;
  color: var(--dim);
  font-size: 0.82rem;
}
.unsub-card__privacy a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}
.unsub-card__privacy a:hover {
  color: #fff;
}

/* ============================================================
   City landing pages — /web-design-{city}
   ============================================================ */

.page-location .loc-hero__inner {
  max-width: 62rem;
}
.page-location .loc-hero .lead {
  max-width: 48rem;
}
.loc-hero__sub {
  margin: 0.9rem 0 0;
  max-width: 46rem;
  color: var(--dim);
  font-size: 0.96rem;
  line-height: 1.7;
}
.page-location .loc-hero .hero__ctas {
  margin-top: 1.6rem;
}

.loc-areas {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1.6rem 0 0;
  padding: 0.55rem 0.95rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(4, 228, 255, 0.25);
  background: rgba(4, 228, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.6;
}
.loc-areas i {
  color: var(--cyan);
  margin-top: 0.15rem;
}

/* prose blocks */
.page-location .loc-prose {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.1rem;
}
.loc-block {
  padding: 1.5rem 1.5rem 1.35rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.loc-block:hover {
  border-color: rgba(4, 228, 255, 0.32);
  background: rgba(4, 228, 255, 0.045);
}
.page-location .loc-block h2 {
  margin: 0 0 0.6rem;
  font-size: 1.28rem;
}
.loc-block__sub {
  margin: -0.2rem 0 0.7rem;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 600;
}
.page-location .loc-block p:last-child {
  margin-bottom: 0;
}

/* recent work cards */
.loc-work {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 0.85rem;
}
.loc-work__card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.loc-work__card:hover {
  transform: translateY(-3px);
  border-color: rgba(4, 228, 255, 0.4);
  background: rgba(4, 228, 255, 0.06);
}
.loc-work__ico {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  border: 1px solid rgba(4, 228, 255, 0.28);
  background: rgba(4, 228, 255, 0.1);
  color: var(--cyan);
}
.loc-work__body {
  display: grid;
  min-width: 0;
}
.loc-work__body b {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
}
.loc-work__body small {
  color: var(--dim);
  font-size: 0.78rem;
}
.loc-work__go {
  margin-left: auto;
  color: var(--dim);
  transition:
    transform 0.25s var(--ease),
    color 0.25s var(--ease);
}
.loc-work__card:hover .loc-work__go {
  color: var(--cyan);
  transform: translate(2px, -2px);
}

/* UK contact card */
.loc-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: center;
  padding: 1.9rem 1.9rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(4, 228, 255, 0.25);
  background: linear-gradient(
    160deg,
    rgba(4, 228, 255, 0.09),
    rgba(255, 78, 203, 0.05)
  );
}
.loc-contact h2 {
  margin: 0.4rem 0 0.6rem;
  font-size: 1.4rem;
}
.loc-contact__place {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.35rem;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 600;
}
.loc-contact__addr {
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}
.loc-contact__text {
  margin: 0;
  max-width: 38rem;
  color: var(--text);
  line-height: 1.75;
}
.loc-contact__side {
  display: grid;
  gap: 0.7rem;
}
.loc-contact__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 0.8rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
}
.loc-contact__tel i {
  color: var(--cyan);
}
.loc-contact__tel:hover {
  border-color: rgba(4, 228, 255, 0.4);
  color: var(--cyan);
}
.loc-contact__map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--dim);
  text-decoration: none;
  font-size: 0.85rem;
}
.loc-contact__map:hover {
  color: var(--cyan);
}

.loc-cities__all {
  margin: 1.4rem 0 0;
  text-align: center;
}
.loc-cities__all a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.loc-cities__all a:hover {
  color: #fff;
}

@media (max-width: 860px) {
  .loc-contact {
    grid-template-columns: 1fr;
    padding: 1.6rem 1.35rem;
  }
}

/* ============================================================
   CAREERS + JOB APPLY
   ============================================================ */
.careers-hero .hero__grid {
  align-items: center;
}
.careers-hero__sub {
  color: var(--dim);
  max-width: 560px;
  margin: 0.35rem 0 0;
  font-size: 0.98rem;
}
.careers-hero__stage {
  position: relative;
}
.careers-hero__glow {
  position: absolute;
  inset: 10% 8%;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(4, 228, 255, 0.22),
    transparent 70%
  );
  filter: blur(28px);
  pointer-events: none;
}
.careers-hero__panel {
  position: relative;
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 1.2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(4, 228, 255, 0.22);
  background: linear-gradient(
    165deg,
    rgba(8, 18, 40, 0.92),
    rgba(12, 24, 48, 0.78)
  );
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.careers-hero__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.15rem;
}
.careers-hero__panel-head b {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
}
.careers-hero__panel-head em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}
.careers-hero__panel-head em.is-live {
  color: #7dffb3;
  border-color: rgba(125, 255, 179, 0.35);
  background: rgba(125, 255, 179, 0.08);
}
.careers-hero__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.75rem 0.8rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.careers-hero__row > i {
  color: var(--cyan);
  font-size: 1.05rem;
  margin-top: 0.1rem;
}
.careers-hero__row b {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.35;
}
.careers-hero__row span {
  display: block;
  margin-top: 0.15rem;
  color: var(--dim);
  font-size: 0.8rem;
}

.careers-perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.careers-perk {
  padding: 1.35rem 1.25rem;
  border-radius: 1.15rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.careers-perk__ico {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(4, 228, 255, 0.12);
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.careers-perk h2 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}
.careers-perk p {
  margin: 0;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.55;
}

.careers-jobs {
  display: grid;
  gap: 0.9rem;
}
.careers-job {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.25rem;
  border-radius: 1.15rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.careers-job:hover {
  border-color: rgba(4, 228, 255, 0.35);
  background: rgba(4, 228, 255, 0.05);
  transform: translateY(-2px);
}
.careers-job__ico {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(4, 228, 255, 0.14);
  color: var(--cyan);
  font-size: 1.15rem;
}
.careers-job__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  color: var(--dim);
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
}
.careers-job h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  color: #fff;
}
.careers-job p {
  margin: 0;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.5;
}
.careers-job__go {
  color: var(--dim);
  font-size: 1.1rem;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.careers-job:hover .careers-job__go {
  color: var(--cyan);
  transform: translate(2px, -2px);
}

.careers-empty,
.careers-cta {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.careers-cta p {
  max-width: 560px;
  margin: 0.75rem auto 1.4rem;
  color: var(--dim);
}
.careers-empty a {
  color: var(--cyan);
}

.job-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.6rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.job-panel .h2 {
  margin: 0.35rem 0 0.75rem;
}
.job-panel p {
  margin: 0;
  color: var(--dim);
  line-height: 1.65;
}

.job-apply {
  max-width: 820px;
  margin: 0 auto;
  padding: 1.5rem 1.4rem 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.job-form__section {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
}
.job-form__section legend {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.85rem;
}
.job-form__section legend em {
  font-style: normal;
  font-weight: 500;
  color: var(--dim);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .careers-perks {
    grid-template-columns: 1fr;
  }
  .careers-hero__stage {
    display: none;
  }
}
@media (max-width: 640px) {
  .careers-job {
    grid-template-columns: auto 1fr;
  }
  .careers-job__go {
    display: none;
  }
  .job-apply {
    padding: 1.25rem 1rem 1.4rem;
  }
}

/* ============================================================
   WEB DESIGN REVIEWS
   ============================================================ */
.reviews-hero .hero__grid {
  align-items: center;
}
.reviews-hero__sub {
  color: var(--dim);
  max-width: 560px;
  margin: 0.35rem 0 0;
  font-size: 0.98rem;
}
.reviews-hero__stage {
  position: relative;
}
.reviews-hero__glow {
  position: absolute;
  inset: 8% 10%;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(255, 198, 54, 0.22),
    transparent 70%
  );
  filter: blur(28px);
  pointer-events: none;
}
.reviews-hero__panel {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.5rem 1.35rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 198, 54, 0.28);
  background: linear-gradient(
    165deg,
    rgba(8, 18, 40, 0.92),
    rgba(12, 24, 48, 0.78)
  );
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.reviews-hero__score {
  text-align: center;
}
.reviews-hero__score b {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: #fff;
}
.reviews-hero__stars {
  color: #ffc636;
  letter-spacing: 2px;
  margin: 0.45rem 0 0.35rem;
}
.reviews-hero__score span {
  color: var(--dim);
  font-size: 0.85rem;
}
.reviews-hero__panel > p {
  margin: 0;
  text-align: center;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.5;
}
.reviews-hero__google {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
}
.reviews-hero__google:hover {
  border-color: rgba(4, 228, 255, 0.4);
  color: var(--cyan);
}
.reviews-hero__google > i:first-child {
  color: var(--cyan);
}

.reviews-page__grid {
  margin-top: 0.5rem;
}
.reviews-page__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .reviews-hero__stage {
    display: none;
  }
}

/* Country location hubs (UK / Pakistan) */
.page-uk .uk-map,
.page-uk .loc-hub-map,
.page-pk .loc-hub-map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 18rem;
}
.page-uk .uk-map img,
.page-uk .loc-hub-map img,
.page-pk .loc-hub-map img {
  width: min(100%, 28rem);
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(4, 228, 255, 0.18));
}
.chips--center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  overflow: visible;
  margin-top: 0;
}
@media (min-width: 901px) {
  .process--six {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Digital Marketing hub hero canvas */
.dm-canvas {
  position: relative;
  min-height: 20rem;
  display: grid;
  place-items: center;
}
.dm-canvas__glow {
  position: absolute;
  inset: 18% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.28), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}
.dm-canvas__panel {
  position: relative;
  width: min(100%, 22rem);
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: rgba(8, 16, 32, 0.72);
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}
.dm-canvas__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
}
.dm-canvas__chrome > span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.dm-canvas__chrome > span:nth-child(1) {
  background: #ff5f57;
}
.dm-canvas__chrome > span:nth-child(2) {
  background: #febc2e;
}
.dm-canvas__chrome > span:nth-child(3) {
  background: #28c840;
}
.dm-canvas__chrome em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dim);
}
.dm-canvas__stage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  padding: 1rem;
}
.dm-canvas__kpi {
  height: 3.2rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(4, 228, 255, 0.2);
  background: rgba(4, 228, 255, 0.06);
  padding: 0.55rem;
  display: grid;
  gap: 0.35rem;
  align-content: center;
}
.dm-canvas__kpi b,
.dm-canvas__kpi i {
  display: block;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.dm-canvas__kpi i {
  width: 55%;
  background: rgba(4, 228, 255, 0.45);
}
.dm-canvas__chart {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 6.5rem;
  padding: 0.6rem 0.4rem 0.2rem;
  border-radius: 0.8rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.dm-canvas__chart span {
  flex: 1;
  height: var(--h);
  border-radius: 0.35rem 0.35rem 0.15rem 0.15rem;
  background: linear-gradient(180deg, #04e4ff, #009cff);
  opacity: 0.85;
  animation: dmBar 2.4s ease-in-out infinite alternate;
}
.dm-canvas__chart span:nth-child(2) {
  animation-delay: 0.15s;
}
.dm-canvas__chart span:nth-child(3) {
  animation-delay: 0.3s;
}
.dm-canvas__chart span:nth-child(4) {
  animation-delay: 0.45s;
}
.dm-canvas__chart span:nth-child(5) {
  animation-delay: 0.6s;
}
.dm-canvas__chart span:nth-child(6) {
  animation-delay: 0.75s;
}
@keyframes dmBar {
  from {
    transform: scaleY(0.86);
  }
  to {
    transform: scaleY(1);
  }
}
.dm-canvas__float {
  position: absolute;
  z-index: 2;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(4, 228, 255, 0.35);
  background: rgba(8, 16, 32, 0.85);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
}
.dm-canvas__float--seo {
  top: 12%;
  right: 6%;
  animation: dmFloat 3.2s ease-in-out infinite;
}
.dm-canvas__float--ads {
  bottom: 14%;
  left: 4%;
  color: var(--cyan);
  animation: dmFloat 3.6s ease-in-out infinite reverse;
}
@keyframes dmFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@media (max-width: 900px) {
  .dm-canvas {
    min-height: 16rem;
    margin-top: 1rem;
  }
}

/* HTML sitemap */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.sitemap-block {
  padding: 1.35rem 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.sitemap-block--wide {
  grid-column: 1 / -1;
}
.sitemap-block__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.85rem;
  color: #fff;
}
.sitemap-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.sitemap-block__list--cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
}
.sitemap-block__list a {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.35;
  transition: color 0.2s var(--ease);
}
.sitemap-block__list a i {
  margin-top: 0.15rem;
  color: var(--cyan);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.sitemap-block__list a:hover {
  color: #fff;
}
@media (max-width: 980px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
  .sitemap-block__list--cols {
    grid-template-columns: 1fr;
  }
}

/* Branding hub hero canvas */
.br-canvas {
  position: relative;
  min-height: 20rem;
  display: grid;
  place-items: center;
}
.br-canvas__glow {
  position: absolute;
  inset: 16% 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 228, 255, 0.26), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}
.br-canvas__mark {
  position: relative;
  width: min(100%, 18rem);
  padding: 1.6rem 1.4rem 1.35rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: rgba(8, 16, 32, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.br-canvas__letter {
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 1.25rem;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: #041018;
  background: linear-gradient(135deg, #04e4ff, #009cff);
  box-shadow: 0 12px 30px rgba(4, 228, 255, 0.28);
}
.br-canvas__swatches {
  display: flex;
  gap: 0.45rem;
}
.br-canvas__swatches i {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.4rem;
  background: var(--c);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.br-canvas__type {
  width: 100%;
  display: grid;
  gap: 0.45rem;
}
.br-canvas__type b,
.br-canvas__type span {
  display: block;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}
.br-canvas__type b {
  width: 62%;
  height: 0.7rem;
  background: rgba(4, 228, 255, 0.45);
}
.br-canvas__type span:nth-child(2) {
  width: 88%;
}
.br-canvas__type span:nth-child(3) {
  width: 74%;
}
.br-canvas__float {
  position: absolute;
  z-index: 2;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(4, 228, 255, 0.35);
  background: rgba(8, 16, 32, 0.85);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.br-canvas__float--logo {
  top: 12%;
  right: 8%;
  animation: brFloat 3.2s ease-in-out infinite;
}
.br-canvas__float--id {
  bottom: 14%;
  left: 6%;
  color: var(--cyan);
  animation: brFloat 3.6s ease-in-out infinite reverse;
}
@keyframes brFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@media (max-width: 900px) {
  .br-canvas {
    min-height: 16rem;
    margin-top: 1rem;
  }
}

/* ============================================================
   THEME TOGGLE + LIGHT MODE OVERRIDES (website pages only)
   ============================================================ */
.theme-toggle {
  display: none; /* temporarily hidden — re-enable when light mode is ready */
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--glass);
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(4, 228, 255, 0.45);
  color: var(--cyan);
}
.theme-toggle i {
  font-size: 1.05rem;
  line-height: 1;
}
.theme-toggle .theme-toggle__sun {
  display: none;
}
html[data-theme="light"] .theme-toggle .theme-toggle__moon {
  display: none;
}
html[data-theme="light"] .theme-toggle .theme-toggle__sun {
  display: inline-block;
}
.theme-toggle--drawer {
  width: 2.6rem;
  height: 2.6rem;
}

html[data-theme="light"] .orb-3 {
  opacity: 0.12;
}
html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[data-theme="light"] .h2,
html[data-theme="light"] .h3 {
  color: var(--heading);
}
html[data-theme="light"] .footer__divider img {
  filter: var(--logo-filter);
}
html[data-theme="light"] .process__step,
html[data-theme="light"] .faq__item,
html[data-theme="light"] .review-card,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .cwd-cap,
html[data-theme="light"] .svc-card,
html[data-theme="light"] .price-card,
html[data-theme="light"] .loc-city,
html[data-theme="light"] .loc-work__card,
html[data-theme="light"] .sitemap-block,
html[data-theme="light"] .trust__card,
html[data-theme="light"] .stats__card,
html[data-theme="light"] .offer,
html[data-theme="light"] .chip {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--card-shadow);
  color: var(--ink);
}
html[data-theme="light"] .btn--solid {
  color: #ffffff;
}
html[data-theme="light"] .btn--solid:hover {
  color: #ffffff;
}
html[data-theme="light"] .gradient-text {
  background: linear-gradient(
    90deg,
    #084a8a,
    #0b5cab,
    #ad1457,
    #1565c0,
    #084a8a
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
html[data-theme="light"] .offer h3 {
  color: var(--heading);
}
html[data-theme="light"] .offer__go {
  color: var(--cyan);
}
html[data-theme="light"] .theme-toggle:hover {
  border-color: var(--cyan-ring);
}
html[data-theme="light"] .process__n {
  color: rgba(11, 18, 32, 0.08);
}
html[data-theme="light"] .process__step h3,
html[data-theme="light"] .cwd-cap h3,
html[data-theme="light"] .svc-card__title,
html[data-theme="light"] .review-card__by b,
html[data-theme="light"] .contact-card__body h3,
html[data-theme="light"] .loc-city__body b,
html[data-theme="light"] .loc-work__body b,
html[data-theme="light"] .sitemap-block__title,
html[data-theme="light"] .faq__q,
html[data-theme="light"] .faq-q__text {
  color: var(--heading);
}
html[data-theme="light"] .process__step p,
html[data-theme="light"] .cwd-cap p,
html[data-theme="light"] .svc-card__text,
html[data-theme="light"] .review-card__text,
html[data-theme="light"] .contact-card__msg,
html[data-theme="light"] .contact-card__addr,
html[data-theme="light"] .faq__a,
html[data-theme="light"] .faq-a,
html[data-theme="light"] .section-head__sub,
html[data-theme="light"] .svc-hero__sub,
html[data-theme="light"] .lead,
html[data-theme="light"] .hero .lead,
html[data-theme="light"] .page-gd .gd-hero .lead,
html[data-theme="light"] .page-cw .cw-hero .lead,
html[data-theme="light"] .page-im .im-hero .lead,
html[data-theme="light"] .page-dn .dn-hero .lead,
html[data-theme="light"] .page-wh .wh-hero .lead,
html[data-theme="light"] .page-cwd .cwd-hero .lead,
html[data-theme="light"] .page-api .api-hero .lead,
html[data-theme="light"] .page-mob .mob-hero .lead,
html[data-theme="light"] .page-pos .pos-hero .lead,
html[data-theme="light"] .page-shy .shy-hero .lead,
html[data-theme="light"] .page-wp .wp-hero .lead,
html[data-theme="light"] .blog-detail-hero .lead,
html[data-theme="light"] .legal-hero .lead,
html[data-theme="light"] .page-location .loc-hero .lead {
  color: var(--text);
}
html[data-theme="light"] .page-gd .gd-hero .svc-hero__sub,
html[data-theme="light"] .page-cw .cw-hero .svc-hero__sub,
html[data-theme="light"] .page-im .im-hero .svc-hero__sub,
html[data-theme="light"] .page-dn .dn-hero .svc-hero__sub,
html[data-theme="light"] .page-wh .wh-hero .svc-hero__sub,
html[data-theme="light"] .page-cwd .svc-hero__sub,
html[data-theme="light"] .page-api .svc-hero__sub,
html[data-theme="light"] .page-mob .svc-hero__sub,
html[data-theme="light"] .page-pos .svc-hero__sub,
html[data-theme="light"] .page-shy .svc-hero__sub,
html[data-theme="light"] .page-wp .svc-hero__sub {
  color: var(--cyan);
}
html[data-theme="light"] .mega__label,
html[data-theme="light"] .mega a,
html[data-theme="light"] .drawer__cat .txt b,
html[data-theme="light"] .drawer__simple a,
html[data-theme="light"] .drawer__sub ul a,
html[data-theme="light"] .nav-login-btn,
html[data-theme="light"] .nav-avatar-name,
html[data-theme="light"] .nav-user-menu-name,
html[data-theme="light"] .burger span {
  color: var(--ink);
}
html[data-theme="light"] .burger span {
  background: var(--ink);
}
html[data-theme="light"] .nav-login-btn,
html[data-theme="light"] .nav-avatar-btn,
html[data-theme="light"] .nav-user-menu {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}
html[data-theme="light"] .nav-user-menu {
  box-shadow: var(--card-shadow);
}
html[data-theme="light"] .nav-user-menu-item,
html[data-theme="light"] .nav-user-menu-email {
  color: var(--text);
}
html[data-theme="light"] .nav-user-menu-item:hover {
  color: var(--cyan);
  background: var(--cyan-soft);
}
html[data-theme="light"] .drawer__cat,
html[data-theme="light"] .drawer__viewall,
html[data-theme="light"] .drawer__simple a {
  background: var(--surface-strong);
  border-color: var(--line);
}
html[data-theme="light"] .marquee {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.55);
}
html[data-theme="light"] .showcase__card,
html[data-theme="light"] .dm-canvas__panel,
html[data-theme="light"] .br-canvas__mark,
html[data-theme="light"] .cwd-canvas__panel {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--card-shadow);
}
html[data-theme="light"] .showcase__badge,
html[data-theme="light"] .dm-canvas__float,
html[data-theme="light"] .br-canvas__float,
html[data-theme="light"] .cwd-canvas__float {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--card-shadow);
}
html[data-theme="light"] .stats__num,
html[data-theme="light"] .showcase__badge .stats__num {
  background: linear-gradient(180deg, #0b5cab, #084a8a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
html[data-theme="light"] .mega a:hover,
html[data-theme="light"] .mega__head:hover,
html[data-theme="light"] .nav__links > li > a:hover,
html[data-theme="light"] .nav__links > li > a.active,
html[data-theme="light"] .eyebrow,
html[data-theme="light"] .offer__go,
html[data-theme="light"] .offer__ico {
  color: var(--cyan);
}
html[data-theme="light"] .blog-prose,
html[data-theme="light"] .loc-prose,
html[data-theme="light"] .cwd-editorial__item {
  color: var(--text);
}
html[data-theme="light"] .logos .logo-tile {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--card-shadow);
}
html[data-theme="light"] .logos .logo-tile img {
  filter: brightness(0);
  opacity: 0.72;
}
html[data-theme="light"] .logos .logo-tile:hover img {
  opacity: 1;
}
html[data-theme="light"] .fab--top {
  background: #ffffff;
  border-color: var(--line);
  color: var(--cyan);
  box-shadow: 0 10px 28px rgba(15, 35, 70, 0.14);
}
html[data-theme="light"] .svc {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--card-shadow);
  color: var(--ink);
}
html[data-theme="light"] .svc__name {
  color: var(--ink);
}
html[data-theme="light"] .svc__arrow {
  color: var(--dim);
}
html[data-theme="light"] .nav__tag {
  color: #ffffff;
}
html[data-theme="light"] .footer__socials a {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--card-shadow);
}
html[data-theme="light"] .footer__news-box {
  background: #ffffff;
  border-color: var(--line);
  box-shadow: var(--card-shadow);
}
html[data-theme="light"] .footer__news-box input {
  color: var(--ink);
  caret-color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}
html[data-theme="light"] .footer__news-box input:-webkit-autofill,
html[data-theme="light"] .footer__news-box input:-webkit-autofill:hover,
html[data-theme="light"] .footer__news-box input:-webkit-autofill:focus,
html[data-theme="light"] .footer__news-box input:-webkit-autofill:active {
  -webkit-text-fill-color: #0b1220;
  caret-color: #0b1220;
  box-shadow: inset 0 0 0 1000px #ffffff;
}
html[data-theme="light"] .footer__news-box button {
  color: #ffffff;
}
html[data-theme="light"] .footer__news-note a {
  color: var(--cyan);
}
html[data-theme="light"] .footer__copy .brand {
  color: var(--ink);
}
html[data-theme="light"] .footer__copy .reg {
  color: var(--dim);
}
