:root {
  --bg: #e9eef6;
  --surface: rgba(255, 255, 255, 0.58);
  --surface-soft: rgba(255, 255, 255, 0.42);
  --text: #0f172a;
  --muted: #4b5567;
  --border: rgba(255, 255, 255, 0.5);
  --shadow: 0 30px 55px -30px rgba(15, 23, 42, 0.45);
  --radius-xl: 1.25rem;
  --radius-lg: 0.9rem;
  --spacing: 1rem;
  --accent: #0f766e;
  --accent-soft: #d7f2ef;
  --purple-a: #522778;
  --purple-b: #942e87;
  --grad-accent: linear-gradient(120deg, var(--purple-a), var(--purple-b));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1050px 620px at 8% -14%, rgba(148, 46, 135, 0.2), transparent 58%),
    radial-gradient(960px 580px at 92% 18%, rgba(15, 118, 110, 0.16), transparent 50%),
    linear-gradient(180deg, #eff3fb 0%, #e8eef7 42%, #ecf1f8 100%),
    var(--bg);
  font-family: "Manrope", sans-serif;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 120;
  transform: translateY(-220%);
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 10px 28px -18px rgba(15, 23, 42, 0.85);
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid rgba(147, 51, 234, 0.32);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(56px);
}

body::before {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 14vh;
  background: rgba(82, 39, 120, 0.16);
}

body::after {
  width: 320px;
  height: 320px;
  right: -120px;
  top: 36vh;
  background: rgba(15, 118, 110, 0.14);
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-font {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

main {
  min-height: 60vh;
}

.texture::before {
  content: none;
}

.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.site-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(248, 251, 255, 0.58);
  backdrop-filter: blur(18px) saturate(1.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 36px -28px rgba(15, 23, 42, 0.7);
}

body[data-page="home"] .site-header-wrap,
body.header-overlay .site-header-wrap {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.42), rgba(2, 6, 23, 0.08));
  backdrop-filter: blur(10px) saturate(1.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

body[data-page="home"] .site-header-wrap .topbar,
body.header-overlay .site-header-wrap .topbar {
  border-bottom-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(120deg, rgba(2, 6, 23, 0.56), rgba(15, 23, 42, 0.44));
}

body[data-page="home"] .site-header-wrap .nav-link,
body.header-overlay .site-header-wrap .nav-link {
  color: rgba(248, 250, 252, 0.95);
  text-shadow: 0 1px 10px rgba(15, 23, 42, 0.4);
}

body[data-page="home"] .site-header-wrap .nav-link::after,
body.header-overlay .site-header-wrap .nav-link::after {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(192, 132, 252, 0.95));
}

body[data-page="home"] .site-header-wrap .icon-btn,
body.header-overlay .site-header-wrap .icon-btn {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 10px 22px -16px rgba(2, 6, 23, 0.68);
}

body[data-page="home"] .site-header-wrap .btn-primary,
body.header-overlay .site-header-wrap .btn-primary {
  background: linear-gradient(140deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 12px 24px -16px rgba(82, 39, 120, 0.74);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

body[data-page="home"] .site-header-wrap .btn-primary:hover,
body.header-overlay .site-header-wrap .btn-primary:hover {
  background: linear-gradient(140deg, rgba(92, 45, 132, 0.96), rgba(164, 52, 148, 0.94));
}

body[data-page="home"] .site-header-wrap #menu-toggle,
body.header-overlay .site-header-wrap #menu-toggle {
  border-color: rgba(255, 255, 255, 0.45);
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.12);
}

body[data-page="home"] .site-header-wrap #mobile-nav,
body.header-overlay .site-header-wrap #mobile-nav {
  border-top-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.84), rgba(2, 6, 23, 0.74));
}

body[data-page="home"] .site-header-wrap #mobile-nav a,
body.header-overlay .site-header-wrap #mobile-nav a {
  color: rgba(248, 250, 252, 0.94);
}

.site-header-wrap #menu-toggle {
  display: none;
  min-width: 42px;
  min-height: 42px;
  border-radius: 0.8rem;
  align-items: center;
  justify-content: center;
}

.site-header-wrap #menu-toggle i {
  font-size: 1rem;
}

.desktop-menu,
.desktop-menu-root {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-menu-root,
.desktop-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-menu-item {
  position: relative;
}

.desktop-parent-btn {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-weight: 600;
}

.desktop-parent-btn i {
  font-size: 0.72rem;
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.desktop-menu-item.is-open > .desktop-parent-btn i,
.desktop-menu-item:hover > .desktop-parent-btn i {
  transform: rotate(180deg);
}

.desktop-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(9, 14, 33, 0.9), rgba(11, 17, 37, 0.84)),
    radial-gradient(260px 130px at 18% 10%, rgba(148, 46, 135, 0.16), transparent 70%);
  backdrop-filter: blur(14px) saturate(1.28);
  box-shadow: 0 20px 34px -24px rgba(2, 6, 23, 0.92);
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 70;
}

.desktop-menu-item:hover > .desktop-submenu,
.desktop-menu-item:focus-within > .desktop-submenu,
.desktop-menu-item.is-open > .desktop-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-submenu .desktop-menu-item {
  width: 100%;
}

.desktop-submenu-link,
.desktop-submenu .desktop-parent-btn {
  display: inline-flex;
  align-items: center;
  width: 100%;
  color: rgba(241, 245, 249, 0.96);
  text-decoration: none;
  padding: 0.6rem 0.72rem;
  border-radius: 0.6rem;
  justify-content: space-between;
}

.desktop-submenu-link:hover,
.desktop-submenu .desktop-parent-btn:hover {
  background: rgba(148, 46, 135, 0.24);
}

.desktop-submenu .desktop-submenu {
  top: -0.2rem;
  left: calc(100% + 8px);
}

.desktop-submenu .desktop-menu-item.submenu-open-left > .desktop-submenu {
  left: auto;
  right: calc(100% + 8px);
}

.desktop-menu-root > .desktop-menu-item.submenu-align-right > .desktop-submenu {
  left: auto;
  right: 0;
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.74), rgba(30, 41, 59, 0.7));
  backdrop-filter: blur(10px) saturate(1.2);
}

body.header-condensed .site-header-wrap .topbar {
  display: none !important;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(241, 245, 249, 0.92);
  font-size: 0.8rem;
  font-weight: 600;
}

.topbar-link i {
  font-size: 0.86rem;
  color: #cbd5e1;
}

.topbar-link--location {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(140deg, rgba(82, 39, 120, 0.7), rgba(148, 46, 135, 0.62));
  padding: 0.26rem 0.66rem;
}

.topbar-link--location i {
  color: #ffffff;
}

.icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(244, 248, 255, 0.62));
  backdrop-filter: blur(8px) saturate(1.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  color: #0f172a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 20px -14px rgba(15, 23, 42, 0.45);
}

.icon-btn:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 12px 24px -14px rgba(15, 23, 42, 0.55);
}

.icon-btn--topbar {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f8fafc;
}

.icon-btn--topbar:hover {
  background: rgba(255, 255, 255, 0.16);
}

.icon-btn--location-mobile {
  background: linear-gradient(140deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.9));
  border-color: rgba(255, 255, 255, 0.48);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 10px 24px -18px rgba(82, 39, 120, 0.92);
}

.icon-btn--location-mobile:hover {
  filter: brightness(1.06);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-pill {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(241, 245, 249, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.26rem 0.48rem 0.26rem 0.3rem;
  min-height: 32px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px) saturate(1.2);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.lang-pill img {
  width: 19px;
  height: 19px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 10px -8px rgba(2, 6, 23, 0.9);
}

.lang-pill:hover {
  transform: translateY(-1px);
  background: rgba(148, 46, 135, 0.22);
}

.lang-pill.is-active {
  background: linear-gradient(140deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.9));
  border-color: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 10px 18px -14px rgba(82, 39, 120, 0.9);
}

.mobile-language-wrap {
  margin-top: 0.45rem;
  padding-top: 0.42rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.lang-switch--mobile {
  width: 100%;
  gap: 0.5rem;
}

.lang-switch--mobile .lang-pill {
  flex: 1;
  justify-content: center;
  min-height: 40px;
  font-size: 0.8rem;
}

.nav-link {
  position: relative;
  font-weight: 600;
  color: #0f172a;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.search-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(148, 46, 135, 0.18), transparent 62%),
    radial-gradient(880px 520px at 88% 84%, rgba(82, 39, 120, 0.18), transparent 58%),
    rgba(2, 6, 23, 0.74);
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  backdrop-filter: blur(6px) saturate(1.06);
  overscroll-behavior: contain;
}

.search-panel {
  width: min(700px, 96vw);
  border-radius: 1.35rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
    linear-gradient(160deg, rgba(30, 41, 59, 0.3), rgba(148, 46, 135, 0.2));
  backdrop-filter: blur(22px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 28px 56px -28px rgba(15, 23, 42, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18);
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  position: relative;
  overflow: hidden;
}

.search-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(420px 180px at 10% -10%, rgba(255, 255, 255, 0.34), transparent 70%),
    radial-gradient(300px 160px at 92% 112%, rgba(255, 255, 255, 0.18), transparent 74%);
}

#search-title {
  color: #e2e8f0;
}

.search-panel #header-search-form {
  margin-top: 1rem;
  gap: 0.75rem;
}

.search-panel #header-search-input {
  border-radius: 1rem;
  border: 1px solid rgba(168, 85, 247, 0.55);
  background: rgba(255, 255, 255, 0.14);
  color: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.search-panel #header-search-input::placeholder {
  color: rgba(226, 232, 240, 0.75);
}

.search-panel #header-search-input:focus-visible {
  border-color: rgba(192, 132, 252, 0.92);
  outline: 3px solid rgba(147, 51, 234, 0.24);
}

.search-panel #header-search-form .btn-primary {
  border-radius: 1rem;
  min-height: 48px;
  background: linear-gradient(140deg, rgba(82, 39, 120, 0.96), rgba(148, 46, 135, 0.94));
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 12px 26px -16px rgba(82, 39, 120, 0.78);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.search-panel #close-search {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.16);
  color: #f8fafc;
}

.appointment-overlay {
  background:
    radial-gradient(900px 520px at 15% 20%, rgba(82, 39, 120, 0.2), transparent 64%),
    radial-gradient(820px 460px at 86% 82%, rgba(148, 46, 135, 0.22), transparent 58%),
    rgba(2, 6, 23, 0.78);
  overscroll-behavior: contain;
}

.appointment-panel {
  width: min(560px, 96vw);
  border-radius: 1.35rem;
  background:
    linear-gradient(135deg, rgba(148, 46, 135, 0.3), rgba(82, 39, 120, 0.28)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 30px 56px -28px rgba(15, 23, 42, 0.88),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(20px) saturate(1.22);
  padding: clamp(1.1rem, 2.6vw, 1.5rem);
  position: relative;
  overflow: hidden;
}

.appointment-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(360px 180px at 8% -8%, rgba(255, 255, 255, 0.26), transparent 70%),
    radial-gradient(300px 160px at 100% 110%, rgba(255, 255, 255, 0.18), transparent 76%);
}

.appointment-panel > * {
  position: relative;
  z-index: 1;
}

.card-premium {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(246, 249, 255, 0.5));
  backdrop-filter: blur(14px) saturate(1.28);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
  opacity: 0.8;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  backdrop-filter: blur(10px) saturate(1.2);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(140deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 12px 26px -14px rgba(82, 39, 120, 0.9);
}

.btn-secondary {
  color: #0b4f49;
  background: linear-gradient(180deg, rgba(220, 246, 241, 0.94), rgba(198, 239, 233, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-1px) scale(1.01);
}

.tag {
  background: rgba(255, 255, 255, 0.56);
  color: #1f2937;
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.24rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.focus-ring:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(82, 39, 120, 0.28);
  outline-offset: 2px;
}

.hero-frame {
  border-radius: 1.4rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 40px -28px rgba(15, 23, 42, 0.62);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(148, 46, 135, 0.14), rgba(15, 118, 110, 0.16));
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

body[data-page="about"] .about-shell {
  --about-ink: #16202c;
  --about-muted: #4f6072;
  --about-accent: #0f766e;
  --about-accent-soft: rgba(15, 118, 110, 0.18);
  --about-gold: #9a6a2a;
  --about-shell-bg: linear-gradient(165deg, rgba(255, 253, 249, 0.9), rgba(243, 249, 251, 0.8));
  margin-top: 1.1rem;
}

.about-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(780px 380px at 0% -8%, rgba(154, 106, 42, 0.16), transparent 68%),
    radial-gradient(700px 360px at 108% 108%, rgba(15, 118, 110, 0.14), transparent 70%),
    var(--about-shell-bg);
  box-shadow:
    0 40px 70px -42px rgba(9, 20, 33, 0.88),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px) saturate(1.16);
  padding: clamp(1.3rem, 3.2vw, 2.4rem);
}

.about-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.018) 0 1px, transparent 1px 24px);
}

.about-hero-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.about-tag {
  background: rgba(15, 118, 110, 0.11);
  color: #0f5b56;
  border-color: rgba(15, 118, 110, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.about-title {
  margin: 0;
  font-size: clamp(2.05rem, 4.2vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 15ch;
  color: var(--about-ink);
}

.about-lead {
  margin: 0;
  max-width: 58ch;
  font-size: clamp(1.02rem, 1.9vw, 1.15rem);
  line-height: 1.74;
  color: var(--about-muted);
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
}

.about-hero-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(203, 213, 225, 0.78);
}

.about-metrics {
  display: grid;
  gap: 0.72rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-metric-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 252, 0.78));
  padding: 0.92rem;
  box-shadow: 0 18px 30px -26px rgba(15, 23, 42, 0.7);
}

.about-metric-value {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 800;
  color: var(--about-ink);
}

.about-metric-label {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #66768a;
}

.about-media-stack {
  position: relative;
  z-index: 1;
  min-height: 560px;
}

.about-frame {
  position: absolute;
  border-color: rgba(255, 255, 255, 0.74);
}

.about-frame-main {
  inset: 0.15rem 0 4.8rem 0.4rem;
  border-radius: 1.6rem;
}

.about-frame-secondary {
  width: min(240px, 52%);
  right: -0.2rem;
  bottom: 0.25rem;
  border-radius: 1.1rem;
  transform: rotate(-4deg);
  box-shadow: 0 24px 38px -28px rgba(15, 23, 42, 0.84);
}

.about-frame img {
  background: linear-gradient(140deg, rgba(237, 243, 246, 0.94), rgba(246, 249, 252, 0.97));
}

.about-floating-chip {
  position: absolute;
  left: 0;
  bottom: 1.24rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: linear-gradient(130deg, rgba(15, 118, 110, 0.92), rgba(13, 90, 85, 0.92));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 44px;
  padding: 0.42rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 20px 30px -24px rgba(15, 118, 110, 0.88);
}

.about-floating-chip i {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
}

.about-split-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.about-story-card,
.about-values-card {
  border-radius: 1.4rem;
  padding: clamp(1rem, 2.4vw, 1.4rem);
}

.about-mini-title {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--about-gold);
}

.about-section-title {
  margin: 0;
  font-size: clamp(1.5rem, 2.7vw, 2.25rem);
  line-height: 1.15;
  max-width: none;
  color: var(--about-ink);
}

.about-section-text {
  margin: 1rem 0 0;
  color: var(--about-muted);
  line-height: 1.76;
}

.about-values-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(520px 250px at 100% -12%, rgba(15, 118, 110, 0.14), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 250, 252, 0.72));
  box-shadow: 0 26px 44px -34px rgba(10, 21, 35, 0.78);
  backdrop-filter: blur(14px);
}

.about-values-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.62rem;
}

.about-values-list li {
  display: flex;
  align-items: center;
  gap: 0.56rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.66);
  padding: 0.68rem 0.75rem;
  color: #314255;
  font-weight: 600;
}

.about-values-list i {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.95), rgba(13, 90, 85, 0.92));
  color: #fff;
  font-size: 0.74rem;
  box-shadow: 0 10px 18px -12px rgba(15, 118, 110, 0.86);
}

.about-workflow-head {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 0.95rem;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0.7rem;
  bottom: 0.7rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(154, 106, 42, 0.45), rgba(15, 118, 110, 0.34));
}

.about-step-card {
  position: relative;
  margin-left: 1.95rem;
  padding: 1.04rem 1rem;
}

.about-step-card::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: -1.45rem;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(154, 106, 42, 0.95), rgba(15, 118, 110, 0.9));
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.12);
}

.about-step-number {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #0f766e;
}

.about-step-card h3 {
  margin: 0.48rem 0 0;
  font-size: 1.1rem;
  color: var(--about-ink);
}

.about-step-card p {
  margin: 0.6rem 0 0;
  color: var(--about-muted);
  line-height: 1.66;
  font-size: 0.95rem;
}

.about-gallery-shell {
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background:
    radial-gradient(560px 260px at -6% -14%, rgba(154, 106, 42, 0.12), transparent 72%),
    radial-gradient(540px 240px at 104% 120%, rgba(15, 118, 110, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(246, 250, 253, 0.7));
  box-shadow: 0 34px 56px -40px rgba(10, 21, 34, 0.82);
  backdrop-filter: blur(13px);
  padding: clamp(1rem, 2.4vw, 1.35rem);
}

.about-gallery-head {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-gallery-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1.25fr 1fr 1fr;
}

.about-gallery-item {
  min-height: 220px;
}

.about-gallery-item--lg {
  min-height: 280px;
}

.about-gallery-item img {
  background: linear-gradient(140deg, rgba(236, 242, 247, 0.92), rgba(247, 250, 252, 0.97));
}

@media (max-width: 1024px) {
  .about-hero-grid,
  .about-split-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-media {
    order: 1;
  }

  .about-media-stack {
    min-height: 460px;
  }

  .about-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-gallery-item--lg {
    grid-column: 1 / -1;
  }

  .about-title {
    max-width: 24ch;
  }
}

@media (max-width: 767px) {
  .about-shell {
    padding-top: 0.2rem;
  }

  .about-hero-card {
    border-radius: 1.2rem;
  }

  .about-media-stack {
    min-height: 360px;
  }

  .about-frame-main {
    inset: 0 0 2.6rem 0;
  }

  .about-frame-secondary {
    width: 160px;
    right: -0.1rem;
    bottom: 0;
  }

  .about-floating-chip {
    left: 0.4rem;
    bottom: 0.6rem;
  }

  .about-hero-actions {
    flex-direction: column;
  }

  .about-hero-actions .btn-primary,
  .about-hero-actions .btn-ghost {
    width: 100%;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .about-timeline::before {
    left: 0.9rem;
  }

  .about-step-card {
    margin-left: 1.5rem;
  }

  .about-step-card::before {
    left: -1.1rem;
  }

  .about-gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery-item--lg {
    min-height: 220px;
  }
}

.hero-bg-shell {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 68vh;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: var(--shadow);
  background: #111827;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-media .hero-media-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.52s ease;
}

.hero-bg-media .hero-media-item.is-visible {
  opacity: 1;
}

.hero-bg-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100%;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-bg-media .hero-media-item.is-portrait-video iframe {
  width: 100vw;
  height: 177.78vw;
  min-width: 56.25vh;
  min-height: 100%;
  transform: translate(-50%, -50%);
}

.hero-bg-media .hero-bg-image,
.hero-bg-media .subpage-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-bg-dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(3, 7, 18, 0.72) 0%, rgba(3, 7, 18, 0.44) 44%, rgba(3, 7, 18, 0.32) 100%),
    linear-gradient(180deg, rgba(82, 39, 120, 0.26), transparent 58%);
}

.hero-bg-content {
  position: relative;
  z-index: 2;
}

.hero-bg-shell--full {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  min-height: 74vh;
}

body[data-page="home"] .hero-bg-shell--full {
  min-height: 88vh;
}

.hero-home-grid {
  display: grid;
  gap: 1.2rem;
  align-items: end;
}

.hero-call-panel {
  position: relative;
  margin-top: 1rem;
  border-radius: 1.45rem;
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(148, 46, 135, 0.3), rgba(82, 39, 120, 0.28)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px) saturate(1.15);
  box-shadow: 0 24px 42px -30px rgba(3, 7, 18, 0.78);
  max-width: 30rem;
}

.hero-call-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.02));
}

.hero-call-input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 248, 255, 0.66));
  color: #0f172a;
  padding: 0.85rem 1.05rem;
  backdrop-filter: blur(8px);
}

.hero-call-input::placeholder {
  color: #475569;
}

.hero-call-submit {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: #ffffff;
  background: linear-gradient(140deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 14px 26px -16px rgba(82, 39, 120, 0.84);
  padding: 0.8rem 1rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-call-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.hero-call-divider {
  position: relative;
  text-align: center;
  margin: 0.95rem 0;
}

.hero-call-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-call-divider span {
  position: relative;
  display: inline-block;
  padding: 0 0.65rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(241, 245, 249, 0.95);
  background: rgba(15, 23, 42, 0.22);
  border-radius: 999px;
}

.hero-call-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-call-quick {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.44rem;
  padding: 0.68rem 0.9rem;
  color: #ffffff;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero-call-quick:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.hero-call-quick--whatsapp {
  background: linear-gradient(125deg, rgba(34, 197, 94, 0.92), rgba(15, 118, 110, 0.88));
}

.hero-call-quick--whatsapp i {
  color: #dcfce7;
}

.hero-call-quick--phone {
  background: linear-gradient(125deg, rgba(108, 44, 150, 0.94), rgba(82, 39, 120, 0.9));
}

.consent-stack {
  display: grid;
  gap: 0.38rem;
  margin-top: 0.4rem;
}

.consent-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(241, 245, 249, 0.92);
}

.consent-checkbox {
  margin-top: 0.12rem;
  width: 0.95rem;
  height: 0.95rem;
  accent-color: #942e87;
  flex: 0 0 0.95rem;
}

.consent-checkbox.input-error {
  outline: 2px solid rgba(248, 113, 113, 0.9);
  outline-offset: 2px;
}

.consent-link {
  border: 0;
  background: transparent;
  color: #f5d0fe;
  text-decoration: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.consent-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.consent-error {
  margin: 0 0 0 1.45rem;
  font-size: 0.72rem;
  line-height: 1.2;
}

.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(7px);
  overscroll-behavior: contain;
}

.consent-modal-panel {
  width: min(100%, 700px);
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(51, 26, 76, 0.88)),
    radial-gradient(420px 220px at 14% 10%, rgba(148, 46, 135, 0.24), transparent 72%);
  box-shadow: 0 22px 40px -24px rgba(2, 6, 23, 0.9);
  overflow: hidden;
}

.consent-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.consent-modal-head h2 {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: #ffffff;
}

.consent-modal-body {
  padding: 0.9rem 1rem;
  max-height: min(56vh, 420px);
  overflow: auto;
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.9rem;
  line-height: 1.55;
  display: grid;
  gap: 0.6rem;
}

.consent-modal-actions {
  padding: 0 1rem 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.consent-decline-btn {
  color: rgba(241, 245, 249, 0.95);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.global-cta {
  position: relative;
  z-index: 3;
}

.cta-glass {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(420px 200px at 8% 18%, rgba(148, 46, 135, 0.22), transparent 70%),
    linear-gradient(135deg, rgba(82, 39, 120, 0.82), rgba(30, 41, 59, 0.72));
  backdrop-filter: blur(14px) saturate(1.22);
  box-shadow: 0 28px 44px -30px rgba(2, 6, 23, 0.9);
  padding: 1.15rem;
}

.cta-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02));
}

.cta-header {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

.cta-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.8);
}

.cta-header h3 {
  font-size: clamp(1.2rem, 2vw, 1.48rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.cta-desc {
  margin: 0;
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.92rem;
}

.cta-form {
  display: grid;
  gap: 0.82rem;
}

.cta-main-row {
  display: block;
}

.cta-form-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  align-items: center;
}

.cta-form-controls .hero-call-input {
  min-height: 3.12rem;
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.88), rgba(226, 232, 240, 0.74));
  border-color: rgba(255, 255, 255, 0.66);
}

.cta-submit {
  min-height: 3.12rem;
  white-space: nowrap;
  min-width: 0;
  margin-top: 0.1rem;
}

.cta-divider {
  margin: 0.2rem 0 0.1rem;
}

.cta-quick {
  min-height: 3.05rem;
  padding-inline: 1.1rem;
  min-width: 0;
  color: #ffffff;
}

.cta-actions {
  gap: 0.7rem;
}

.consent-stack--cta {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 0.72rem 0.8rem;
  background: rgba(15, 23, 42, 0.18);
  margin-top: 0.1rem;
}

.consent-stack--cta .consent-check {
  color: rgba(226, 232, 240, 0.96);
}

.consent-stack--cta .consent-error {
  color: rgba(248, 113, 113, 0.95);
}

.seo-rich-section {
  position: relative;
  z-index: 2;
}

.seo-rich-content {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(145deg, rgba(247, 250, 255, 0.9), rgba(238, 246, 255, 0.82)),
    radial-gradient(520px 240px at 8% 6%, rgba(148, 46, 135, 0.04), transparent 74%);
  backdrop-filter: blur(12px) saturate(1.08);
  box-shadow: 0 22px 34px -30px rgba(15, 23, 42, 0.28);
  padding: clamp(1rem, 2.4vw, 1.6rem);
  color: rgba(15, 23, 42, 0.88);
  font-size: clamp(0.94rem, 1.32vw, 1rem);
  line-height: 1.74;
}

.seo-rich-content > :first-child {
  margin-top: 0;
}

.seo-rich-content > :last-child {
  margin-bottom: 0;
}

.seo-rich-content :where(h1, h2, h3, h4, h5, h6) {
  margin: 1.2em 0 0.5em;
  line-height: 1.24;
  letter-spacing: -0.01em;
  font-weight: 700;
  position: relative;
  color: #0f172a;
}

.seo-rich-content :where(h1) {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  color: #13203e;
}

.seo-rich-content :where(h2) {
  font-size: clamp(1.24rem, 2.2vw, 1.72rem);
  background: linear-gradient(120deg, #2a3360 0%, #522778 48%, #8f2d86 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-left: 4px solid rgba(122, 50, 159, 0.34);
  padding-left: 0.62rem;
}

.seo-rich-content :where(h3) {
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  color: #2f3160;
  border-left: 3px solid rgba(82, 39, 120, 0.28);
  padding-left: 0.56rem;
}

.seo-rich-content :where(h4, h5, h6) {
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  color: #43416f;
  font-weight: 650;
}

.seo-rich-content :where(p, ul, ol, blockquote, table, hr, pre) {
  margin: 0.82em 0;
}

.seo-rich-content :where(strong, b) {
  font-weight: 700;
  color: #0b1021;
}

.seo-rich-content :where(em, i) {
  font-style: italic;
}

.seo-rich-content :where(u) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.seo-rich-content :where(a) {
  color: #522778;
  text-decoration: underline;
  text-decoration-color: rgba(82, 39, 120, 0.45);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.seo-rich-content :where(a:hover, a:focus-visible) {
  color: #7a329f;
  text-decoration-color: rgba(122, 50, 159, 0.68);
}

.seo-rich-content :where(ul, ol) {
  padding-left: 1.4rem;
}

.seo-rich-content :where(ul) {
  list-style: disc outside;
}

.seo-rich-content :where(ol) {
  list-style: decimal outside;
}

.seo-rich-content :where(li + li) {
  margin-top: 0.34rem;
}

.seo-rich-content :where(ul li)::marker {
  color: rgba(122, 50, 159, 0.92);
}

.seo-rich-content :where(ol li)::marker {
  color: rgba(69, 85, 120, 0.92);
  font-weight: 600;
}

.seo-rich-content :where(blockquote) {
  border-left: 3px solid rgba(122, 50, 159, 0.35);
  background: rgba(255, 255, 255, 0.36);
  padding: 0.72rem 0.95rem;
  border-radius: 0.78rem;
  color: rgba(15, 23, 42, 0.86);
}

.seo-rich-content :where(img, video, iframe) {
  max-width: 100%;
  height: auto;
  border-radius: 0.9rem;
}

.seo-rich-content :where(table) {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 0.8rem;
  font-size: 0.94em;
}

.seo-rich-content :where(th, td) {
  border: 1px solid rgba(148, 163, 184, 0.38);
  padding: 0.56rem 0.62rem;
  text-align: left;
}

.seo-rich-content :where(th) {
  background: rgba(255, 255, 255, 0.42);
  color: #0b1021;
  font-weight: 700;
}

.seo-rich-content :where(hr) {
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.42);
}

.instagram-showcase-section {
  position: relative;
  z-index: 2;
}

.instagram-showcase-glass {
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background:
    radial-gradient(360px 220px at 12% 16%, rgba(236, 72, 153, 0.22), transparent 72%),
    radial-gradient(300px 220px at 88% 10%, rgba(249, 115, 22, 0.16), transparent 70%),
    linear-gradient(112deg, rgba(113, 52, 161, 0.62) 0%, rgba(105, 61, 147, 0.5) 36%, rgba(88, 100, 140, 0.44) 100%);
  backdrop-filter: blur(14px) saturate(1.28);
  box-shadow: 0 24px 42px -28px rgba(37, 19, 62, 0.64);
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 0.95rem;
}

.instagram-profile-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    radial-gradient(220px 140px at 20% 12%, rgba(236, 72, 153, 0.14), transparent 75%);
  padding: 0.9rem;
  color: rgba(241, 245, 249, 0.94);
  display: grid;
  align-content: center;
  gap: 0.8rem;
  min-height: 100%;
}

.instagram-profile-head {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.instagram-icon-badge {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: linear-gradient(135deg, rgba(245, 96, 64, 0.86), rgba(225, 48, 108, 0.86), rgba(131, 58, 180, 0.86));
  color: #ffffff;
  font-size: 1.03rem;
  box-shadow: 0 10px 20px -14px rgba(225, 48, 108, 0.85);
}

.instagram-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(254, 215, 170, 0.96);
  font-weight: 700;
}

.instagram-handle {
  margin: 0.14rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  color: #ffffff;
  font-weight: 600;
}

.instagram-profile-text {
  margin: 0;
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.52;
  font-size: 0.9rem;
}

.instagram-follow-btn {
  width: 100%;
  justify-content: center;
}

.instagram-feed-area {
  min-width: 0;
}

.instagram-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.72rem;
}

.instagram-feed-head h3 {
  margin: 0;
  font-size: clamp(1rem, 1.65vw, 1.2rem);
  color: rgba(248, 250, 252, 0.98);
  font-weight: 700;
}

.instagram-feed-controls {
  display: inline-flex;
  gap: 0.45rem;
}

.instagram-feed-controls .icon-btn {
  min-width: 2.2rem;
  min-height: 2.2rem;
  border-color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.09));
  color: #ffffff;
}

.instagram-feed-controls .icon-btn:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: linear-gradient(145deg, rgba(236, 72, 153, 0.24), rgba(131, 58, 180, 0.2));
}

.instagram-feed-viewport {
  overflow: hidden;
  border-radius: 0.94rem;
}

.instagram-feed-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (0.7rem * 2)) / 3);
  gap: 0.7rem;
  transition: transform 0.35s ease;
  will-change: transform;
}

.instagram-post-card {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0.95rem;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08)),
    radial-gradient(140px 120px at 15% 15%, rgba(236, 72, 153, 0.16), transparent 72%);
  cursor: pointer;
  aspect-ratio: 4 / 5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 12px 24px -18px rgba(30, 15, 54, 0.48);
  transition: transform 0.22s ease, border-color 0.22s ease, filter 0.22s ease;
}

.instagram-post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instagram-post-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.58);
  filter: brightness(1.04);
}

.instagram-overlay {
  position: fixed;
  inset: 0;
  z-index: 92;
  background: rgba(2, 6, 23, 0.74);
  backdrop-filter: blur(7px);
  display: grid;
  place-items: center;
  padding: 1rem;
  overscroll-behavior: contain;
}

.instagram-modal {
  width: min(100%, 660px);
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(420px 240px at 12% 8%, rgba(236, 72, 153, 0.24), transparent 70%),
    radial-gradient(340px 220px at 88% 12%, rgba(249, 115, 22, 0.16), transparent 70%),
    linear-gradient(145deg, rgba(18, 24, 46, 0.92), rgba(72, 34, 102, 0.84));
  box-shadow: 0 24px 46px -28px rgba(19, 8, 37, 0.88);
  padding: 0.95rem;
  display: grid;
  gap: 0.82rem;
}

.instagram-modal-close {
  justify-self: end;
}

.instagram-modal-media {
  border-radius: 0.95rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.instagram-modal-media img {
  width: 100%;
  height: auto;
  display: block;
}

.instagram-modal-caption {
  margin: 0;
  color: rgba(226, 232, 240, 0.92);
  line-height: 1.5;
}

.instagram-modal-link {
  width: 100%;
  justify-content: center;
}

.youtube-showcase-section {
  position: relative;
  z-index: 2;
}

.youtube-showcase-glass {
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background:
    radial-gradient(420px 220px at 10% 12%, rgba(220, 38, 38, 0.16), transparent 70%),
    linear-gradient(140deg, rgba(15, 23, 42, 0.72), rgba(51, 26, 76, 0.68));
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 24px 40px -28px rgba(2, 6, 23, 0.78);
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 0.95rem;
}

.youtube-profile-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  padding: 0.9rem;
  color: rgba(241, 245, 249, 0.94);
  display: grid;
  align-content: center;
  gap: 0.8rem;
  min-height: 100%;
}

.youtube-profile-head {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.youtube-icon-badge {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(220, 38, 38, 0.24);
  color: #ffffff;
  font-size: 1.03rem;
}

.youtube-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(254, 202, 202, 0.96);
  font-weight: 700;
}

.youtube-handle {
  margin: 0.14rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  color: #ffffff;
  font-weight: 600;
}

.youtube-profile-text {
  margin: 0;
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.52;
  font-size: 0.9rem;
}

.youtube-follow-btn {
  width: 100%;
  justify-content: center;
}

.youtube-feed-area {
  min-width: 0;
}

.youtube-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.72rem;
}

.youtube-feed-head h3 {
  margin: 0;
  font-size: clamp(1rem, 1.65vw, 1.2rem);
  color: #f8fafc;
  font-weight: 700;
}

.youtube-feed-controls {
  display: inline-flex;
  gap: 0.45rem;
}

.youtube-feed-controls .icon-btn {
  min-width: 2.2rem;
  min-height: 2.2rem;
}

.youtube-feed-viewport {
  overflow: hidden;
  border-radius: 0.94rem;
}

.youtube-feed-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (0.7rem * 2)) / 3);
  gap: 0.7rem;
  transition: transform 0.35s ease;
  will-change: transform;
}

.youtube-post-card {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.95rem;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  aspect-ratio: 9 / 16;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, filter 0.22s ease;
}

.youtube-post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.youtube-post-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.48);
  filter: brightness(1.04);
}

.youtube-overlay {
  position: fixed;
  inset: 0;
  z-index: 93;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(7px);
  display: grid;
  place-items: center;
  padding: 1rem;
  overscroll-behavior: contain;
}

.youtube-modal {
  width: min(100%, 520px);
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(51, 26, 76, 0.84)),
    radial-gradient(400px 220px at 10% 8%, rgba(220, 38, 38, 0.24), transparent 70%);
  box-shadow: 0 24px 46px -28px rgba(2, 6, 23, 0.9);
  padding: 0.95rem;
  display: grid;
  gap: 0.82rem;
}

.youtube-modal-close {
  justify-self: end;
}

.youtube-modal-media {
  border-radius: 0.95rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #020617;
  aspect-ratio: 9 / 16;
}

.youtube-modal-media iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-modal-caption {
  margin: 0;
  color: rgba(226, 232, 240, 0.92);
  line-height: 1.5;
}

.youtube-modal-link {
  width: 100%;
  justify-content: center;
}

.tiktok-showcase-section {
  position: relative;
  z-index: 2;
}

.tiktok-showcase-glass {
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background:
    radial-gradient(420px 220px at 10% 12%, rgba(34, 211, 238, 0.16), transparent 70%),
    linear-gradient(140deg, rgba(15, 23, 42, 0.74), rgba(51, 26, 76, 0.68));
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 24px 40px -28px rgba(2, 6, 23, 0.78);
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 0.95rem;
}

.tiktok-profile-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  padding: 0.9rem;
  color: rgba(241, 245, 249, 0.94);
  display: grid;
  align-content: center;
  gap: 0.8rem;
  min-height: 100%;
}

.tiktok-profile-head {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.tiktok-icon-badge {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(34, 211, 238, 0.2);
  color: #ffffff;
  font-size: 1.03rem;
}

.tiktok-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, 0.96);
  font-weight: 700;
}

.tiktok-handle {
  margin: 0.14rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  color: #ffffff;
  font-weight: 600;
}

.tiktok-profile-text {
  margin: 0;
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.52;
  font-size: 0.9rem;
}

.tiktok-follow-btn {
  width: 100%;
  justify-content: center;
}

.tiktok-feed-area {
  min-width: 0;
}

.tiktok-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.72rem;
}

.tiktok-feed-head h3 {
  margin: 0;
  font-size: clamp(1rem, 1.65vw, 1.2rem);
  color: #f8fafc;
  font-weight: 700;
}

.tiktok-feed-controls {
  display: inline-flex;
  gap: 0.45rem;
}

.tiktok-feed-controls .icon-btn {
  min-width: 2.2rem;
  min-height: 2.2rem;
}

.tiktok-feed-viewport {
  overflow: hidden;
  border-radius: 0.94rem;
}

.tiktok-feed-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (0.7rem * 2)) / 3);
  gap: 0.7rem;
  transition: transform 0.35s ease;
  will-change: transform;
}

.tiktok-post-card {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.95rem;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  aspect-ratio: 9 / 16;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, filter 0.22s ease;
}

.tiktok-post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tiktok-post-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.48);
  filter: brightness(1.04);
}

.tiktok-overlay {
  position: fixed;
  inset: 0;
  z-index: 94;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(7px);
  display: grid;
  place-items: center;
  padding: 1rem;
  overscroll-behavior: contain;
}

.tiktok-modal {
  width: min(100%, 520px);
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(51, 26, 76, 0.84)),
    radial-gradient(400px 220px at 10% 8%, rgba(34, 211, 238, 0.2), transparent 70%);
  box-shadow: 0 24px 46px -28px rgba(2, 6, 23, 0.9);
  padding: 0.95rem;
  display: grid;
  gap: 0.82rem;
}

.tiktok-modal-close {
  justify-self: end;
}

.tiktok-modal-media {
  border-radius: 0.95rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #020617;
  aspect-ratio: 9 / 16;
}

.tiktok-modal-media iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.tiktok-modal-caption {
  margin: 0;
  color: rgba(226, 232, 240, 0.92);
  line-height: 1.5;
}

.tiktok-modal-link {
  width: 100%;
  justify-content: center;
}

.social-trio-section {
  position: relative;
  z-index: 2;
}

.social-trio-glass {
  position: relative;
  overflow: hidden;
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.54), rgba(30, 41, 59, 0.5));
  box-shadow: 0 28px 44px -30px rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(14px) saturate(1.22);
  padding: clamp(1rem, 2.4vw, 1.4rem);
}

.social-trio-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://picsum.photos/seed/renew-social-glass/1800/1000");
  background-size: cover;
  background-position: center;
  filter: blur(4px) saturate(1.08);
  transform: scale(1.06);
  opacity: 0.38;
  z-index: 0;
}

.social-trio-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 220px at 8% 18%, rgba(148, 46, 135, 0.28), transparent 70%),
    linear-gradient(135deg, rgba(82, 39, 120, 0.76), rgba(30, 41, 59, 0.7));
  z-index: 0;
}

.social-trio-glass > * {
  position: relative;
  z-index: 1;
}

.social-trio-head {
  margin-bottom: 0.95rem;
}

.social-trio-kicker {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(216, 180, 254, 0.96);
  font-weight: 700;
}

.social-trio-head h2 {
  margin: 0.36rem 0 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: #f8fafc;
  font-weight: 700;
}

.social-trio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.social-trio-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  padding: 0.95rem;
  color: rgba(226, 232, 240, 0.92);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 0.55rem;
  row-gap: 0.45rem;
  align-content: start;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-trio-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #ffffff;
  font-size: 1.05rem;
}

.social-trio-title {
  margin: 0;
  align-self: center;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.social-trio-handle {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(221, 214, 254, 0.95);
  font-weight: 600;
  font-size: 0.88rem;
}

.social-trio-text {
  grid-column: 1 / -1;
  margin: 0;
  line-height: 1.48;
  font-size: 0.9rem;
}

.social-trio-btn {
  grid-column: 1 / -1;
  width: 100%;
  justify-content: center;
  margin-top: 0.2rem;
}

.social-trio-card--instagram .social-trio-icon {
  background: linear-gradient(140deg, rgba(236, 72, 153, 0.4), rgba(124, 58, 237, 0.38));
}

.social-trio-card--youtube .social-trio-icon {
  background: linear-gradient(140deg, rgba(239, 68, 68, 0.42), rgba(190, 24, 93, 0.34));
}

.social-trio-card--tiktok .social-trio-icon {
  background: linear-gradient(140deg, rgba(34, 211, 238, 0.3), rgba(139, 92, 246, 0.35));
}

.about-hub-section {
  position: relative;
  z-index: 2;
}

.about-hub-shell {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: linear-gradient(160deg, #ffffff, #f8fafc);
  box-shadow:
    0 24px 40px -30px rgba(15, 23, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.about-hub-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 220px at 8% 14%, rgba(148, 46, 135, 0.08), transparent 72%),
    radial-gradient(320px 180px at 92% 88%, rgba(79, 70, 229, 0.08), transparent 74%);
  pointer-events: none;
  z-index: 0;
}

.about-hub-col {
  --hub-pad: clamp(1.2rem, 2.35vw, 1.55rem);
  position: relative;
  z-index: 1;
  padding: var(--hub-pad);
  display: grid;
  align-content: start;
  gap: 0.64rem;
  min-width: 0;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.64), rgba(248, 250, 252, 0.4));
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-hub-col--map {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.78), rgba(250, 245, 255, 0.56));
  grid-template-rows: auto auto 1fr;
}

.about-hub-col--about {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.76), rgba(250, 246, 255, 0.52));
  padding-bottom: 0;
}

.about-hub-col + .about-hub-col {
  border-left: 0;
}

.about-hub-col + .about-hub-col::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(180deg, rgba(148, 163, 184, 0), rgba(148, 46, 135, 0.34), rgba(99, 102, 241, 0.34), rgba(148, 163, 184, 0));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.about-hub-kicker {
  position: relative;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7c3a9c;
  padding-bottom: 0.52rem;
}

.about-hub-kicker::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 0.46rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(90, 43, 130, 0.86), rgba(148, 46, 135, 0.2));
}

.about-hub-col:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 16px 24px -24px rgba(51, 26, 76, 0.42);
}

.about-hub-col h3 {
  margin: 0;
  color: #1e293b;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.08rem, 1.6vw, 1.38rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.02rem;
}

.about-hub-text {
  margin: 0;
  color: #475569;
  line-height: 1.58;
  font-size: 0.92rem;
}

.about-hub-link {
  width: fit-content;
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 0.46rem;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(90, 43, 130, 0.2);
  background: linear-gradient(135deg, rgba(90, 43, 130, 0.08), rgba(148, 46, 135, 0.04));
  color: #522778;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.about-hub-link:hover {
  color: #8b3f99;
  border-color: rgba(139, 63, 153, 0.34);
  background: linear-gradient(135deg, rgba(90, 43, 130, 0.12), rgba(148, 46, 135, 0.08));
  transform: translateY(-1px);
}

.about-hub-map {
  border-radius: 1.05rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  overflow: hidden;
  background: #e2e8f0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 12px 22px -18px rgba(30, 41, 59, 0.32);
}

.about-hub-map {
  aspect-ratio: 16 / 10;
  height: 100%;
  min-height: clamp(220px, 24vw, 360px);
}

.about-hub-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.about-hub-about-visual {
  align-self: end;
  width: calc(100% + (var(--hub-pad) * 2));
  margin-left: calc(-1 * var(--hub-pad));
  margin-right: calc(-1 * var(--hub-pad));
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
  border-top: 0;
  box-shadow: none;
  background: transparent;
}

.about-hub-about-visual img {
  width: 100%;
  height: 100%;
  max-height: clamp(180px, 18vw, 270px);
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.about-hub-cta {
  margin-top: 0.48rem;
  width: 100%;
  justify-content: center;
  min-height: 2.36rem;
  padding-inline: 0.92rem;
  font-size: 0.96rem;
  box-shadow: 0 14px 22px -16px rgba(82, 39, 120, 0.64);
}

.about-hub-cta:hover {
  transform: translateY(-1px);
}

.before-after-section {
  position: relative;
  z-index: 2;
}

.before-after-shell {
  border-radius: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background:
    linear-gradient(158deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94)),
    radial-gradient(380px 180px at 10% 12%, rgba(148, 46, 135, 0.08), transparent 72%);
  box-shadow: 0 22px 34px -28px rgba(15, 23, 42, 0.34);
  padding: clamp(1rem, 2.1vw, 1.3rem);
}

.before-after-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.82rem;
}

.before-after-head > div:first-child {
  max-width: 760px;
}

.before-after-kicker {
  margin: 0;
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #7c3a9c;
  font-weight: 700;
}

.before-after-head h2 {
  margin: 0;
  color: #5a2b82;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  font-weight: 700;
}

.before-after-head p {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
}

.before-after-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.before-after-controls .icon-btn {
  width: 2.2rem;
  height: 2.2rem;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(145deg, rgba(90, 43, 130, 0.92), rgba(148, 46, 135, 0.86));
  box-shadow: 0 10px 18px -14px rgba(51, 26, 76, 0.65);
}

.before-after-controls .icon-btn:hover {
  background: linear-gradient(145deg, rgba(105, 49, 149, 0.95), rgba(166, 58, 153, 0.88));
}

.before-after-viewport {
  overflow: hidden;
}

.before-after-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (0.72rem * 2)) / 3);
  gap: 0.72rem;
  transition: transform 0.45s ease;
  will-change: transform;
}

.before-after-card {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.86), rgba(243, 247, 255, 0.72));
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 14px 22px -20px rgba(15, 23, 42, 0.32);
  cursor: pointer;
  display: grid;
  align-content: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.before-after-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 156, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 18px 24px -18px rgba(30, 41, 59, 0.38);
}

.before-after-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-after-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(82, 39, 120, 0.14);
}

.before-after-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(90, 43, 130, 0.95), rgba(148, 46, 135, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 16px -10px rgba(51, 26, 76, 0.65);
}

.before-after-label {
  position: absolute;
  top: 0.6rem;
  padding: 0.24rem 0.54rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(15, 23, 42, 0.45);
  color: #f8fafc;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.before-after-label--before {
  left: 0.6rem;
}

.before-after-label--after {
  right: 0.6rem;
}

.before-after-content {
  padding: 0.72rem 0.78rem 0.8rem;
}

.before-after-content h3 {
  margin: 0;
  color: #5a2b82;
  font-size: 0.98rem;
  font-weight: 700;
}

.before-after-content p {
  margin: 0.34rem 0 0;
  color: #4b5567;
  font-size: 0.86rem;
  line-height: 1.42;
}

.before-after-overlay {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.64);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.before-after-modal {
  width: min(940px, 100%);
  max-height: calc(100dvh - 2rem);
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(155deg, rgba(82, 39, 120, 0.66), rgba(30, 41, 59, 0.58));
  box-shadow: 0 28px 46px -32px rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(16px) saturate(1.16);
  padding: 1rem;
  position: relative;
  overflow-y: auto;
}

.before-after-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
}

.before-after-modal-title {
  margin: 0 2.8rem 0.8rem 0.2rem;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 700;
}

.before-after-modal-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  touch-action: pan-x;
  cursor: grab;
}

.before-after-modal-compare.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.before-after-modal-compare.is-dragging * {
  pointer-events: none;
}

.before-after-modal-compare figure {
  margin: 0;
  border-radius: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(15, 23, 42, 0.34);
  overflow: hidden;
}

.before-after-modal-compare img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.before-after-modal-compare figcaption {
  padding: 0.5rem 0.68rem 0.62rem;
  color: rgba(241, 245, 249, 0.95);
  font-size: 0.82rem;
  font-weight: 700;
}

.services-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.services-highlight-stage {
  position: relative;
}

.services-highlight-card {
  --q-size: clamp(158px, 18.5vw, 276px);
  --q-safe-x: clamp(124px, 13.8vw, 206px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.88), rgba(239, 244, 252, 0.8)),
    radial-gradient(320px 140px at 8% 8%, rgba(148, 46, 135, 0.06), transparent 74%);
  box-shadow: 0 14px 24px -18px rgba(15, 23, 42, 0.3);
  padding: 1rem;
  display: grid;
  gap: 0.46rem;
  align-content: start;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.services-highlight-card:hover {
  transform: translateY(-2px);
  border-color: rgba(148, 46, 135, 0.3);
  box-shadow: 0 18px 28px -18px rgba(82, 39, 120, 0.28);
}

.services-highlight-card h3 {
  margin: 0.08rem 0 0;
  color: #5a2b82;
  font-size: 1.04rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  padding-bottom: 0.42rem;
}

.services-highlight-card h3::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(90, 43, 130, 0.86), rgba(148, 46, 135, 0.2));
}

.services-highlight-card p {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.45;
  position: relative;
  z-index: 2;
}

.services-highlight-list {
  margin: 0.18rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.22rem;
  list-style: none;
  color: #4b5567;
  font-size: 0.84rem;
  line-height: 1.35;
  position: relative;
  z-index: 2;
}

.services-highlight-list li {
  display: grid;
  grid-template-columns: 0.85rem 1fr;
  align-items: start;
  column-gap: 0.42rem;
}

.services-highlight-list li::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.08rem;
  background: url("../assets/rr-icon.svg") center / contain no-repeat;
  opacity: 0.9;
}

.services-highlight-card-cta {
  margin-top: 0.18rem;
  color: #522778;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  position: relative;
  z-index: 2;
}

.services-highlight-quarter {
  position: absolute;
  width: var(--q-size);
  height: var(--q-size);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
  z-index: 1;
}

.services-highlight-quarter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-highlight-quarter--br {
  right: 0;
  bottom: 0;
  border-radius: 100% 0 0 0;
}

.services-highlight-quarter--bl {
  left: 0;
  bottom: 0;
  border-radius: 0 100% 0 0;
}

.services-highlight-quarter--tr {
  right: 0;
  top: 0;
  border-radius: 0 0 0 100%;
}

.services-highlight-quarter--tl {
  left: 0;
  top: 0;
  border-radius: 0 0 100% 0;
}

.services-highlight-card--lt,
.services-highlight-card--lb {
  padding-right: calc(var(--q-safe-x) + 1.25rem);
}

.services-highlight-card--rt,
.services-highlight-card--rb {
  padding-left: calc(var(--q-safe-x) + 1.25rem);
  justify-items: end;
  text-align: right;
}

.services-highlight-card--rt h3::after,
.services-highlight-card--rb h3::after {
  margin-left: auto;
}

.services-highlight-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(96px, 10.6vw, 148px);
  height: clamp(96px, 10.6vw, 148px);
  border-radius: 999px;
  background: linear-gradient(140deg, rgba(82, 39, 120, 0.96), rgba(148, 46, 135, 0.93));
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 20px 30px -18px rgba(82, 39, 120, 0.62);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  cursor: pointer;
  transition: box-shadow 0.34s ease, border-color 0.34s ease;
}

.services-highlight-center::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #ffffff;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.38s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.services-highlight-center-icon {
  position: absolute;
  width: 52%;
  height: 52%;
  object-fit: contain;
  z-index: 1;
  transition: clip-path 0.38s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.services-highlight-center-icon--white {
  filter: brightness(0) invert(1);
  clip-path: circle(75% at 50% 50%);
}

.services-highlight-center-icon--color {
  filter: none;
  clip-path: circle(0% at 50% 50%);
}

.services-highlight-center:hover {
  border-color: rgba(82, 39, 120, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 20px 30px -18px rgba(82, 39, 120, 0.3);
}

.services-highlight-center:hover::before {
  clip-path: circle(75% at 50% 50%);
}

.services-highlight-center:hover .services-highlight-center-icon--white {
  clip-path: circle(0% at 50% 50%);
}

.services-highlight-center:hover .services-highlight-center-icon--color {
  clip-path: circle(75% at 50% 50%);
}

@media (min-width: 1181px) {
  .services-highlight-card {
    --q-size: clamp(188px, 19.6vw, 296px);
    --q-safe-x: clamp(144px, 15.2vw, 232px);
    min-height: 250px;
  }
}

.home-blog-showcase {
  position: relative;
  z-index: 2;
}

.home-blog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.82rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.home-blog-head > div:first-child {
  display: grid;
  gap: 0.14rem;
  max-width: 760px;
}

.home-blog-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.3rem;
  border: 1px solid rgba(203, 213, 225, 0.78);
  background: #ffffff;
  box-shadow:
    0 24px 36px -26px rgba(15, 23, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: clamp(0.9rem, 1.65vw, 1.15rem);
}

.home-blog-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(440px 180px at 9% 0%, rgba(148, 46, 135, 0.08), transparent 72%),
    radial-gradient(460px 190px at 96% 100%, rgba(79, 70, 229, 0.07), transparent 74%);
}

.home-blog-kicker {
  margin: 0;
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #7c3a9c;
  font-weight: 700;
}

.home-blog-head h2 {
  margin: 0;
  color: #5a2b82;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  font-weight: 700;
}

.home-blog-desc {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
}

.home-blog-all {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  border: 1px solid rgba(91, 42, 130, 0.26);
  background: rgba(124, 58, 237, 0.06);
  color: #4c1d95;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.52rem 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  box-shadow: 0 8px 16px -14px rgba(76, 29, 149, 0.42);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.home-blog-all:hover {
  transform: translateY(-1px);
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(91, 42, 130, 0.34);
}

.home-blog-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.76rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-blog-card {
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.96);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 0.95)),
    radial-gradient(300px 180px at 5% 10%, rgba(148, 46, 135, 0.06), transparent 74%);
  box-shadow: 0 12px 20px -18px rgba(15, 23, 42, 0.22);
  overflow: hidden;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: stretch;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.home-blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(148, 46, 135, 0.34);
  box-shadow: 0 18px 28px -22px rgba(82, 39, 120, 0.2);
}

.home-blog-media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 100%;
}

.home-blog-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(148, 46, 135, 0.11), rgba(30, 41, 59, 0.16));
  pointer-events: none;
}

.home-blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.32s ease;
}

.home-blog-card:hover .home-blog-media img {
  transform: scale(1.05);
}

.home-blog-content {
  padding: 0.72rem 0.8rem 0.76rem;
}

.home-blog-date {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #475569;
  font-weight: 600;
}

.home-blog-content h3 {
  margin: 0.3rem 0 0;
  color: #0f172a;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.home-blog-content p {
  margin: 0.34rem 0 0;
  color: #334155;
  line-height: 1.4;
  font-size: 0.82rem;
}

.home-blog-link {
  margin-top: 0.46rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #5b2a82;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.home-blog-link i {
  transition: transform 0.2s ease;
}

.home-blog-card:hover .home-blog-link i {
  transform: translateX(3px);
}

@media (max-width: 1180px) {
  .cta-header {
    gap: 0.35rem;
  }

  .cta-desc {
    max-width: 60ch;
  }

  .cta-main-row {
    grid-template-columns: 1fr;
  }

  .cta-form-controls {
    grid-template-columns: 1fr 1fr;
  }

  .cta-submit {
    width: 100%;
  }

  .cta-actions {
    width: 100%;
  }

  .seo-rich-content {
    padding: 1rem;
  }

  .instagram-showcase-glass {
    grid-template-columns: 1fr;
  }

  .instagram-profile-card {
    align-content: start;
  }

  .instagram-feed-track {
    grid-auto-columns: calc((100% - 0.7rem) / 2);
  }

  .youtube-showcase-glass {
    grid-template-columns: 1fr;
  }

  .youtube-profile-card {
    align-content: start;
  }

  .youtube-feed-track {
    grid-auto-columns: calc((100% - 0.7rem) / 2);
  }

  .tiktok-showcase-glass {
    grid-template-columns: 1fr;
  }

  .tiktok-profile-card {
    align-content: start;
  }

  .tiktok-feed-track {
    grid-auto-columns: calc((100% - 0.7rem) / 2);
  }

  .social-trio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-hub-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hub-col + .about-hub-col {
    border-left: 0;
    border-top: 0;
  }

  .about-hub-col + .about-hub-col::after {
    left: -1px;
    top: 8%;
    bottom: 8%;
    width: 1px;
    height: auto;
    right: auto;
    background: linear-gradient(180deg, rgba(148, 163, 184, 0), rgba(148, 46, 135, 0.34), rgba(99, 102, 241, 0.34), rgba(148, 163, 184, 0));
  }

  .about-hub-col {
    --hub-pad: 0.78rem;
    padding: var(--hub-pad);
    gap: 0.46rem;
  }

  .about-hub-kicker {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    padding-bottom: 0.34rem;
  }

  .about-hub-kicker::after {
    width: 48px;
    height: 2px;
    margin-top: 0.3rem;
  }

  .about-hub-col h3 {
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .about-hub-text {
    font-size: 0.74rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .about-hub-col--about .about-hub-text {
    display: -webkit-box;
  }

  .about-hub-map {
    aspect-ratio: 1 / 1;
  }

  .about-hub-link {
    width: 100%;
    justify-content: center;
    padding: 0.36rem 0.52rem;
    font-size: 0.74rem;
  }

  .about-hub-cta {
    min-height: 2rem;
    font-size: 0.82rem;
    padding-inline: 0.6rem;
  }

  .services-highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .before-after-track {
    grid-auto-columns: calc((100% - 0.72rem) / 2);
  }
}

@media (min-width: 1024px) {
  .hero-home-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 34%);
    gap: 2rem;
  }

  .hero-call-panel {
    margin-top: 0;
    justify-self: end;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-call-panel {
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
    width: min(100%, 30rem);
  }

  .site-header-wrap #menu-toggle {
    display: inline-flex;
  }

  .cta-main-row {
    grid-template-columns: 1fr;
  }

  .cta-form-controls {
    grid-template-columns: 1fr;
  }

  .cta-glass {
    width: 100%;
    border-radius: 1.45rem;
    padding: 1.25rem;
  }

  .cta-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    justify-items: start;
  }

  .cta-header h3 {
    font-size: clamp(1.45rem, 6.4vw, 1.95rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
  }

  .cta-kicker {
    font-size: 0.68rem;
  }

  .cta-desc {
    font-size: clamp(0.95rem, 4vw, 1.05rem);
    color: rgba(241, 245, 249, 0.95);
  }

  .cta-form {
    margin-top: 0.8rem;
    gap: 0.78rem;
  }

  .cta-actions {
    grid-template-columns: 1fr;
  }

  .cta-quick {
    min-width: 0;
    width: 100%;
  }

  .cta-submit,
  .cta-quick {
    width: 100%;
  }

  .instagram-feed-track {
    grid-auto-columns: calc((100% - (0.7rem * 2)) / 3);
  }

  .youtube-feed-track {
    grid-auto-columns: calc((100% - (0.7rem * 2)) / 3);
  }

  .tiktok-feed-track {
    grid-auto-columns: calc((100% - (0.7rem * 2)) / 3);
  }

  .social-trio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .social-trio-head {
    margin-bottom: 0.6rem;
  }

  .social-trio-head h2 {
    font-size: 1rem;
  }

  .social-trio-card {
    grid-template-columns: 1fr;
    padding: 0.55rem 0.5rem 0.6rem;
    gap: 0.35rem;
    justify-items: center;
    text-align: center;
  }

  .social-trio-icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }

  .social-trio-title {
    font-size: 0.78rem;
  }

  .social-trio-handle,
  .social-trio-text {
    display: none;
  }

  .social-trio-btn {
    margin-top: 0;
    min-height: 2rem;
    padding: 0.42rem 0.35rem;
    font-size: 0.72rem;
  }

  .about-hub-section {
    padding-bottom: 2rem;
  }

  .about-hub-col {
    --hub-pad: 0.64rem;
    padding: 0.64rem;
    gap: 0.42rem;
  }

  .about-hub-kicker {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
    padding-bottom: 0.26rem;
  }

  .about-hub-kicker::after {
    width: 36px;
    margin-top: 0.22rem;
  }

  .about-hub-col h3 {
    font-size: 0.78rem;
  }

  .about-hub-text {
    font-size: 0.68rem;
    -webkit-line-clamp: 3;
  }

  .about-hub-map {
    aspect-ratio: 1 / 1;
    min-height: 180px;
  }

  .about-hub-about-visual img {
    max-height: clamp(130px, 28vw, 180px);
  }

  .about-hub-link {
    padding: 0.3rem 0.36rem;
    font-size: 0.66rem;
    gap: 0.3rem;
  }

  .about-hub-cta {
    min-height: 1.8rem;
    font-size: 0.72rem;
    padding-inline: 0.42rem;
  }

  .about-hub-col--about .about-hub-text {
    display: none;
  }

  .services-highlight-grid {
    grid-template-columns: 1fr;
  }

  .before-after-head p {
    font-size: 0.82rem;
  }

  .before-after-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .before-after-track {
    grid-auto-columns: 100%;
    gap: 0.6rem;
  }

  .before-after-modal {
    padding: 0.82rem;
    max-height: calc(100dvh - 1rem);
  }

  .before-after-modal-compare {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    gap: 0.62rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.1rem;
  }

  .before-after-modal-compare figure {
    scroll-snap-align: start;
  }

  .services-highlight-center {
    display: none;
  }

  .services-highlight-card {
    --q-size: clamp(128px, 33vw, 186px);
    --q-safe-x: clamp(96px, 24vw, 140px);
  }

  .services-highlight-quarter {
    width: var(--q-size);
    height: var(--q-size);
  }

  .home-blog-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 0.7rem;
  }

  .home-blog-all {
    width: auto;
    justify-content: flex-start;
  }

  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .home-blog-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .consent-check {
    font-size: 0.74rem;
  }

  #mobile-menu-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    top: 86px;
    bottom: 0;
    z-index: 45;
    background: rgba(2, 6, 23, 0.34);
    backdrop-filter: blur(5px);
  }

  .site-header-wrap #mobile-nav {
    position: fixed;
    left: 0.8rem;
    right: 0.8rem;
    top: 86px;
    z-index: 76;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background:
      radial-gradient(380px 200px at 16% 10%, rgba(82, 39, 120, 0.22), transparent 68%),
      linear-gradient(180deg, rgba(2, 6, 23, 0.97), rgba(2, 6, 23, 0.94));
    backdrop-filter: blur(10px) saturate(1.18);
    box-shadow: 0 26px 42px -26px rgba(15, 23, 42, 0.85);
    padding: 0.55rem;
    max-height: calc(100vh - 106px);
    overflow: auto;
  }

  .site-header-wrap #mobile-nav .flex {
    gap: 0.32rem;
  }

  .site-header-wrap #mobile-nav a,
  .site-header-wrap #mobile-nav .mobile-menu-toggle {
    border-radius: 0.75rem;
    padding: 0.78rem 0.86rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(241, 245, 249, 0.96);
    font-size: 1.03rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-header-wrap #mobile-nav a:hover,
  .site-header-wrap #mobile-nav .mobile-menu-toggle:hover,
  .site-header-wrap #mobile-nav a:focus-visible {
    background: rgba(148, 46, 135, 0.22);
  }

  .site-header-wrap #mobile-nav .mobile-menu-group {
    display: grid;
    gap: 0.28rem;
  }

  .site-header-wrap #mobile-nav .mobile-submenu {
    margin-left: 0.42rem;
    padding-left: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    gap: 0.28rem;
  }

  .site-header-wrap #mobile-nav .mobile-submenu.hidden {
    display: none !important;
  }

  .site-header-wrap #mobile-nav .mobile-level-1 {
    font-size: 0.98rem;
  }

  .site-header-wrap #mobile-nav .mobile-level-2,
  .site-header-wrap #mobile-nav .mobile-level-3 {
    font-size: 0.93rem;
  }

  .site-header-wrap #mobile-nav .mobile-menu-group.is-open > .mobile-menu-toggle i {
    transform: rotate(180deg);
  }

  .site-header-wrap #mobile-nav .mobile-menu-toggle i {
    transition: transform 0.2s ease;
    font-size: 0.75rem;
    opacity: 0.8;
  }
}

.hero-bg-shell--subpage {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  min-height: clamp(220px, 36vh, 320px);
}

.reviews-glass {
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(420px 200px at 8% 18%, rgba(148, 46, 135, 0.22), transparent 70%),
    linear-gradient(135deg, rgba(82, 39, 120, 0.82), rgba(30, 41, 59, 0.72));
  backdrop-filter: blur(14px) saturate(1.22);
  box-shadow: 0 28px 44px -30px rgba(2, 6, 23, 0.9);
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}

.reviews-overlap {
  position: relative;
  z-index: 6;
  margin-top: clamp(-68px, -6.2vw, -44px);
}

@media (min-width: 1024px) {
  .reviews-overlap {
    margin-top: clamp(-76px, -5.8vw, -56px);
  }
}

@media (min-width: 1400px) {
  .reviews-overlap {
    margin-top: clamp(-110px, -8.2vw, -84px);
  }
}

@media (min-width: 1024px) and (max-width: 1399px) and (max-height: 900px) {
  .reviews-overlap {
    margin-top: clamp(-58px, -4.6vw, -40px);
  }
}

@media (min-width: 1024px) and (max-width: 1399px) and (max-height: 760px) {
  .reviews-overlap {
    margin-top: clamp(-34px, -2.8vw, -22px);
  }
}

.reviews-summary {
  min-width: 0;
}

.reviews-source-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.62rem;
}

.reviews-source-pill {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.55rem 0.3rem 0.35rem;
}

.reviews-source-pill img {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  object-fit: contain;
  flex: 0 0 16px;
}

.reviews-trustpilot-logo {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  object-fit: contain;
  flex: 0 0 16px;
}

.reviews-source-pill.is-active {
  background: linear-gradient(140deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.9));
  border-color: rgba(255, 255, 255, 0.46);
}

.reviews-title-row {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
}

.reviews-google-logo {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: contain;
  flex: 0 0 32px;
}

.reviews-title-row .reviews-trustpilot-logo {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.reviews-stars {
  color: #facc15;
  display: inline-flex;
  gap: 0.14rem;
}

.reviews-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.reviews-slider-viewport {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.reviews-slider-viewport.is-dragging {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  gap: 0.75rem;
  transition: transform 0.45s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 100%;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0.62rem;
  align-items: start;
  padding: 0.72rem;
  color: #e2e8f0;
}

.review-card:hover {
  background: rgba(148, 46, 135, 0.22);
  border-color: rgba(255, 255, 255, 0.38);
}

.review-card img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.review-name {
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.review-text {
  margin: 0.28rem 0 0;
  font-size: 0.86rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .reviews-glass {
    grid-template-columns: minmax(195px, 235px) 1px 1fr;
    align-items: center;
    padding: 1rem;
  }

  .reviews-divider {
    width: 1px;
    height: 100%;
  }

  .review-card {
    flex-basis: calc((100% - 0.75rem) / 2);
  }
}

@media (min-width: 1180px) {
  .review-card {
    flex-basis: calc((100% - 1.5rem) / 3);
  }
}

@media (max-width: 767px) {
  .reviews-overlap {
    margin-top: clamp(-42px, -5.6vw, -22px);
  }

  .reviews-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.55rem;
    row-gap: 0.4rem;
  }

  .reviews-source-switch {
    margin-bottom: 0;
    min-width: 0;
  }

  .reviews-title-row {
    display: none;
  }

  .reviews-summary .mt-3 {
    margin-top: 0;
    grid-column: 2;
    justify-content: flex-end;
    gap: 0.2rem;
  }

  .reviews-summary [data-reviews-rating] {
    display: none;
  }

  .reviews-summary .reviews-stars {
    font-size: 0.78rem;
    gap: 0.08rem;
  }
}

.hero-bg-dim--subpage {
  background:
    linear-gradient(100deg, rgba(3, 7, 18, 0.74) 0%, rgba(3, 7, 18, 0.54) 45%, rgba(3, 7, 18, 0.38) 100%),
    linear-gradient(180deg, rgba(82, 39, 120, 0.2), transparent 64%);
}

.subpage-hero-copy {
  padding-top: clamp(8.25rem, 13vw, 10.5rem);
  padding-bottom: clamp(1.25rem, 4vw, 2rem);
}

.subpage-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.8rem;
  font-size: 0.74rem;
  color: rgba(241, 245, 249, 0.94);
  backdrop-filter: blur(8px);
}

.subpage-hero-breadcrumb a {
  color: inherit;
}

.subpage-hero-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.58);
}

.hero-flush {
  margin-top: 0;
}

.mask-diagonal {
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
}

.mask-arch {
  border-radius: 50% 50% 1.2rem 1.2rem / 28% 28% 1.2rem 1.2rem;
  overflow: hidden;
}

.overlap-media {
  position: relative;
}

.site-footer {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(226, 232, 240, 0.28) 0%, rgba(148, 163, 184, 0.14) 44%, rgba(15, 23, 42, 0.22) 100%),
    radial-gradient(560px 180px at 15% 0%, rgba(148, 46, 135, 0.18), transparent 70%),
    radial-gradient(520px 180px at 88% 0%, rgba(82, 39, 120, 0.16), transparent 72%);
}

.site-footer > .mx-auto.max-w-7xl {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.footer-glass {
  position: relative;
  z-index: 1;
  border-radius: 1.45rem 1.45rem 0 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  background:
    linear-gradient(150deg, rgba(15, 23, 42, 0.84), rgba(51, 26, 76, 0.82)),
    radial-gradient(520px 260px at 12% 0%, rgba(148, 46, 135, 0.24), transparent 76%);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.18), 0 -26px 52px -36px rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(13px) saturate(1.18);
  overflow: hidden;
}

.footer-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=2400&q=70") center/cover no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    radial-gradient(340px 180px at 88% 100%, rgba(148, 46, 135, 0.18), transparent 76%);
  opacity: 0.2;
  filter: blur(3.5px) saturate(0.68) contrast(0.96);
  transform: scale(1.03);
}

.footer-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.26) 45%, rgba(15, 23, 42, 0.5)),
    radial-gradient(520px 200px at 16% 12%, rgba(148, 46, 135, 0.18), transparent 72%);
}

.footer-top,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  gap: 1.6rem;
  width: min(100% - 2.6rem, 1280px);
  margin-inline: auto;
  padding: 1.45rem 0;
}

.footer-brand-logo {
  width: min(220px, 60vw);
  height: auto;
  display: block;
}

.footer-brand-text {
  margin-top: 0.9rem;
  color: rgba(226, 232, 240, 0.86);
  font-size: 0.94rem;
  line-height: 1.55;
}

.footer-social {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-social a {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
  background: rgba(148, 46, 135, 0.28);
  border-color: rgba(255, 255, 255, 0.56);
}

.footer-title {
  margin: 0;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(196, 181, 253, 0.96);
  font-weight: 700;
}

.footer-list {
  margin-top: 0.78rem;
  display: grid;
  gap: 0.5rem;
}

.footer-list a {
  color: rgba(241, 245, 249, 0.9);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.footer-list a::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(148, 46, 135, 0.78);
  box-shadow: 0 0 0 3px rgba(148, 46, 135, 0.2);
}

.footer-list a:hover {
  color: #ffffff;
  transform: translateX(1px);
}

.footer-contact {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.footer-contact a {
  color: rgba(226, 232, 240, 0.92);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 0.4rem;
  width: min(100% - 2.6rem, 1280px);
  margin-inline: auto;
  padding: 0.95rem 0 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: rgba(203, 213, 225, 0.86);
  font-size: 0.82rem;
}

.footer-mini-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-mini-links a {
  color: rgba(226, 232, 240, 0.92);
}

.footer-mini-links a:hover {
  color: #ffffff;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 1.25rem;
    padding: 1.55rem 0;
  }

  .footer-bottom {
    padding: 1rem 0 1.15rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 0;
  }

  .footer-glass {
    border-radius: 1rem 1rem 0 0;
  }

  .footer-top,
  .footer-bottom {
    width: min(100% - 1.5rem, 1280px);
  }
}

.overlap-media .overlap-card {
  position: absolute;
  right: -0.85rem;
  bottom: -1.1rem;
  max-width: 14rem;
}

.editorial-grid {
  display: grid;
  gap: 1.1rem;
}

.editorial-grid > *:nth-child(1) {
  transform: translateY(0);
}

.editorial-grid > *:nth-child(2) {
  transform: translateY(0.65rem);
}

.editorial-grid > *:nth-child(3) {
  transform: translateY(-0.45rem);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-mosaic > :nth-child(1) {
  grid-column: span 2;
}

.gallery-mosaic > :nth-child(4n) img {
  aspect-ratio: 1 / 1.2;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(12px);
  animation: staggerIn 0.6s ease forwards;
}

.stagger > *:nth-child(2) { animation-delay: 0.08s; }
.stagger > *:nth-child(3) { animation-delay: 0.16s; }
.stagger > *:nth-child(4) { animation-delay: 0.24s; }
.stagger > *:nth-child(5) { animation-delay: 0.32s; }

@keyframes staggerIn {
  to { opacity: 1; transform: none; }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 14, 23, 0.88);
  display: grid;
  place-items: center;
  z-index: 60;
}

.lightbox img {
  max-width: min(92vw, 960px);
  max-height: 84vh;
  border-radius: 0.8rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}

.carousel-item {
  min-width: 100%;
}

.sticky-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(247, 250, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  padding: 0.65rem;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: rgba(15, 23, 42, 0.84);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
  z-index: 70;
}

.input-error {
  border-color: #b91c1c !important;
}

.time-selected {
  background: #0f172a !important;
  color: #fff !important;
}

.error-text {
  color: #b91c1c;
  font-size: 0.8rem;
}

.prose-content p + p {
  margin-top: 1rem;
}

/* Design refresh: editorial-luxury direction for the home page */
:root {
  --accent: #522778;
  --accent-soft: #f1e8fb;
  --grad-accent: linear-gradient(120deg, #522778, #942e87);
}

body {
  background:
    radial-gradient(980px 640px at 8% -10%, rgba(148, 46, 135, 0.16), transparent 60%),
    radial-gradient(960px 620px at 96% 16%, rgba(82, 39, 120, 0.13), transparent 52%),
    linear-gradient(180deg, #f3f6fb 0%, #ecf2f8 44%, #f4f6fb 100%);
}

body::before {
  background: rgba(148, 46, 135, 0.16);
}

body::after {
  background: rgba(82, 39, 120, 0.12);
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-font {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

.btn-primary,
.hero-call-submit {
  background: linear-gradient(140deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 14px 28px -18px rgba(82, 39, 120, 0.68);
}

.btn-primary:hover,
.hero-call-submit:hover {
  filter: saturate(1.08) brightness(1.03);
}

.hero-proof-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-proof-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 23, 42, 0.22);
  color: rgba(241, 245, 249, 0.98);
  padding: 0.34rem 0.78rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-main-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(8px);
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-outline-light:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 0.35);
}

.social-trio-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.social-trio-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 30px -24px rgba(2, 6, 23, 0.75);
}

.social-trio-text {
  min-height: 2.9rem;
}

@media (max-width: 767px) {
  .hero-main-actions {
    flex-direction: column;
  }

  .hero-main-actions > a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .stagger > * {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 768px) {
  .sticky-mobile-cta {
    display: none;
  }

  .gallery-mosaic {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .gallery-mosaic > :nth-child(1) {
    grid-column: span 2;
  }

  .gallery-mosaic > :nth-child(2) {
    grid-row: span 2;
  }

  .editorial-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* Typography normalization (home page) */
body[data-page="home"] {
  --type-display: clamp(2.05rem, 5vw, 3.15rem);
  --type-h2: clamp(1.35rem, 2.2vw, 1.8rem);
  --type-h3: clamp(1.08rem, 1.55vw, 1.3rem);
  --type-h4: clamp(1.04rem, 1.5vw, 1.2rem);
  --type-body: 1rem;
  --type-body-sm: 0.95rem;
  --type-overline: 0.68rem;
}

body[data-page="home"] p {
  line-height: 1.62;
}

body[data-page="home"] h1 {
  font-size: var(--type-display);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 700;
}

body[data-page="home"] h2 {
  font-size: var(--type-h2);
  line-height: 1.14;
  letter-spacing: -0.018em;
  font-weight: 700;
}

body[data-page="home"] h3 {
  font-size: var(--type-h3);
  line-height: 1.24;
  letter-spacing: -0.012em;
}

body[data-page="home"] h4,
body[data-page="home"] h5,
body[data-page="home"] h6 {
  font-size: var(--type-h4);
  line-height: 1.3;
}

body[data-page="home"] .home-blog-head h2,
body[data-page="home"] .before-after-head h2,
body[data-page="home"] .social-trio-head h2,
body[data-page="home"] .seo-rich-content h2 {
  font-size: var(--type-h2);
}

body[data-page="home"] .before-after-content h3,
body[data-page="home"] .services-highlight-card h3,
body[data-page="home"] .about-hub-col h3,
body[data-page="home"] .instagram-feed-head h3,
body[data-page="home"] .youtube-feed-head h3,
body[data-page="home"] .tiktok-feed-head h3,
body[data-page="home"] .seo-rich-content h3 {
  font-size: var(--type-h3);
  line-height: 1.26;
}

body[data-page="home"] .home-blog-content h3 {
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  line-height: 1.28;
}

body[data-page="home"] .home-blog-date,
body[data-page="home"] .about-hub-kicker,
body[data-page="home"] .before-after-kicker,
body[data-page="home"] .home-blog-kicker,
body[data-page="home"] .instagram-eyebrow,
body[data-page="home"] .youtube-eyebrow,
body[data-page="home"] .tiktok-eyebrow,
body[data-page="home"] .cta-kicker {
  font-size: var(--type-overline);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.05;
}

body[data-page="home"] .before-after-kicker,
body[data-page="home"] .home-blog-kicker {
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
}

body[data-page="home"] .before-after-head h2,
body[data-page="home"] .home-blog-head h2 {
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  line-height: 1.14;
}

body[data-page="home"] .before-after-head p,
body[data-page="home"] .home-blog-desc {
  font-size: 0.9rem;
  line-height: 1.55;
}

body[data-page="home"] .social-trio-kicker {
  font-size: var(--type-overline);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="home"] .hero-home-grid h1,
body[data-page="home"] .hero-home-grid h2 {
  letter-spacing: -0.03em;
}

body[data-page="home"] .hero-home-grid h2 {
  font-size: clamp(1.4rem, 2.1vw, 1.75rem);
}

body[data-page="home"] .hero-home-grid p {
  font-size: 0.98rem;
}

body[data-page="home"] .social-trio-title,
body[data-page="home"] .instagram-handle,
body[data-page="home"] .youtube-handle,
body[data-page="home"] .tiktok-handle {
  font-weight: 700;
}

body[data-page="home"] .social-trio-card--instagram .social-trio-icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 70%, #515bd4);
}

body[data-page="home"] .social-trio-card--youtube .social-trio-icon {
  background: linear-gradient(135deg, #ff0000, #c1121f);
}

body[data-page="home"] .social-trio-card--tiktok .social-trio-icon {
  background: #111111;
}

body[data-page="home"] .social-trio-card .social-trio-icon {
  border-color: rgba(255, 255, 255, 0.52);
}

body[data-page="home"] .instagram-icon-badge {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 70%, #515bd4);
}

body[data-page="home"] .youtube-icon-badge {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

body[data-page="home"] .tiktok-icon-badge {
  background: #111111;
}

body[data-page="home"] .social-trio-head h2,
body[data-page="home"] .social-trio-kicker {
  text-shadow: 0 1px 8px rgba(2, 6, 23, 0.35);
}

body[data-page="home"] .home-blog-content h3,
body[data-page="home"] .before-after-content h3,
body[data-page="home"] .services-highlight-card h3 {
  font-weight: 700;
}

body[data-page="home"] .home-blog-desc,
body[data-page="home"] .home-blog-content p,
body[data-page="home"] .before-after-head p,
body[data-page="home"] .before-after-content p,
body[data-page="home"] .about-hub-text,
body[data-page="home"] .social-trio-text,
body[data-page="home"] .instagram-profile-text,
body[data-page="home"] .youtube-profile-text,
body[data-page="home"] .tiktok-profile-text,
body[data-page="home"] .cta-desc {
  font-size: var(--type-body-sm);
  line-height: 1.58;
}

@media (max-width: 1023px) {
  body[data-page="home"] .about-hub-kicker {
    font-size: 0.68rem;
  }

  body[data-page="home"] .about-hub-col h3 {
    font-size: 1rem;
  }

  body[data-page="home"] .about-hub-text {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  body[data-page="home"] .about-hub-link,
  body[data-page="home"] .about-hub-cta {
    font-size: 0.82rem;
  }
}

@media (max-width: 767px) {
  body[data-page="home"] h1 {
    font-size: clamp(1.95rem, 8.2vw, 2.45rem);
  }

  body[data-page="home"] h2 {
    font-size: clamp(1.22rem, 5.2vw, 1.55rem);
  }

  body[data-page="home"] h3 {
    font-size: clamp(0.98rem, 4.2vw, 1.14rem);
  }

  body[data-page="home"] .social-trio-head h2 {
    font-size: 1.08rem;
  }

  body[data-page="home"] .social-trio-title {
    font-size: 0.82rem;
  }

  body[data-page="home"] .social-trio-btn {
    font-size: 0.78rem;
  }

  body[data-page="home"] .about-hub-kicker {
    font-size: 0.66rem;
  }

  body[data-page="home"] .about-hub-col h3 {
    font-size: 0.88rem;
  }

  body[data-page="home"] .about-hub-text {
    font-size: 0.78rem;
  }

  body[data-page="home"] .about-hub-link {
    font-size: 0.76rem;
  }
}

/* Typography color consistency (home page) */
body[data-page="home"] {
  --type-color-heading: #4e276f;
  --type-color-body: #3f4d63;
  --type-color-muted: #64748b;
  --type-color-kicker: #7c3a9c;
  --type-color-on-dark: #f8fafc;
  --type-color-on-dark-muted: rgba(226, 232, 240, 0.9);
}

body[data-page="home"] :where(
  .home-blog-head h2,
  .home-blog-content h3,
  .before-after-head h2,
  .before-after-content h3,
  .services-highlight-card h3,
  .about-hub-col h3,
  .seo-rich-content h2,
  .seo-rich-content h3
) {
  color: var(--type-color-heading);
}

body[data-page="home"] :where(
  .home-blog-desc,
  .home-blog-content p,
  .before-after-head p,
  .before-after-content p,
  .services-highlight-card p,
  .services-highlight-list li,
  .about-hub-text,
  .seo-rich-content p,
  .seo-rich-content li
) {
  color: var(--type-color-body);
}

body[data-page="home"] :where(
  .home-blog-date,
  .home-blog-kicker,
  .before-after-kicker,
  .about-hub-kicker,
  .cta-kicker
) {
  color: var(--type-color-kicker);
}

body[data-page="home"] :where(
  .social-trio-head h2,
  .social-trio-kicker,
  .social-trio-title,
  .social-trio-btn,
  .instagram-handle,
  .youtube-handle,
  .tiktok-handle,
  .instagram-feed-head h3,
  .youtube-feed-head h3,
  .tiktok-feed-head h3
) {
  color: var(--type-color-on-dark);
}

body[data-page="home"] :where(
  .social-trio-text,
  .social-trio-handle,
  .instagram-eyebrow,
  .youtube-eyebrow,
  .tiktok-eyebrow,
  .instagram-profile-text,
  .youtube-profile-text,
  .tiktok-profile-text,
  .instagram-modal-caption,
  .youtube-modal-caption,
  .tiktok-modal-caption,
  .review-text
) {
  color: var(--type-color-on-dark-muted);
}

body[data-page="home"] :where(
  .review-name,
  .reviews-brand-title,
  [data-reviews-brand-title],
  [data-reviews-rating]
) {
  color: var(--type-color-on-dark);
}

/* About page alignment with home visual language */
body[data-page="about"] {
  --about-ink: #4e276f;
  --about-muted: #435066;
  --about-accent: #522778;
  --about-accent-soft: rgba(82, 39, 120, 0.16);
  --about-gold: #7c3a9c;
  --about-shell-bg: linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(241, 236, 248, 0.72));
}

body[data-page="about"] .about-hero-card {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(760px 380px at 0% -8%, rgba(148, 46, 135, 0.14), transparent 68%),
    radial-gradient(700px 360px at 108% 108%, rgba(82, 39, 120, 0.12), transparent 70%),
    var(--about-shell-bg);
  box-shadow:
    0 36px 62px -40px rgba(9, 20, 33, 0.84),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.16);
}

body[data-page="about"] .about-tag {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #5b2a82;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body[data-page="about"] .about-title {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--about-ink);
}

body[data-page="about"] .about-lead {
  font-size: clamp(0.98rem, 1.7vw, 1.08rem);
  line-height: 1.64;
  color: var(--about-muted);
}

body[data-page="about"] .about-hero-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(82, 39, 120, 0.24);
  color: #4b1f73;
}

body[data-page="about"] .about-floating-chip {
  background: linear-gradient(138deg, rgba(82, 39, 120, 0.94), rgba(148, 46, 135, 0.92));
  box-shadow: 0 18px 30px -20px rgba(82, 39, 120, 0.84);
}

body[data-page="about"] .about-mini-title,
body[data-page="about"] .about-step-number {
  color: #7c3a9c;
}

body[data-page="about"] .about-mini-title {
  margin: 0;
  color: #5b2a82;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body[data-page="about"] .about-tag::before,
body[data-page="about"] .about-mini-title::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow: 0 0 0 3px rgba(124, 58, 156, 0.14);
}

body[data-page="about"] .about-section-title {
  font-size: clamp(1.36rem, 2.25vw, 1.78rem);
  line-height: 1.18;
  color: var(--about-ink);
}

body[data-page="about"] .about-section-text,
body[data-page="about"] .about-step-card p,
body[data-page="about"] .about-values-list li {
  color: var(--about-muted);
}

body[data-page="about"] .about-values-card {
  border: 1px solid rgba(255, 255, 255, 0.66);
  background:
    radial-gradient(520px 250px at 100% -12%, rgba(148, 46, 135, 0.14), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 244, 251, 0.74));
}

body[data-page="about"] .about-values-list i {
  background: linear-gradient(140deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow: 0 10px 18px -12px rgba(82, 39, 120, 0.82);
}

body[data-page="about"] .about-timeline::before {
  background: linear-gradient(180deg, rgba(124, 58, 156, 0.42), rgba(82, 39, 120, 0.3));
}

body[data-page="about"] .about-step-card::before {
  background: linear-gradient(145deg, rgba(148, 46, 135, 0.95), rgba(82, 39, 120, 0.9));
  box-shadow: 0 0 0 5px rgba(82, 39, 120, 0.12);
}

body[data-page="about"] .about-step-card h3 {
  color: var(--about-ink);
}

body[data-page="about"] .about-gallery-shell {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(560px 260px at -6% -14%, rgba(148, 46, 135, 0.12), transparent 72%),
    radial-gradient(540px 240px at 104% 120%, rgba(82, 39, 120, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 241, 250, 0.72));
}

body[data-page="about"] .about-band {
  position: relative;
  border-radius: 1.45rem;
  overflow: hidden;
}

body[data-page="about"] .about-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

body[data-page="about"] .about-band--mist {
  background:
    radial-gradient(560px 260px at 12% -12%, rgba(148, 46, 135, 0.1), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(240, 244, 250, 0.36));
}

body[data-page="about"] .about-band--light {
  background:
    radial-gradient(520px 220px at 92% 112%, rgba(82, 39, 120, 0.08), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(244, 248, 252, 0.34));
}

body[data-page="about"] .about-band--deep {
  background:
    linear-gradient(120deg, rgba(19, 14, 35, 0.84), rgba(45, 23, 67, 0.76)),
    radial-gradient(620px 280px at 18% 6%, rgba(148, 46, 135, 0.34), transparent 70%),
    url("../assets/gallery-6.svg") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

body[data-page="about"] .about-band--deep::before {
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.44), rgba(2, 6, 23, 0.28)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 24px);
}

body[data-page="about"] .about-split-shell,
body[data-page="about"] .about-workflow-shell,
body[data-page="about"] .about-gallery-shell {
  position: relative;
  z-index: 1;
  border-radius: 1.28rem;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.14)),
    radial-gradient(420px 220px at 8% 0%, rgba(148, 46, 135, 0.11), transparent 72%);
  backdrop-filter: blur(14px) saturate(1.18);
  box-shadow: 0 22px 44px -30px rgba(2, 6, 23, 0.56);
  padding: clamp(0.86rem, 2.1vw, 1.15rem);
}

body[data-page="about"] .about-workflow-shell {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    radial-gradient(440px 230px at 10% 0%, rgba(148, 46, 135, 0.18), transparent 72%);
}

body[data-page="about"] .about-band--deep .about-workflow-head .about-tag {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.36);
  color: rgba(248, 250, 252, 0.95);
}

body[data-page="about"] .about-band--deep .about-workflow-head .about-section-title {
  color: rgba(248, 250, 252, 0.98);
  text-shadow: 0 1px 10px rgba(2, 6, 23, 0.42);
}

/* About first section refinement */
body[data-page="about"] .about-shell {
  margin-top: 1.35rem;
}

body[data-page="about"] .about-hero-card {
  border-radius: 2.1rem;
  padding: clamp(1.4rem, 3vw, 2.6rem);
  background:
    radial-gradient(680px 300px at -8% -12%, rgba(124, 58, 156, 0.2), transparent 72%),
    radial-gradient(620px 280px at 112% 112%, rgba(82, 39, 120, 0.16), transparent 75%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(246, 242, 251, 0.82));
}

body[data-page="about"] .about-hero-grid {
  gap: clamp(1.4rem, 3.2vw, 2.9rem);
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

body[data-page="about"] .about-title {
  max-width: 18.5ch;
  font-size: clamp(1.9rem, 3.05vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.08;
  color: #4e276f;
  text-wrap: balance;
}

body[data-page="about"] .about-lead {
  max-width: 54ch;
  font-size: clamp(0.96rem, 1.2vw, 1.02rem);
  line-height: 1.65;
}

body[data-page="about"] .about-facts {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  border: 1px solid rgba(124, 58, 156, 0.18);
  background:
    linear-gradient(160deg, rgba(123, 66, 171, 0.12), rgba(123, 66, 171, 0.05)),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 30px -30px rgba(22, 10, 34, 0.42);
  backdrop-filter: blur(10px) saturate(1.04);
  padding: 0.94rem;
}

body[data-page="about"] .about-facts::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 36%),
    repeating-linear-gradient(90deg, rgba(124, 58, 156, 0.035) 0 1px, transparent 1px 24px);
}

body[data-page="about"] .about-facts-title {
  margin: 0 0 0.65rem;
  font-size: 0.74rem;
  line-height: 1.2;
  letter-spacing: 0.14em;
  font-weight: 800;
  text-transform: uppercase;
  color: #6b348f;
}

body[data-page="about"] .about-note {
  margin: 0.72rem 0 0;
  font-size: 0.79rem;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: 0.008em;
  color: #5a647a;
}

body[data-page="about"] .about-metrics {
  gap: 0.62rem;
}

body[data-page="about"] .about-metric-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.9rem;
  padding: 0.84rem 0.8rem 0.76rem;
  background:
    linear-gradient(160deg, rgba(139, 87, 186, 0.2), rgba(112, 61, 159, 0.14)),
    rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(124, 58, 156, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 14px 24px -24px rgba(23, 12, 34, 0.35);
}

body[data-page="about"] .about-metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 42%);
}

body[data-page="about"] .about-metric-value {
  font-size: clamp(1.18rem, 1.9vw, 1.52rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #4c266f;
  text-shadow: none;
}

body[data-page="about"] .about-metric-label {
  margin-top: 0.18rem;
  font-size: 0.73rem;
  color: #5f6f87;
}

body[data-page="about"] .about-media-stack {
  min-height: 580px;
}

body[data-page="about"] .about-frame-main {
  inset: 0.15rem 0.15rem 5.5rem 0.2rem;
}

body[data-page="about"] .about-frame-main::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(10, 14, 24, 0) 0%, rgba(10, 14, 24, 0.3) 100%);
  pointer-events: none;
}

body[data-page="about"] .about-frame-main img,
body[data-page="about"] .about-frame-secondary img {
  object-position: center;
}

body[data-page="about"] .about-frame-secondary {
  width: min(260px, 54%);
  right: -0.1rem;
  bottom: 0.2rem;
  transform: rotate(-3deg);
}

body[data-page="about"] .about-floating-chip {
  left: 0.3rem;
  bottom: 1.55rem;
  min-height: 46px;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #522778, #6f3296);
}

body[data-page="about"] .about-media-pill {
  position: absolute;
  right: 0.95rem;
  top: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.56rem;
  padding: 0.52rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(145deg, rgba(96, 52, 138, 0.72), rgba(75, 39, 116, 0.66)),
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 12px 22px -20px rgba(20, 14, 30, 0.5);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
}

body[data-page="about"] .about-media-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 46%);
}

body[data-page="about"] .about-media-pill i {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #ffffff;
  font-size: 0.8rem;
}

body[data-page="about"] .about-media-pill-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.03rem;
}

body[data-page="about"] .about-media-pill-value {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.005em;
  color: #ffffff;
  line-height: 1.1;
}

body[data-page="about"] .about-media-pill-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
}

@media (max-width: 1023px) {
  body[data-page="about"] .about-media-stack {
    min-height: 500px;
  }

  body[data-page="about"] .about-title {
    max-width: 19.5ch;
  }
}

@media (max-width: 767px) {
  body[data-page="about"] .about-title {
    font-size: clamp(1.6rem, 8.2vw, 2rem);
    line-height: 1.14;
  }

  body[data-page="about"] .about-lead {
    font-size: 0.98rem;
  }

  body[data-page="about"] .about-facts {
    padding: 0.72rem;
  }

  body[data-page="about"] .about-facts-title {
    margin-bottom: 0.56rem;
  }

  body[data-page="about"] .about-media-stack {
    min-height: 390px;
  }

  body[data-page="about"] .about-media-pill {
    right: 0.45rem;
    top: 0.55rem;
    padding: 0.46rem 0.62rem;
    gap: 0.44rem;
  }

  body[data-page="about"] .about-media-pill i {
    width: 1.55rem;
    height: 1.55rem;
    font-size: 0.72rem;
  }

  body[data-page="about"] .about-media-pill-value {
    font-size: 0.8rem;
  }

  body[data-page="about"] .about-media-pill-label {
    font-size: 0.6rem;
  }

  body[data-page="about"] .about-floating-chip {
    left: 0.35rem;
    bottom: 0.55rem;
  }
}

/* About hero mobile layout fix */
@media (max-width: 767px) {
  body[data-page="about"] .about-hero-card {
    padding: 1rem;
    border-radius: 1.2rem;
  }

  body[data-page="about"] .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }

  body[data-page="about"] .about-hero-copy {
    max-width: none;
  }

  body[data-page="about"] .about-title {
    max-width: 100%;
  }

  body[data-page="about"] .about-hero-media {
    order: 2;
    width: 100%;
  }

  body[data-page="about"] .about-media-stack {
    position: relative;
    min-height: 0;
    padding-bottom: 1.9rem;
  }

  body[data-page="about"] .about-frame {
    position: relative;
  }

  body[data-page="about"] .about-frame-main {
    inset: auto;
    border-radius: 1rem;
  }

  body[data-page="about"] .about-frame-main img {
    aspect-ratio: 16 / 10;
  }

  body[data-page="about"] .about-frame-main::after {
    height: 24%;
  }

  body[data-page="about"] .about-frame-secondary {
    position: absolute;
    width: min(44vw, 176px);
    right: 0.55rem;
    bottom: -0.9rem;
    margin-top: 0;
    margin-left: 0;
    transform: rotate(-2deg);
    border-radius: 0.9rem;
    z-index: 3;
  }

  body[data-page="about"] .about-floating-chip {
    position: absolute;
    left: 0.55rem;
    bottom: 0.6rem;
    z-index: 4;
    max-width: calc(100% - 8.6rem);
    min-height: 38px;
    padding: 0.36rem 0.74rem;
    font-size: 0.75rem;
  }

  body[data-page="about"] .about-media-pill {
    position: absolute;
    right: 0.55rem;
    top: 0.55rem;
    z-index: 4;
    max-width: calc(100% - 1.1rem);
    padding: 0.38rem 0.54rem;
    gap: 0.36rem;
  }

  body[data-page="about"] .about-media-pill i {
    width: 1.35rem;
    height: 1.35rem;
    font-size: 0.66rem;
  }

  body[data-page="about"] .about-media-pill-value {
    font-size: 0.74rem;
  }

  body[data-page="about"] .about-media-pill-label {
    font-size: 0.56rem;
    white-space: nowrap;
  }
}

/* About split section: simplified two-block layout */
body[data-page="about"] .about-split-section {
  margin-top: 0.2rem;
}

body[data-page="about"] .about-split-section .about-split-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

body[data-page="about"] .about-split-section .about-story-card,
body[data-page="about"] .about-split-section .about-values-card {
  border-radius: 1.35rem;
  border: 1px solid rgba(124, 58, 156, 0.16);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.82), rgba(247, 243, 251, 0.72)),
    linear-gradient(180deg, rgba(123, 66, 171, 0.08), rgba(123, 66, 171, 0.03));
  box-shadow: 0 22px 34px -30px rgba(21, 13, 31, 0.34);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  padding: clamp(1rem, 2.2vw, 1.3rem);
}

body[data-page="about"] .about-split-section .about-values-card {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.76), rgba(245, 239, 250, 0.66)),
    radial-gradient(420px 220px at 100% -10%, rgba(123, 66, 171, 0.1), transparent 72%);
}

body[data-page="about"] .about-split-section .about-section-title {
  max-width: 22ch;
}

@media (max-width: 1023px) {
  body[data-page="about"] .about-split-section .about-split-grid {
    grid-template-columns: 1fr;
  }
}

/* About process section redesign */
body[data-page="about"] .about-process-section {
  position: relative;
  overflow: hidden;
  border-radius: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(680px 340px at -4% -12%, rgba(154, 86, 214, 0.34), transparent 70%),
    radial-gradient(560px 280px at 106% 110%, rgba(123, 66, 171, 0.36), transparent 72%),
    linear-gradient(128deg, #18122b 0%, #24163a 44%, #2f1c49 100%);
  box-shadow: 0 34px 58px -40px rgba(9, 6, 18, 0.92);
}

body[data-page="about"] .about-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 24px);
}

body[data-page="about"] .about-process-section .about-workflow-head,
body[data-page="about"] .about-process-section .about-timeline {
  position: relative;
  z-index: 1;
}

body[data-page="about"] .about-process-section .about-workflow-head {
  max-width: 700px;
}

body[data-page="about"] .about-process-section .about-workflow-head .about-tag {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.94);
}

body[data-page="about"] .about-process-section .about-workflow-head .about-section-title {
  color: #ffffff;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 10px rgba(2, 6, 23, 0.38);
}

body[data-page="about"] .about-process-section .about-timeline {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="about"] .about-process-section .about-timeline::before {
  display: none;
}

body[data-page="about"] .about-process-section .about-step-card {
  margin-left: 0;
  padding: 1.05rem 1rem 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(54, 26, 84, 0.45), rgba(33, 20, 56, 0.48));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 26px -22px rgba(2, 6, 23, 0.78);
}

body[data-page="about"] .about-process-section .about-step-card::before {
  display: none;
}

body[data-page="about"] .about-process-section .about-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #f5ecff;
  background: linear-gradient(145deg, rgba(159, 96, 219, 0.88), rgba(112, 58, 168, 0.9));
  box-shadow: 0 10px 18px -12px rgba(147, 82, 208, 0.8);
}

body[data-page="about"] .about-process-section .about-step-card h3 {
  margin: 0.62rem 0 0;
  color: #ffffff;
  font-size: 1.24rem;
  line-height: 1.2;
}

body[data-page="about"] .about-process-section .about-step-card p {
  margin: 0.52rem 0 0;
  color: rgba(239, 232, 248, 0.94);
  font-size: 0.95rem;
  line-height: 1.62;
}

@media (max-width: 1023px) {
  body[data-page="about"] .about-process-section .about-timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body[data-page="about"] .about-process-section {
    border-radius: 1.2rem;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }

  body[data-page="about"] .about-process-section .about-workflow-head .about-section-title {
    font-size: clamp(1.34rem, 6vw, 1.72rem);
  }

  body[data-page="about"] .about-process-section .about-timeline {
    gap: 0.72rem;
  }

  body[data-page="about"] .about-process-section .about-step-card {
    padding: 0.9rem 0.86rem 0.86rem;
  }

  body[data-page="about"] .about-process-section .about-step-card h3 {
    font-size: 1.1rem;
  }
}

/* About process section: premium colored glass */
body[data-page="about"] .about-process-section {
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  padding-top: 0.65rem;
}

body[data-page="about"] .about-process-section::before {
  display: none;
}

body[data-page="about"] .about-process-shell {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(420px 200px at 8% 18%, rgba(148, 46, 135, 0.22), transparent 70%),
    linear-gradient(135deg, rgba(82, 39, 120, 0.82), rgba(30, 41, 59, 0.72));
  backdrop-filter: blur(14px) saturate(1.22);
  -webkit-backdrop-filter: blur(14px) saturate(1.22);
  box-shadow: 0 28px 44px -30px rgba(2, 6, 23, 0.9);
  padding: 1rem;
}

body[data-page="about"] .about-process-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 42%);
}

body[data-page="about"] .about-process-section .about-workflow-head,
body[data-page="about"] .about-process-section .about-timeline {
  position: relative;
  z-index: 1;
}

body[data-page="about"] .about-process-section .about-workflow-head {
  max-width: 760px;
}

body[data-page="about"] .about-process-section .about-workflow-head .about-mini-title {
  color: #ffffff;
}

body[data-page="about"] .about-process-section .about-workflow-head .about-section-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 2.65vw, 2.1rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

body[data-page="about"] .about-process-section .about-timeline {
  position: relative;
  display: grid;
  gap: 0.86rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="about"] .about-process-section .about-timeline::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  right: 0.25rem;
  top: -0.4rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(208, 169, 245, 0.25), rgba(255, 255, 255, 0.48), rgba(208, 169, 245, 0.25));
}

body[data-page="about"] .about-process-section .about-step-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 26px -24px rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.72rem;
}

body[data-page="about"] .about-process-section .about-step-number {
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fefbff;
  background: linear-gradient(145deg, rgba(177, 114, 232, 0.9), rgba(122, 68, 179, 0.92));
  box-shadow: 0 10px 16px -12px rgba(170, 102, 230, 0.82);
}

body[data-page="about"] .about-process-section .about-step-card h3 {
  margin-top: 0.42rem;
  color: #ffffff;
  font-size: 1.14rem;
  line-height: 1.22;
}

body[data-page="about"] .about-process-section .about-step-card p {
  margin-top: 0.46rem;
  color: rgba(233, 223, 245, 0.94);
  font-size: 0.93rem;
  line-height: 1.58;
}

@media (max-width: 1023px) {
  body[data-page="about"] .about-process-section .about-timeline {
    grid-template-columns: 1fr;
  }

  body[data-page="about"] .about-process-section .about-timeline::before {
    display: none;
  }
}

/* About process section final harmony: mirror social-trio typography/colors */
body[data-page="about"] .about-process-shell {
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.54), rgba(30, 41, 59, 0.5));
  box-shadow: 0 16px 28px -22px rgba(2, 6, 23, 0.46);
  backdrop-filter: blur(14px) saturate(1.22);
  -webkit-backdrop-filter: blur(14px) saturate(1.22);
  padding: clamp(1rem, 2.4vw, 1.4rem);
}

body[data-page="about"] .about-process-shell::before {
  background:
    radial-gradient(420px 220px at 8% 18%, rgba(148, 46, 135, 0.2), transparent 70%),
    linear-gradient(135deg, rgba(82, 39, 120, 0.24), rgba(30, 41, 59, 0.2));
  filter: none;
  transform: none;
  opacity: 1;
}

body[data-page="about"] .about-process-shell::after {
  display: none;
}

body[data-page="about"] .about-process-section .about-workflow-head,
body[data-page="about"] .about-process-section .about-timeline {
  z-index: 1;
}

body[data-page="about"] .about-process-section .about-workflow-head .about-mini-title {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body[data-page="about"] .about-process-section .about-workflow-head .about-mini-title::before {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
}

body[data-page="about"] .about-process-section .about-workflow-head .about-section-title {
  margin: 0.36rem 0 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: #f8fafc;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.012em;
  text-shadow: 0 1px 8px rgba(2, 6, 23, 0.35);
  max-width: none;
}

body[data-page="about"] .about-process-section .about-workflow-head {
  max-width: none;
  width: 100%;
}

body[data-page="about"] .about-process-section .about-timeline::before {
  display: none;
}

body[data-page="about"] .about-process-section .about-step-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  color: rgba(226, 232, 240, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  padding: 0.95rem;
}

body[data-page="about"] .about-process-section .about-step-number {
  color: #fefbff;
  background: linear-gradient(145deg, rgba(177, 114, 232, 0.9), rgba(122, 68, 179, 0.92));
  box-shadow: 0 10px 16px -12px rgba(170, 102, 230, 0.82);
}

body[data-page="about"] .about-process-section .about-step-card h3 {
  margin: 0;
  align-self: center;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.24;
}

body[data-page="about"] .about-process-section .about-step-card p {
  margin: 0.45rem 0 0;
  line-height: 1.48;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.92);
}

@media (max-width: 767px) {
  body[data-page="about"] .about-process-section .about-workflow-head .about-section-title {
    font-size: 1.08rem;
  }
}

/* About gallery section: single-frame and full-width heading */
body[data-page="about"] .about-gallery-section {
  margin-top: 0;
}

body[data-page="about"] .about-gallery-section .about-gallery-shell {
  width: 100%;
  margin: 0;
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    radial-gradient(560px 240px at -6% -14%, rgba(148, 46, 135, 0.12), transparent 72%),
    radial-gradient(520px 220px at 104% 118%, rgba(82, 39, 120, 0.1), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(245, 241, 250, 0.72));
  box-shadow: 0 20px 32px -28px rgba(16, 24, 40, 0.34);
}

body[data-page="about"] .about-gallery-section .about-section-title {
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 1023px) {
  body[data-page="about"] .about-gallery-section .about-section-title {
    white-space: normal;
  }
}

/* About gallery redesign */
body[data-page="about"] .about-gallery-section .about-gallery-shell {
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    radial-gradient(520px 220px at -4% -12%, rgba(148, 46, 135, 0.14), transparent 70%),
    radial-gradient(440px 220px at 100% 120%, rgba(82, 39, 120, 0.1), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 241, 250, 0.72));
  box-shadow: 0 20px 32px -28px rgba(16, 24, 40, 0.34);
}

body[data-page="about"] .about-gallery-showcase {
  display: grid;
  gap: 0.9rem;
}

body[data-page="about"] .about-gallery-stage {
  position: relative;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(33, 20, 56, 0.9), rgba(55, 31, 86, 0.84));
}

body[data-page="about"] .about-gallery-viewport {
  position: relative;
  overflow: hidden;
}

body[data-page="about"] .about-gallery-track {
  display: flex;
  transition: transform 0.42s ease;
  will-change: transform;
}

body[data-page="about"] .about-gallery-slide {
  min-width: 100%;
  margin: 0;
  position: relative;
}

body[data-page="about"] .about-gallery-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

body[data-page="about"] .about-gallery-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0), rgba(2, 6, 23, 0.52));
  pointer-events: none;
}

body[data-page="about"] .about-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(15, 23, 42, 0.42);
  color: #f8fafc;
}

body[data-page="about"] .about-gallery-control--prev {
  left: 0.6rem;
}

body[data-page="about"] .about-gallery-control--next {
  right: 0.6rem;
}

body[data-page="about"] .about-gallery-expand {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 3;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(15, 23, 42, 0.42);
  color: #f8fafc;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.4rem 0.66rem;
}

body[data-page="about"] .about-gallery-info {
  display: grid;
  gap: 0.22rem;
  padding: 0.76rem 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(82, 39, 120, 0.5), rgba(30, 41, 59, 0.54));
}

body[data-page="about"] .about-gallery-info-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  color: #f8fafc;
  font-weight: 700;
}

body[data-page="about"] .about-gallery-info-desc {
  margin: 0;
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.86rem;
  line-height: 1.45;
}

body[data-page="about"] .about-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.56rem;
}

body[data-page="about"] .about-gallery-thumb {
  border: 1px solid rgba(124, 58, 156, 0.26);
  border-radius: 0.8rem;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.72);
  min-height: 72px;
}

body[data-page="about"] .about-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body[data-page="about"] .about-gallery-thumb.is-active {
  border-color: rgba(148, 46, 135, 0.72);
  box-shadow: 0 0 0 2px rgba(148, 46, 135, 0.24);
}

body[data-page="about"] .about-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 1rem;
}

body[data-page="about"] .about-gallery-modal.hidden {
  display: none;
}

body[data-page="about"] .about-gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.74);
  backdrop-filter: blur(3px);
}

body[data-page="about"] .about-gallery-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(140deg, rgba(82, 39, 120, 0.86), rgba(30, 41, 59, 0.82));
  box-shadow: 0 26px 42px -26px rgba(2, 6, 23, 0.92);
  padding: 0.82rem;
}

body[data-page="about"] .about-gallery-modal-close {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  z-index: 2;
}

body[data-page="about"] .about-gallery-modal-figure {
  margin: 0;
}

body[data-page="about"] .about-gallery-modal-figure img {
  width: 100%;
  border-radius: 0.72rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

body[data-page="about"] .about-gallery-modal-figure figcaption {
  margin-top: 0.62rem;
}

body[data-page="about"] .about-gallery-modal-title {
  margin: 0;
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 700;
}

body[data-page="about"] .about-gallery-modal-desc {
  margin: 0.2rem 0 0;
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.88rem;
  line-height: 1.45;
}

body[data-page="about"] .about-gallery-modal-actions {
  margin-top: 0.72rem;
  display: flex;
  justify-content: space-between;
  gap: 0.55rem;
}

body[data-page="about"] .about-gallery-modal-actions .btn-ghost {
  flex: 1 1 0;
  justify-content: center;
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
  body[data-page="about"] .about-gallery-section .about-section-title {
    white-space: normal;
  }

  body[data-page="about"] .about-gallery-control {
    width: 1.95rem;
    height: 1.95rem;
  }

  body[data-page="about"] .about-gallery-expand {
    font-size: 0.68rem;
    padding: 0.32rem 0.56rem;
  }

  body[data-page="about"] .about-gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="about"] .about-gallery-thumb {
    min-height: 66px;
  }
}

body[data-page="contact"] .contact-hero-shell,
body[data-page="contact"] .contact-main-shell,
body[data-page="contact"] .contact-faq-shell {
  position: relative;
  z-index: 2;
}

body[data-page="contact"] .contact-hero-card {
  border-radius: 1.55rem;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background:
    radial-gradient(540px 260px at 10% 4%, rgba(82, 39, 120, 0.16), transparent 68%),
    radial-gradient(480px 260px at 92% 94%, rgba(15, 118, 110, 0.12), transparent 72%),
    linear-gradient(158deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 255, 0.86));
  box-shadow: 0 30px 48px -30px rgba(15, 23, 42, 0.34);
  overflow: hidden;
}

body[data-page="contact"] .contact-hero-grid {
  display: grid;
  grid-template-columns: 1.35fr minmax(320px, 0.95fr);
  gap: clamp(1rem, 2.2vw, 1.6rem);
  padding: clamp(1.1rem, 2.7vw, 1.8rem);
}

body[data-page="contact"] .contact-kicker,
body[data-page="contact"] .contact-card-kicker,
body[data-page="contact"] .contact-panel-kicker {
  margin: 0;
  color: #5b2a82;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body[data-page="contact"] .contact-kicker::before,
body[data-page="contact"] .contact-card-kicker::before,
body[data-page="contact"] .contact-panel-kicker::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow: 0 0 0 3px rgba(124, 58, 156, 0.14);
}

body[data-page="contact"] .contact-hero-copy h1 {
  margin: 0.54rem 0 0;
  color: #1f2937;
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  font-weight: 800;
  line-height: 1.14;
}

body[data-page="contact"] .contact-hero-copy > p {
  margin: 0.86rem 0 0;
  color: #475569;
  line-height: 1.64;
  max-width: 60ch;
}

body[data-page="contact"] .contact-hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

body[data-page="contact"] .contact-hero-actions .contact-hero-whatsapp {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 24px -18px rgba(16, 185, 129, 0.66);
}

body[data-page="contact"] .contact-metric-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

body[data-page="contact"] .contact-metric {
  padding: 0.72rem 0.8rem;
  border-radius: 0.86rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.72);
}

body[data-page="contact"] .contact-metric-value {
  margin: 0;
  color: #4c1d95;
  font-size: 1.12rem;
  font-weight: 800;
}

body[data-page="contact"] .contact-metric-label {
  margin: 0.14rem 0 0;
  color: #4b5563;
  font-size: 0.82rem;
  font-weight: 600;
}

body[data-page="contact"] .contact-quick-panel {
  border-radius: 1.08rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(246, 238, 255, 0.82));
  padding: clamp(0.88rem, 2vw, 1.15rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

body[data-page="contact"] .contact-quick-panel h2 {
  margin: 0.5rem 0 0;
  color: #1e293b;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.24;
}

body[data-page="contact"] .contact-quick-list {
  margin-top: 0.84rem;
  display: grid;
  gap: 0.52rem;
}

body[data-page="contact"] .contact-quick-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.56rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.74);
  padding: 0.56rem 0.62rem;
  text-decoration: none;
  color: #1e293b;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

body[data-page="contact"] .contact-quick-item:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 58, 156, 0.34);
}

body[data-page="contact"] .contact-quick-icon {
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 0.92rem;
  color: #5b2a82;
  background: linear-gradient(145deg, rgba(90, 43, 130, 0.16), rgba(148, 46, 135, 0.06));
}

body[data-page="contact"] .contact-quick-item strong {
  display: block;
  font-size: 0.88rem;
}

body[data-page="contact"] .contact-quick-item small {
  display: block;
  color: #475569;
  font-size: 0.78rem;
  margin-top: 0.08rem;
}

body[data-page="contact"] .contact-panel-note {
  margin-top: 0.82rem;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  border-radius: 0.76rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(236, 253, 245, 0.82);
  padding: 0.52rem 0.62rem;
}

body[data-page="contact"] .contact-panel-note i {
  color: #0f766e;
  margin-top: 0.05rem;
}

body[data-page="contact"] .contact-panel-note p {
  margin: 0;
  color: #334155;
  font-size: 0.82rem;
  line-height: 1.45;
}

body[data-page="contact"] .contact-main-grid {
  display: grid;
  grid-template-columns: 1.4fr minmax(310px, 0.9fr);
  gap: clamp(0.84rem, 2.1vw, 1.3rem);
}

body[data-page="contact"] .contact-form-card,
body[data-page="contact"] .contact-map-card,
body[data-page="contact"] .contact-hours-card,
body[data-page="contact"] .contact-faq-card {
  border-radius: 1.14rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(156deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.86));
  box-shadow: 0 20px 34px -30px rgba(15, 23, 42, 0.52);
}

body[data-page="contact"] .contact-form-card {
  padding: clamp(0.95rem, 2.2vw, 1.25rem);
}

body[data-page="contact"] .contact-card-head h2 {
  margin: 0.4rem 0 0;
  color: #1e293b;
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
}

body[data-page="contact"] .contact-card-head p {
  margin: 0.46rem 0 0;
  color: #4b5563;
  line-height: 1.56;
}

body[data-page="contact"] .contact-form-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

body[data-page="contact"] .contact-form-span {
  grid-column: 1 / -1;
}

body[data-page="contact"] .contact-input {
  width: 100%;
  border-radius: 0.74rem;
  border: 1px solid rgba(148, 163, 184, 0.52);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.7rem 0.76rem;
  color: #0f172a;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body[data-page="contact"] .contact-input:focus {
  border-color: rgba(90, 43, 130, 0.5);
  box-shadow: 0 0 0 3px rgba(90, 43, 130, 0.12);
}

body[data-page="contact"] .contact-select {
  appearance: none;
}

body[data-page="contact"] .contact-textarea {
  min-height: 118px;
  resize: vertical;
}

body[data-page="contact"] .contact-consent-stack {
  gap: 0.42rem;
  padding: 0.7rem 0.82rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(248, 250, 252, 0.88);
}

body[data-page="contact"] .contact-consent-stack .consent-check {
  color: #1e293b;
  font-size: 0.82rem;
}

body[data-page="contact"] .contact-consent-stack .consent-link {
  color: #5b2a82;
  font-weight: 700;
}

body[data-page="contact"] .contact-consent-stack .consent-link:hover {
  color: #3b1b59;
}

body[data-page="contact"] .contact-consent-stack .consent-error {
  color: #b91c1c;
}

body[data-page="contact"] .contact-submit-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.58rem;
}

body[data-page="contact"] .contact-success {
  color: #065f46;
  font-size: 0.86rem;
}

body[data-page="contact"] .contact-side-stack {
  display: grid;
  gap: 0.72rem;
}

body[data-page="contact"] .contact-map-card,
body[data-page="contact"] .contact-hours-card {
  padding: 0.94rem;
}

body[data-page="contact"] .contact-map-card h3 {
  margin: 0.42rem 0 0;
  color: #1f2937;
  font-size: 1.12rem;
}

body[data-page="contact"] .contact-map-card > p:not(.contact-card-kicker) {
  margin: 0.34rem 0 0;
  color: #4b5563;
  font-size: 0.9rem;
}

body[data-page="contact"] .contact-map-wrap {
  margin-top: 0.64rem;
  border-radius: 0.92rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.38);
  min-height: 250px;
}

body[data-page="contact"] .contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 0;
}

body[data-page="contact"] .contact-hours-list {
  list-style: none;
  padding: 0;
  margin: 0.58rem 0 0;
  display: grid;
  gap: 0.42rem;
}

body[data-page="contact"] .contact-hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  border-radius: 0.74rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.56rem 0.66rem;
}

body[data-page="contact"] .contact-hours-list li span {
  color: #475569;
  font-size: 0.86rem;
}

body[data-page="contact"] .contact-hours-list li strong {
  color: #1e293b;
  font-size: 0.88rem;
}

body[data-page="contact"] .contact-hours-note {
  margin-top: 0.62rem;
  border-radius: 0.74rem;
  padding: 0.56rem 0.62rem;
  background: rgba(224, 242, 254, 0.62);
  color: #334155;
  display: flex;
  gap: 0.45rem;
}

body[data-page="contact"] .contact-hours-note p {
  margin: 0;
  font-size: 0.82rem;
}

body[data-page="contact"] .contact-faq-card {
  padding: clamp(0.95rem, 2.1vw, 1.2rem);
}

body[data-page="contact"] .contact-faq-head h2 {
  margin: 0.45rem 0 0;
  color: #1f2937;
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
}

body[data-page="contact"] .contact-faq-list {
  margin-top: 0.78rem;
  display: grid;
  gap: 0.48rem;
}

body[data-page="contact"] .contact-faq-list details {
  border-radius: 0.78rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.62rem 0.68rem;
}

body[data-page="contact"] .contact-faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #334155;
}

body[data-page="contact"] .contact-faq-list details p {
  margin: 0.48rem 0 0;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.56;
}

@media (max-width: 1080px) {
  body[data-page="contact"] .contact-hero-grid,
  body[data-page="contact"] .contact-main-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="contact"] .contact-side-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body[data-page="contact"] .contact-hero-shell,
  body[data-page="contact"] .contact-main-shell,
  body[data-page="contact"] .contact-faq-shell {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  body[data-page="contact"] .contact-metric-grid,
  body[data-page="contact"] .contact-form-grid,
  body[data-page="contact"] .contact-side-stack {
    grid-template-columns: 1fr;
  }

  body[data-page="contact"] .contact-hero-actions .btn-primary,
  body[data-page="contact"] .contact-hero-actions .hero-call-quick {
    width: 100%;
    justify-content: center;
  }

  body[data-page="contact"] .contact-input {
    min-height: 44px;
  }
}

body[data-page="legal"] .legal-hub-shell,
body[data-page="legal-detail"] .legal-doc-shell {
  position: relative;
  z-index: 2;
}

body[data-page="legal"] .legal-hub-shell {
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background:
    radial-gradient(560px 280px at 10% 6%, rgba(82, 39, 120, 0.16), transparent 70%),
    radial-gradient(500px 240px at 96% 100%, rgba(14, 116, 144, 0.1), transparent 70%),
    linear-gradient(158deg, rgba(255, 255, 255, 0.97), rgba(243, 248, 255, 0.9));
  box-shadow: 0 28px 46px -30px rgba(15, 23, 42, 0.38);
  padding: clamp(1rem, 2.3vw, 1.45rem);
}

body[data-page="legal"] .legal-hub-head h1 {
  margin: 0.58rem 0 0;
  color: #5b2a82;
  font-size: clamp(1.24rem, 2vw, 1.64rem);
  font-weight: 800;
  line-height: 1.16;
}

body[data-page="legal"] .legal-hub-head p {
  margin: 0.66rem 0 0;
  color: #475569;
  max-width: none;
  line-height: 1.62;
}

body[data-page="legal"] .legal-hub-kicker {
  margin: 0;
  color: #5b2a82;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body[data-page="legal"] .legal-hub-kicker::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow: 0 0 0 3px rgba(124, 58, 156, 0.14);
}

body[data-page="legal"] .legal-hub-meta {
  margin-top: 0.92rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

body[data-page="legal"] .legal-hub-meta-card {
  border-radius: 0.86rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.66rem 0.74rem;
}

body[data-page="legal"] .legal-hub-meta-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

body[data-page="legal"] .legal-hub-meta-card strong {
  display: block;
  margin-top: 0.26rem;
  color: #1e293b;
  font-size: 0.95rem;
}

body[data-page="legal"] .legal-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.86rem;
}

body[data-page="legal"] .legal-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.12rem;
  border: 1px solid rgba(139, 92, 246, 0.18);
  background:
    radial-gradient(120% 90% at 8% 0%, rgba(148, 46, 135, 0.11), transparent 58%),
    radial-gradient(95% 85% at 100% 100%, rgba(56, 189, 248, 0.1), transparent 64%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.9));
  padding: 1rem;
  box-shadow:
    0 22px 36px -28px rgba(15, 23, 42, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  display: flex;
  flex-direction: column;
  min-height: 198px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body[data-page="legal"] .legal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  pointer-events: none;
}

body[data-page="legal"] .legal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(148, 46, 135, 0.32);
  box-shadow:
    0 30px 46px -30px rgba(15, 23, 42, 0.62),
    0 0 0 1px rgba(148, 46, 135, 0.08);
}

body[data-page="legal"] .legal-card h2 {
  margin: 0;
  color: #1e293b;
  font-size: clamp(1.22rem, 1.65vw, 1.42rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

body[data-page="legal"] .legal-card p {
  margin: 0.58rem 0 0;
  color: #475569;
  line-height: 1.58;
  font-size: 0.96rem;
}

body[data-page="legal"] .legal-card-foot {
  margin-top: auto;
  padding-top: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.62rem;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
}

body[data-page="legal"] .legal-card-foot > span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.36rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: rgba(255, 255, 255, 0.78);
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

body[data-page="legal"] .legal-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  padding: 0.46rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 156, 0.28);
  background: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  color: #5b2a82;
  font-weight: 800;
  font-size: 0.84rem;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

body[data-page="legal"] .legal-card-link:hover {
  color: #3f1f62;
  background: rgba(124, 58, 156, 0.08);
  border-color: rgba(124, 58, 156, 0.44);
  transform: translateX(1px);
}

body[data-page="legal-detail"] .legal-doc-grid {
  display: grid;
  grid-template-columns: 1.45fr minmax(270px, 0.78fr);
  gap: clamp(0.8rem, 2vw, 1.2rem);
}

body[data-page="legal-detail"] .legal-doc-article,
body[data-page="legal-detail"] .legal-doc-toc,
body[data-page="legal-detail"] .legal-doc-related {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(156deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 255, 0.88));
  box-shadow: 0 20px 34px -28px rgba(15, 23, 42, 0.54);
}

body[data-page="legal-detail"] .legal-doc-article {
  padding: clamp(0.96rem, 2.2vw, 1.26rem);
}

body[data-page="legal-detail"] .legal-doc-kicker {
  margin: 0;
  color: #5b2a82;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body[data-page="legal-detail"] .legal-doc-kicker::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow: 0 0 0 3px rgba(124, 58, 156, 0.14);
}

body[data-page="legal-detail"] .legal-doc-article h1 {
  margin: 0.46rem 0 0;
  color: #1f2937;
  font-size: clamp(1.34rem, 2.2vw, 1.92rem);
  font-weight: 800;
  line-height: 1.14;
}

body[data-page="legal-detail"] .legal-doc-updated {
  margin: 0.52rem 0 0;
  color: #6b7280;
  font-size: 0.84rem;
  font-weight: 700;
}

body[data-page="legal-detail"] .legal-doc-excerpt {
  margin: 0.66rem 0 0;
  color: #475569;
  line-height: 1.62;
}

body[data-page="legal-detail"] .legal-doc-content {
  margin-top: 0.92rem;
  display: grid;
  gap: 0.68rem;
}

body[data-page="legal-detail"] .legal-doc-content.seo-rich-content {
  display: block;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

body[data-page="legal-detail"] .legal-doc-section {
  border-radius: 0.84rem;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.72rem 0.78rem;
}

body[data-page="legal-detail"] .legal-doc-section h2 {
  margin: 0;
  color: #334155;
  font-size: 1rem;
}

body[data-page="legal-detail"] .legal-doc-section p {
  margin: 0.44rem 0 0;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.56;
}

body[data-page="legal-detail"] .legal-doc-actions {
  margin-top: 0.82rem;
}

body[data-page="legal-detail"] .legal-doc-aside {
  display: grid;
  gap: 0.72rem;
  align-content: start;
}

body[data-page="legal-detail"] .legal-doc-toc,
body[data-page="legal-detail"] .legal-doc-related {
  padding: 0.86rem;
}

body[data-page="legal-detail"] .legal-doc-toc p {
  margin: 0;
  color: #1f2937;
  font-weight: 800;
}

body[data-page="legal-detail"] .legal-doc-toc ul {
  list-style: none;
  padding: 0;
  margin: 0.58rem 0 0;
  display: grid;
  gap: 0.4rem;
}

body[data-page="legal-detail"] .legal-doc-toc a {
  text-decoration: none;
  color: #475569;
  font-size: 0.86rem;
}

body[data-page="legal-detail"] .legal-doc-toc a:hover {
  color: #5b2a82;
}

body[data-page="legal-detail"] .legal-doc-related div {
  margin-top: 0.58rem;
  display: grid;
  gap: 0.42rem;
}

body[data-page="legal-detail"] .legal-doc-related > p,
body[data-page="legal-detail"] .legal-side-title {
  margin: 0;
  color: #5b2a82;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body[data-page="legal-detail"] .legal-doc-related > p::before,
body[data-page="legal-detail"] .legal-side-title::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow: 0 0 0 3px rgba(124, 58, 156, 0.14);
}

body[data-page="legal-detail"] .legal-doc-related a {
  text-decoration: none;
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.52rem 0.58rem;
  display: grid;
  gap: 0.2rem;
}

body[data-page="legal-detail"] .legal-doc-related strong {
  color: #334155;
  font-size: 0.86rem;
}

body[data-page="legal-detail"] .legal-doc-related span {
  color: #6b7280;
  font-size: 0.76rem;
}

body[data-page="legal-detail"] .legal-share-widget {
  margin-top: 0.68rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 255, 0.9));
  box-shadow: 0 18px 28px -24px rgba(15, 23, 42, 0.44);
  padding: 0.86rem;
}

body[data-page="legal-detail"] .legal-share-links {
  margin-top: 0.58rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

body[data-page="legal-detail"] .legal-share-links a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  border-radius: 0.72rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.82);
  color: #334155;
  font-size: 0.83rem;
  font-weight: 700;
  padding: 0.45rem 0.54rem;
}

body[data-page="legal-detail"] .legal-share-links a:hover {
  border-color: rgba(124, 58, 156, 0.34);
}

body[data-page="legal-detail"] .legal-share-links i {
  color: #5b2a82;
}

@media (max-width: 980px) {
  body[data-page="legal"] .legal-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="legal-detail"] .legal-doc-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="legal-detail"] .legal-share-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body[data-page="legal"] .legal-card-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 1100px) {
  body[data-page="legal"] .legal-hub-head p {
    white-space: nowrap;
  }
}

body[data-page="blog-detail"] .legal-doc-shell {
  position: relative;
  z-index: 2;
}

body[data-page="blog-detail"] .legal-doc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(260px, 0.68fr);
  gap: clamp(0.9rem, 2.2vw, 1.3rem);
  align-items: start;
}

body[data-page="blog-detail"] .legal-doc-article,
body[data-page="blog-detail"] .legal-doc-related {
  border-radius: 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background:
    radial-gradient(500px 220px at 12% 6%, rgba(82, 39, 120, 0.08), transparent 70%),
    linear-gradient(162deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.92));
  box-shadow: 0 24px 40px -30px rgba(15, 23, 42, 0.5);
}

body[data-page="blog-detail"] .legal-doc-article {
  padding: clamp(1rem, 2.3vw, 1.45rem);
}

body[data-page="blog-detail"] .legal-doc-kicker {
  margin: 0;
  color: #5b2a82;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body[data-page="blog-detail"] .legal-doc-kicker::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow: 0 0 0 3px rgba(124, 58, 156, 0.14);
}

body[data-page="blog-detail"] .legal-doc-article h1 {
  margin: 0.46rem 0 0;
  color: #1f2937;
  font-size: clamp(1.34rem, 2.2vw, 1.92rem);
  font-weight: 800;
  line-height: 1.14;
}

body[data-page="blog-detail"] .legal-doc-updated {
  display: none !important;
}

body[data-page="blog-detail"] .blog-detail-meta-row {
  margin-top: 0.52rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

body[data-page="blog-detail"] .blog-detail-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(255, 255, 255, 0.84);
  padding: 0.3rem 0.6rem;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 700;
}

body[data-page="blog-detail"] .blog-detail-meta-row i {
  color: #7c3a9c;
}

body[data-page="blog-detail"] .legal-doc-excerpt {
  margin: 0.58rem 0 0;
  color: #475569;
  line-height: 1.62;
}

body[data-page="blog-detail"] .legal-doc-article .hero-frame {
  margin-top: 0.82rem;
  aspect-ratio: 16 / 8;
  min-height: 210px;
  max-height: 360px;
  border-radius: 0.98rem;
  border: 1px solid rgba(148, 163, 184, 0.32);
  overflow: hidden;
}

body[data-page="blog-detail"] .legal-doc-article .hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="blog-detail"] .legal-doc-content.seo-rich-content {
  margin-top: 0.95rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

body[data-page="blog-detail"] .blog-detail-widget {
  margin-top: 0.9rem;
  border-radius: 0.94rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.8rem 0.9rem;
}

body[data-page="blog-detail"] .blog-detail-widget h2 {
  margin: 0;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 800;
}

body[data-page="blog-detail"] .blog-detail-widget ul {
  margin: 0.56rem 0 0;
  padding-left: 1.1rem;
}

body[data-page="blog-detail"] .blog-detail-widget li {
  color: #475569;
  line-height: 1.58;
}

body[data-page="blog-detail"] .blog-detail-widget li + li {
  margin-top: 0.25rem;
}

body[data-page="blog-detail"] .blog-detail-widget--highlight {
  display: none;
}

body[data-page="blog-detail"] .blog-detail-widget--cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.72rem;
  border-color: rgba(124, 58, 156, 0.34);
  background:
    radial-gradient(280px 140px at 6% 10%, rgba(124, 58, 156, 0.12), transparent 76%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(248, 245, 255, 0.9));
}

body[data-page="blog-detail"] .blog-detail-widget--cta p {
  margin: 0;
  color: #334155;
  line-height: 1.6;
  max-width: 58ch;
}

body[data-page="blog-detail"] .blog-detail-widget--cta .btn-primary {
  white-space: nowrap;
}

body[data-page="blog-detail"] .blog-detail-widget--premium-cta {
  border-color: rgba(124, 58, 156, 0.4);
  background:
    radial-gradient(300px 140px at 10% 6%, rgba(124, 58, 156, 0.16), transparent 76%),
    radial-gradient(260px 120px at 95% 100%, rgba(14, 116, 144, 0.1), transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 255, 0.94));
  box-shadow:
    0 20px 32px -24px rgba(82, 39, 120, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: 1rem 1.02rem;
}

body[data-page="blog-detail"] .blog-detail-widget--premium-cta h3 {
  margin: 0;
  color: #1e1b4b;
  font-size: clamp(1.12rem, 1.55vw, 1.3rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.015em;
  display: inline-block;
  position: relative;
  padding-bottom: 0.42rem;
}

body[data-page="blog-detail"] .blog-detail-widget--premium-cta h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 74px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.9));
}

body[data-page="blog-detail"] .blog-detail-widget--premium-cta p {
  margin: 0.5rem 0 0;
  color: #475569;
  font-size: clamp(0.94rem, 1.08vw, 1rem);
  line-height: 1.7;
  max-width: 54ch;
  text-wrap: pretty;
}

body[data-page="blog-detail"] .blog-detail-premium-actions {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.46rem;
  width: 100%;
}

body[data-page="blog-detail"] .blog-detail-premium-actions > a {
  min-height: 46px;
  width: 100%;
  justify-content: center;
  border-radius: 0.78rem;
}

body[data-page="blog-detail"] .legal-doc-actions {
  margin-top: 1rem;
}

body[data-page="blog-detail"] .legal-doc-aside {
  display: grid;
  align-content: start;
}

body[data-page="blog-detail"] .legal-doc-related {
  position: static;
  padding: 0.96rem;
}

body[data-page="blog-detail"] .legal-doc-related > p {
  margin: 0;
  color: #1f2937;
  font-size: 0.97rem;
  font-weight: 800;
}

body[data-page="blog-detail"] .legal-doc-related div {
  margin-top: 0.64rem;
  display: grid;
  gap: 0.42rem;
}

body[data-page="blog-detail"] .legal-doc-related a {
  text-decoration: none;
  border-radius: 0.76rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.84);
  padding: 0.56rem 0.62rem;
  display: grid;
  gap: 0.2rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body[data-page="blog-detail"] .legal-doc-related a:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 58, 156, 0.34);
  box-shadow: 0 12px 20px -18px rgba(15, 23, 42, 0.62);
}

body[data-page="blog-detail"] .legal-doc-related strong {
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.36;
}

body[data-page="blog-detail"] .legal-doc-related span {
  color: #6b7280;
  font-size: 0.76rem;
  font-weight: 700;
}

body[data-page="blog-detail"] .blog-detail-side-widget {
  margin-top: 0.68rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.82rem;
}

body[data-page="blog-detail"] .blog-detail-side-widget--service h3 {
  margin: 0.56rem 0 0;
  color: #1f2937;
  font-size: 1.06rem;
  line-height: 1.28;
}

body[data-page="blog-detail"] .blog-detail-side-widget--service {
  border-color: rgba(124, 58, 156, 0.34);
  background:
    radial-gradient(280px 120px at 10% 8%, rgba(124, 58, 156, 0.16), transparent 76%),
    linear-gradient(152deg, rgba(255, 255, 255, 0.95), rgba(248, 243, 255, 0.9));
  box-shadow: 0 20px 30px -24px rgba(82, 39, 120, 0.54);
}

body[data-page="blog-detail"] .blog-detail-service-body {
  margin-top: 0.62rem;
}

body[data-page="blog-detail"] .blog-detail-side-widget--service .btn-primary {
  margin-top: 0.62rem;
  width: 100%;
  justify-content: space-between;
  border-radius: 0.76rem;
}

body[data-page="blog-detail"] .blog-detail-service-media {
  margin-top: 0.52rem;
  display: block;
  border-radius: 0.82rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 14px 24px -20px rgba(15, 23, 42, 0.56);
}

body[data-page="blog-detail"] .blog-detail-service-media img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

body[data-page="blog-detail"] .blog-detail-service-media:hover img {
  transform: scale(1.03);
}

body[data-page="blog-detail"] .blog-detail-service-pills {
  margin-top: 0.56rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

body[data-page="blog-detail"] .blog-detail-service-pills span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 156, 0.28);
  background: rgba(255, 255, 255, 0.8);
  color: #5b2a82;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.24rem 0.52rem;
}

body[data-page="blog-detail"] .blog-detail-side-widget--contact {
  background:
    radial-gradient(260px 120px at 10% 8%, rgba(14, 116, 144, 0.12), transparent 74%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(238, 249, 247, 0.9));
}

body[data-page="blog-detail"] .blog-detail-contact-actions {
  margin-top: 0.62rem;
  display: grid;
  gap: 0.42rem;
}

body[data-page="blog-detail"] .blog-detail-contact-actions .btn-primary,
body[data-page="blog-detail"] .blog-detail-contact-actions .hero-call-quick {
  width: 100%;
  justify-content: center;
  border-radius: 0.74rem;
}

body[data-page="blog-detail"] .blog-detail-side-title {
  margin: 0;
  color: #5b2a82;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body[data-page="blog-detail"] .blog-detail-side-title::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow: 0 0 0 3px rgba(124, 58, 156, 0.14);
}

body[data-page="blog-detail"] .legal-doc-related > p {
  margin: 0;
  color: #5b2a82;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body[data-page="blog-detail"] .legal-doc-related > p::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow: 0 0 0 3px rgba(124, 58, 156, 0.14);
}

body[data-page="blog-detail"] .blog-detail-side-text {
  margin: 0.46rem 0 0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.62;
}

body[data-page="blog-detail"] .blog-detail-share-links {
  margin-top: 0.52rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

body[data-page="blog-detail"] .blog-detail-share-links a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border-radius: 0.68rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.76);
  padding: 0.54rem 0.58rem;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 700;
}

body[data-page="blog-detail"] .blog-detail-share-links a:hover {
  border-color: rgba(124, 58, 156, 0.34);
}

body[data-page="blog-detail"] .blog-detail-share-links i {
  color: #7c3a9c;
}

@media (max-width: 1080px) {
  body[data-page="blog-detail"] .legal-doc-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="blog-detail"] .legal-doc-related {
    position: static;
  }

  body[data-page="blog-detail"] .blog-detail-widget--cta {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  body[data-page="blog-detail"] .legal-doc-article {
    padding: 0.9rem;
  }

  body[data-page="blog-detail"] .legal-doc-article h1 {
    font-size: clamp(1.35rem, 6.4vw, 1.8rem);
  }

  body[data-page="blog-detail"] .legal-doc-article .hero-frame {
    min-height: 180px;
    max-height: 260px;
  }

  body[data-page="blog-detail"] .blog-detail-widget--cta .btn-primary {
    width: 100%;
    justify-content: center;
  }

  body[data-page="blog-detail"] .blog-detail-premium-actions {
    grid-template-columns: 1fr;
  }

  body[data-page="blog-detail"] .blog-detail-share-links {
    grid-template-columns: 1fr;
  }
}

@media print {
  body.print-blog-clean .site-header-wrap,
  body.print-blog-clean .site-footer,
  body.print-blog-clean .legal-doc-aside,
  body.print-blog-clean .subpage-hero-section,
  body.print-blog-clean [data-subhero],
  body.print-blog-clean .topbar,
  body.print-blog-clean .search-overlay,
  body.print-blog-clean .appointment-overlay,
  body.print-blog-clean .consent-overlay,
  body.print-blog-clean .skip-link {
    display: none !important;
  }

  body.print-blog-clean {
    background: #ffffff !important;
    overflow: visible !important;
  }

  body.print-blog-clean main,
  body.print-blog-clean .legal-doc-shell,
  body.print-blog-clean .legal-doc-grid,
  body.print-blog-clean .legal-doc-article {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    background: #ffffff !important;
  }

  body.print-blog-clean .legal-doc-grid {
    display: block !important;
    overflow: visible !important;
  }

  body.print-blog-clean .legal-doc-article,
  body.print-blog-clean .legal-doc-content.seo-rich-content {
    overflow: visible !important;
    max-height: none !important;
    break-inside: auto !important;
    page-break-inside: auto !important;
  }

  body.print-blog-clean .legal-doc-kicker {
    color: #5b2a82 !important;
    letter-spacing: 0.09em !important;
  }

  body.print-blog-clean .blog-detail-meta-row {
    margin-top: 8px !important;
    gap: 6px !important;
  }

  body.print-blog-clean .blog-detail-meta-row span {
    border: 1px solid #d1d5db !important;
    background: #ffffff !important;
    color: #374151 !important;
    font-size: 9.2pt !important;
    padding: 3px 8px !important;
  }

  body.print-blog-clean .hero-frame {
    border: 1px solid #d1d5db !important;
    box-shadow: none !important;
    margin-top: 10px !important;
    max-height: none !important;
  }

  body.print-blog-clean .legal-doc-actions,
  body.print-blog-clean .blog-detail-widget {
    display: none !important;
  }

  body.print-blog-clean .legal-doc-content.seo-rich-content p,
  body.print-blog-clean .legal-doc-content.seo-rich-content li {
    color: #111827 !important;
    font-size: 11.5pt !important;
    line-height: 1.65 !important;
  }
}

body[data-page="blog"] .blog-archive-shell {
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background:
    radial-gradient(560px 280px at 10% 6%, rgba(82, 39, 120, 0.16), transparent 70%),
    radial-gradient(500px 240px at 96% 100%, rgba(14, 116, 144, 0.1), transparent 70%),
    linear-gradient(158deg, rgba(255, 255, 255, 0.97), rgba(243, 248, 255, 0.9));
  box-shadow: 0 28px 46px -30px rgba(15, 23, 42, 0.38);
  padding: clamp(1rem, 2.3vw, 1.45rem);
}

body[data-page="blog"] .blog-headline-shell {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

body[data-page="blog"] .blog-headline-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1.05rem;
}

body[data-page="blog"] .blog-headline-track {
  width: 100%;
  align-items: stretch;
}

body[data-page="blog"] .blog-headline-item {
  flex: 0 0 100%;
  width: 100%;
  padding: 0.28rem;
  max-width: 100%;
  overflow: hidden;
}

body[data-page="blog"] .blog-headline-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  height: 284px;
  width: 100%;
  max-width: 100%;
  border-radius: 1.05rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  overflow: hidden;
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.92));
  box-shadow: 0 24px 42px -30px rgba(15, 23, 42, 0.5);
}

body[data-page="blog"] .blog-headline-media {
  display: block;
  height: 100%;
  min-width: 0;
  overflow: hidden;
}

body[data-page="blog"] .blog-headline-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body[data-page="blog"] .blog-headline-copy {
  padding: clamp(1.14rem, 2.2vw, 1.52rem);
  display: grid;
  align-content: center;
  gap: 0.66rem;
  min-width: 0;
}

body[data-page="blog"] .blog-headline-kicker {
  margin: 0;
  color: #5b2a82;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body[data-page="blog"] .blog-headline-kicker::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow: 0 0 0 3px rgba(124, 58, 156, 0.14);
}

body[data-page="blog"] .home-blog-kicker {
  margin: 0;
  color: #5b2a82;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body[data-page="blog"] .home-blog-kicker::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow: 0 0 0 3px rgba(124, 58, 156, 0.14);
}

body[data-page="blog"] .blog-headline-date {
  margin: -0.25rem 0 0.1rem;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

body[data-page="home"] .about-hub-kicker,
body[data-page="home"] .before-after-kicker,
body[data-page="home"] .home-blog-kicker {
  margin: 0;
  color: #5b2a82;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-bottom: 0;
}

body[data-page="home"] .about-hub-kicker::after {
  display: none;
}

body[data-page="home"] .about-hub-kicker::before,
body[data-page="home"] .before-after-kicker::before,
body[data-page="home"] .home-blog-kicker::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow: 0 0 0 3px rgba(124, 58, 156, 0.14);
}

body[data-page="home"] .social-trio-kicker {
  margin: 0;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body[data-page="home"] .social-trio-kicker::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}

body[data-page="blog"] .blog-headline-copy h1,
body[data-page="blog"] .blog-headline-copy h2 {
  margin: 0;
  color: #1f2937;
  font-size: clamp(1.08rem, 1.8vw, 1.55rem);
  font-weight: 800;
  line-height: 1.15;
}

body[data-page="blog"] .blog-headline-copy p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

body[data-page="blog"] .blog-headline-copy .btn-primary {
  width: fit-content;
}

body[data-page="blog"] .blog-headline-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.4rem;
  height: 2.4rem;
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(15, 23, 42, 0.58);
  color: #ffffff;
}

body[data-page="service-category"] .service-lp-shell {
  position: relative;
  z-index: 2;
}

body[data-page="service-category"] .service-lp-section {
  border-radius: 1.22rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background:
    radial-gradient(680px 300px at 10% 0%, rgba(82, 39, 120, 0.12), transparent 68%),
    radial-gradient(560px 260px at 92% 100%, rgba(14, 116, 144, 0.1), transparent 70%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(245, 249, 255, 0.9));
  box-shadow: 0 26px 42px -32px rgba(15, 23, 42, 0.54);
  padding: clamp(1rem, 2.2vw, 1.5rem);
}

body[data-page="service-category"] .service-lp-kicker {
  margin: 0;
  color: #5b2a82;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body[data-page="service-category"] .service-lp-kicker::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow: 0 0 0 3px rgba(124, 58, 156, 0.14);
}

body[data-page="service-category"] .service-lp-head {
  display: grid;
  gap: 0.52rem;
}

body[data-page="service-category"] .service-lp-head h2 {
  margin: 0;
  color: #1f2937;
  font-size: clamp(1.36rem, 2.25vw, 1.9rem);
  font-weight: 800;
  line-height: 1.14;
}

body[data-page="service-category"] .service-lp-head p {
  margin: 0;
  color: #475569;
  line-height: 1.62;
}

body[data-page="service-category"] .service-lp-intro-grid {
  margin-top: 0.84rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 0.82rem;
}

body[data-page="service-category"] .service-lp-intro-media {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  min-height: 280px;
  box-shadow: 0 20px 34px -28px rgba(15, 23, 42, 0.46);
}

body[data-page="service-category"] .service-lp-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body[data-page="service-category"] .service-lp-trust {
  display: grid;
  gap: 0.62rem;
}

body[data-page="service-category"] .service-lp-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.56rem;
}

body[data-page="service-category"] .service-lp-trust-card {
  border-radius: 0.86rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.64rem;
}

body[data-page="service-category"] .service-lp-trust-card strong {
  display: block;
  color: #1e293b;
  font-size: 1rem;
}

body[data-page="service-category"] .service-lp-trust-card span {
  display: block;
  margin-top: 0.22rem;
  color: #64748b;
  font-size: 0.8rem;
}

body[data-page="service-category"] .service-lp-process {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.56rem;
}

body[data-page="service-category"] .service-lp-step {
  border-radius: 0.82rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.56rem;
}

body[data-page="service-category"] .service-lp-step em {
  font-style: normal;
  font-size: 0.73rem;
  font-weight: 800;
  color: #7c3a9c;
  letter-spacing: 0.08em;
}

body[data-page="service-category"] .service-lp-step p {
  margin: 0.28rem 0 0;
  color: #334155;
  font-size: 0.86rem;
  line-height: 1.45;
}

body[data-page="service-category"] .service-lp-intro-premium-section {
  overflow: hidden;
  background:
    radial-gradient(760px 320px at 0% 0%, rgba(82, 39, 120, 0.16), transparent 64%),
    radial-gradient(620px 280px at 100% 100%, rgba(14, 116, 144, 0.13), transparent 68%),
    linear-gradient(156deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.92));
}

body[data-page="service-category"] .service-lp-intro-premium {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  gap: 1.2rem;
  align-items: stretch;
}

body[data-page="service-category"] .service-lp-intro-premium-content {
  display: grid;
  align-content: start;
  gap: 0.72rem;
}

body[data-page="service-category"] .service-lp-intro-premium-content h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.22rem, 2vw, 1.84rem);
  font-weight: 700;
  line-height: 1.16;
  max-width: none;
  width: 100%;
}

body[data-page="service-category"] .service-lp-intro-premium-content > p {
  margin: 0;
  color: #475569;
  line-height: 1.66;
  max-width: none;
  width: 100%;
}

body[data-page="service-category"] .service-lp-intro-premium-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body[data-page="service-category"] .service-lp-intro-premium-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 156, 0.2);
  background: rgba(255, 255, 255, 0.74);
  color: #4c1d95;
  font-size: 0.8rem;
  font-weight: 700;
}

body[data-page="service-category"] .service-lp-intro-premium-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  max-width: 560px;
}

body[data-page="service-category"] .service-lp-intro-premium-actions .btn-primary,
body[data-page="service-category"] .service-lp-intro-premium-actions .hero-call-quick {
  width: 100%;
  justify-content: center;
}

body[data-page="service-category"] .service-lp-intro-premium-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.44rem;
  margin-top: -0.06rem;
  color: #5b2a82;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

body[data-page="service-category"] .service-lp-intro-premium-link:hover {
  color: #4c1d95;
}

body[data-page="service-category"] .service-lp-intro-premium-steps {
  margin-top: 0.18rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body[data-page="service-category"] .service-lp-intro-premium-steps article {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.68);
  padding: 0.42rem 0.66rem;
}

body[data-page="service-category"] .service-lp-intro-premium-steps em {
  display: inline-flex;
  font-style: normal;
  color: #7c3a9c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

body[data-page="service-category"] .service-lp-intro-premium-steps p {
  margin: 0;
  color: #334155;
  font-size: 0.82rem;
  line-height: 1.3;
}

body[data-page="service-category"] .service-lp-intro-premium-visual {
  position: relative;
  min-height: 0;
  height: 100%;
}

body[data-page="service-category"] .service-lp-intro-premium-media {
  position: relative;
  isolation: isolate;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  height: 100%;
  min-height: 0;
  box-shadow: 0 28px 38px -30px rgba(15, 23, 42, 0.62);
}

body[data-page="service-category"] .service-lp-intro-premium-image,
body[data-page="service-category"] .service-lp-intro-premium-video,
body[data-page="service-category"] .service-lp-intro-premium-youtube {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body[data-page="service-category"] .service-lp-intro-premium-youtube {
  pointer-events: none;
  border: 0;
  width: 150%;
  max-width: none;
  left: 50%;
  transform: translateX(-50%);
}

body[data-page="service-category"] .service-lp-intro-premium-media.is-shorts .service-lp-intro-premium-youtube {
  width: 280%;
  height: 280%;
  max-width: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

body[data-page="service-category"] .service-lp-intro-premium-media-filter {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(132deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.46)),
    radial-gradient(600px 320px at 86% 10%, rgba(124, 58, 156, 0.2), transparent 70%);
  pointer-events: none;
}

body[data-page="service-category"] .service-lp-intro-video-play {
  position: absolute;
  left: 0.72rem;
  bottom: 0.72rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(15, 23, 42, 0.5);
  color: #ffffff;
  padding: 0.56rem 0.86rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

body[data-page="service-category"] .service-lp-intro-video-play:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 0.66);
  border-color: rgba(255, 255, 255, 0.66);
}

body[data-page="service-category"] .service-lp-intro-video-play.is-hidden {
  display: none;
}

body[data-page="service-category"] .service-lp-intro-premium-float {
  position: absolute;
  border-radius: 0.84rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: linear-gradient(160deg, rgba(82, 39, 120, 0.86), rgba(148, 46, 135, 0.8));
  color: #fff;
  padding: 0.52rem 0.66rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 26px -22px rgba(82, 39, 120, 0.86);
}

body[data-page="service-category"] .service-lp-intro-premium-float strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
}

body[data-page="service-category"] .service-lp-intro-premium-float span {
  display: block;
  margin-top: 0.06rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.9);
}

body[data-page="service-category"] .service-lp-intro-premium-float--top {
  top: 0.8rem;
  right: -0.4rem;
}

body[data-page="service-category"] .service-lp-intro-premium-float--middle {
  top: 44%;
  left: -0.48rem;
}

body[data-page="service-category"] .service-lp-intro-premium-float--bottom {
  bottom: 0.8rem;
  right: 0.6rem;
}

body[data-page="service-category"] .service-lp-device-grid {
  margin-top: 0.76rem;
  display: grid;
  gap: 0.74rem;
}

body[data-page="service-category"] .service-lp-device {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(156deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.88));
  box-shadow: 0 20px 34px -30px rgba(15, 23, 42, 0.5);
  padding: 0.86rem;
  display: grid;
  gap: 0.66rem;
}

body[data-page="service-category"] .service-lp-device--split {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

body[data-page="service-category"] .service-lp-device--stack {
  grid-template-columns: 1fr;
}

body[data-page="service-category"] .service-lp-device--panel {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

body[data-page="service-category"] .service-lp-device-media {
  border-radius: 0.82rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  min-height: 190px;
}

body[data-page="service-category"] .service-lp-device-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body[data-page="service-category"] .service-lp-device h3 {
  margin: 0;
  color: #1f2937;
  font-size: clamp(1.14rem, 1.7vw, 1.4rem);
  font-weight: 800;
}

body[data-page="service-category"] .service-lp-device p {
  margin: 0.32rem 0 0;
  color: #475569;
  line-height: 1.58;
}

body[data-page="service-category"] .service-lp-device ul {
  margin: 0.44rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.26rem;
}

body[data-page="service-category"] .service-lp-device li {
  color: #334155;
  font-size: 0.88rem;
  display: inline-flex;
  gap: 0.42rem;
  align-items: flex-start;
}

body[data-page="service-category"] .service-lp-device li::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  margin-top: 0.22rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.94), rgba(148, 46, 135, 0.9));
}

body[data-page="service-category"] .service-lp-diode-diff {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.4);
  background:
    radial-gradient(460px 220px at 14% 12%, rgba(148, 46, 135, 0.24), transparent 72%),
    radial-gradient(380px 200px at 92% 100%, rgba(82, 39, 120, 0.22), transparent 68%),
    linear-gradient(135deg, rgba(82, 39, 120, 0.84), rgba(30, 41, 59, 0.72));
  box-shadow: 0 14px 26px -18px rgba(2, 6, 23, 0.52);
}

body[data-page="service-category"] .service-lp-diode-diff::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

body[data-page="service-category"] .service-lp-diode-diff-inner {
  position: relative;
  z-index: 1;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(142deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(203, 220, 255, 0.08), rgba(255, 255, 255, 0));
  backdrop-filter: blur(12px) saturate(118%);
  -webkit-backdrop-filter: blur(12px) saturate(118%);
  padding: 1.04rem 1.08rem;
}

body[data-page="service-category"] .service-lp-diode-diff .service-lp-head h2,
body[data-page="service-category"] .service-lp-diode-diff .service-lp-head p {
  color: rgba(255, 255, 255, 0.97);
}

body[data-page="service-category"] .service-lp-diode-diff-grid {
  margin-top: 0.82rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

body[data-page="service-category"] .service-lp-diode-diff-grid article {
  border-radius: 0.94rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  padding: 0.82rem 0.84rem;
}

body[data-page="service-category"] .service-lp-diode-diff-grid h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.98);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

body[data-page="service-category"] .service-lp-diode-diff-grid h3 i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

body[data-page="service-category"] .service-lp-diode-diff-grid p {
  margin: 0.42rem 0 0;
  color: rgba(241, 245, 255, 0.92);
  line-height: 1.56;
  font-size: 0.87rem;
}

body[data-page="service-category"] .service-lp-device-premium {
  margin-top: 0.94rem;
  display: grid;
  gap: 0.92rem;
}

body[data-page="service-category"] .service-lp-device-spotlight {
  border-radius: 1.08rem;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background:
    radial-gradient(620px 260px at 92% 0%, rgba(148, 46, 135, 0.15), transparent 68%),
    radial-gradient(520px 220px at 2% 100%, rgba(82, 39, 120, 0.14), transparent 72%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.92));
  box-shadow: 0 28px 44px -38px rgba(15, 23, 42, 0.5);
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: 0.9rem;
}

body[data-page="service-category"] .service-lp-device-visual {
  margin: 0;
  position: relative;
  border-radius: 0.96rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background:
    radial-gradient(300px 160px at 76% 14%, rgba(255, 255, 255, 0.6), transparent 72%),
    linear-gradient(165deg, rgba(237, 242, 249, 0.88), rgba(229, 235, 245, 0.74));
  overflow: hidden;
  height: 100%;
  min-height: 0;
  padding-bottom: 4.4rem;
  display: grid;
}

body[data-page="service-category"] .service-lp-device-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.2rem;
}

body[data-page="service-category"] .service-lp-device-visual figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(180deg, rgba(251, 253, 255, 0.74), rgba(244, 248, 255, 0.96));
  padding: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.52rem;
}

body[data-page="service-category"] .service-lp-device-visual figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #334155;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(82, 39, 120, 0.2);
  background: rgba(255, 255, 255, 0.86);
  padding: 0.34rem 0.62rem;
}

body[data-page="service-category"] .service-lp-device-visual figcaption i {
  color: #6d3a99;
}

body[data-page="service-category"] .service-lp-device-content {
  display: grid;
  align-content: start;
  gap: 0.66rem;
}

body[data-page="service-category"] .service-lp-device-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(82, 39, 120, 0.28);
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.1), rgba(148, 46, 135, 0.08));
  color: #5b2d86;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.34rem 0.72rem;
}

body[data-page="service-category"] .service-lp-device-content h3 {
  margin: 0;
  color: #132034;
  font-size: clamp(1.28rem, 2.1vw, 1.86rem);
  font-weight: 800;
  line-height: 1.18;
}

body[data-page="service-category"] .service-lp-device-content p {
  margin: 0;
  color: #43556d;
  line-height: 1.64;
  font-size: 0.97rem;
}

body[data-page="service-category"] .service-lp-device-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

body[data-page="service-category"] .service-lp-device-chip-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: rgba(255, 255, 255, 0.84);
  padding: 0.34rem 0.62rem;
  color: #2f4158;
  font-size: 0.8rem;
  font-weight: 700;
}

body[data-page="service-category"] .service-lp-device-chip-row i {
  color: #6d3a99;
}

body[data-page="service-category"] .service-lp-device-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.54rem;
}

body[data-page="service-category"] .service-lp-device-proof-grid article {
  border-radius: 0.84rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.86));
  padding: 0.62rem 0.68rem;
  display: grid;
  gap: 0.2rem;
}

body[data-page="service-category"] .service-lp-device-proof-grid strong {
  color: #1f2937;
  font-size: 0.88rem;
  font-weight: 800;
}

body[data-page="service-category"] .service-lp-device-proof-grid span {
  color: #52647b;
  line-height: 1.5;
  font-size: 0.79rem;
}

body[data-page="service-category"] .service-lp-device-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

body[data-page="service-category"] .service-lp-device-benefits article {
  border-radius: 0.96rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background:
    radial-gradient(220px 120px at 95% 0%, rgba(82, 39, 120, 0.1), transparent 68%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 255, 0.9));
  padding: 0.8rem;
  display: grid;
  align-content: start;
  gap: 0.38rem;
}

body[data-page="service-category"] .service-lp-device-benefits i {
  width: 1.84rem;
  height: 1.84rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.86rem;
  color: #fff;
  background: linear-gradient(140deg, rgba(82, 39, 120, 0.94), rgba(148, 46, 135, 0.9));
  box-shadow: 0 12px 18px -14px rgba(82, 39, 120, 0.74);
}

body[data-page="service-category"] .service-lp-device-benefits h4 {
  margin: 0;
  color: #1f2c3d;
  font-size: 1.02rem;
  font-weight: 800;
}

body[data-page="service-category"] .service-lp-device-benefits p {
  margin: 0;
  color: #52647b;
  font-size: 0.89rem;
  line-height: 1.55;
}

body[data-page="service-category"] .service-lp-type-grid {
  margin-top: 0.92rem;
  display: grid;
  gap: 1rem;
}

body[data-page="service-category"] .service-lp-type-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.14rem;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background:
    radial-gradient(620px 220px at 0% 0%, rgba(124, 58, 156, 0.14), transparent 66%),
    linear-gradient(156deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.92));
  box-shadow: 0 28px 42px -34px rgba(15, 23, 42, 0.54);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: stretch;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

body[data-page="service-category"] .service-lp-type-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(128deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

body[data-page="service-category"] .service-lp-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 46px -32px rgba(15, 23, 42, 0.56);
  border-color: rgba(124, 58, 156, 0.4);
}

body[data-page="service-category"] .service-lp-type-card--ipl {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

body[data-page="service-category"] .service-lp-type-card--ipl .service-lp-type-media {
  order: 2;
}

body[data-page="service-category"] .service-lp-type-media {
  position: relative;
  margin: 0;
  min-height: 0;
  border-right: 1px solid rgba(148, 163, 184, 0.24);
  overflow: hidden;
}

body[data-page="service-category"] .service-lp-type-media.is-detail-link {
  cursor: pointer;
}

body[data-page="service-category"] .service-lp-type-card--ipl .service-lp-type-media {
  border-right: 0;
  border-left: 1px solid rgba(148, 163, 184, 0.24);
}

body[data-page="service-category"] .service-lp-type-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body[data-page="service-category"] .service-lp-type-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.03), rgba(15, 23, 42, 0.42));
}

body[data-page="service-category"] .service-lp-type-media figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  z-index: 2;
  margin: 0;
  color: #f8fafc;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

body[data-page="service-category"] .service-lp-type-body {
  position: relative;
  z-index: 1;
  padding: clamp(0.9rem, 1.8vw, 1.2rem);
  display: grid;
  gap: 0.66rem;
  align-content: center;
}

body[data-page="service-category"] .service-lp-type-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
}

body[data-page="service-category"] .service-lp-type-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 156, 0.24);
  padding: 0.34rem 0.64rem;
  color: #5b2a82;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body[data-page="service-category"] .service-lp-type-body h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.24rem, 1.88vw, 1.62rem);
  font-weight: 800;
  line-height: 1.2;
}

body[data-page="service-category"] .service-lp-type-body h3.is-detail-link {
  cursor: pointer;
}

body[data-page="service-category"] .service-lp-type-body h3.is-detail-link:hover {
  color: #4c1d95;
}

body[data-page="service-category"] .service-lp-type-body p {
  margin: 0;
  color: #475569;
  line-height: 1.64;
}

body[data-page="service-category"] .service-lp-type-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

body[data-page="service-category"] .service-lp-type-body li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.5rem;
  color: #334155;
  font-size: 0.91rem;
}

body[data-page="service-category"] .service-lp-type-body li i {
  color: #7c3a9c;
  margin-top: 0.12rem;
}

body[data-page="service-category"] .service-lp-type-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem;
}

body[data-page="service-category"] .service-lp-type-metrics span {
  border-radius: 0.76rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.76);
  padding: 0.52rem 0.58rem;
  color: #475569;
  font-size: 0.8rem;
}

body[data-page="service-category"] .service-lp-type-metrics strong {
  display: block;
  color: #1f2937;
  font-size: 0.86rem;
  font-weight: 800;
}

body[data-page="service-category"] .service-lp-type-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.52rem;
}

body[data-page="service-category"] .service-lp-type-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.46rem;
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(82, 39, 120, 0.34);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(241, 232, 251, 0.72));
  color: #4c1d95;
  padding: 0.72rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body[data-page="service-category"] .service-lp-type-detail:hover {
  transform: translateY(-2px);
  border-color: rgba(82, 39, 120, 0.56);
  box-shadow: 0 16px 24px -18px rgba(82, 39, 120, 0.62);
}

body[data-page="service-category"] .service-lp-type-actions .btn-primary,
body[data-page="service-category"] .service-lp-type-actions .hero-call-quick {
  width: 100%;
  justify-content: center;
}

body[data-page="service-category"] .service-area-section {
  position: relative;
  overflow: hidden;
}

body[data-page="service-category"] .service-area-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(500px 220px at 100% 0%, rgba(82, 39, 120, 0.08), transparent 72%),
    radial-gradient(420px 180px at 0% 100%, rgba(14, 116, 144, 0.08), transparent 70%);
}

body[data-page="service-category"] .service-area-tabs {
  margin-top: 0.86rem;
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.26rem;
  position: relative;
  z-index: 1;
}

body[data-page="service-category"] .service-area-tab {
  border: 0;
  border-radius: 999px;
  padding: 0.56rem 1.1rem;
  font-size: 0.86rem;
  font-weight: 800;
  color: #475569;
  background: transparent;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

body[data-page="service-category"] .service-area-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow: 0 14px 24px -16px rgba(82, 39, 120, 0.64);
}

body[data-page="service-category"] .service-area-panel {
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
}

body[data-page="service-category"] .service-area-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.64rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.34rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  touch-action: pan-x;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body[data-page="service-category"] .service-area-grid.is-dragging {
  cursor: grabbing;
}

body[data-page="service-category"] .service-area-card {
  flex: 0 0 calc((100% - (5 * 0.64rem)) / 6);
  min-height: 180px;
  border-radius: 0.88rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(241, 232, 251, 0.78)),
    radial-gradient(240px 120px at 0% 0%, rgba(82, 39, 120, 0.1), transparent 78%);
  box-shadow: 0 16px 28px -22px rgba(15, 23, 42, 0.46);
  color: #1f2937;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  padding: 0.44rem;
  text-decoration: none;
  scroll-snap-align: start;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, color 240ms ease;
}

body[data-page="service-category"] .service-area-card,
body[data-page="service-category"] .service-area-card * {
  user-select: none;
}

body[data-page="service-category"] .service-area-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.62rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.8);
}

body[data-page="service-category"] .service-area-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

body[data-page="service-category"] .service-area-card-title {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.24;
  color: #334155;
}

body[data-page="service-category"] .service-area-card i {
  margin-top: auto;
  align-self: flex-end;
  width: 1.56rem;
  height: 1.56rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 156, 0.28);
  background: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  color: #7c3a9c;
  opacity: 0.84;
}

body[data-page="service-category"] .service-area-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 156, 0.42);
  box-shadow: 0 24px 32px -24px rgba(82, 39, 120, 0.5);
  color: #4c1d95;
}

body[data-page="service-category"] .service-area-grid::-webkit-scrollbar {
  display: none;
}

body[data-page="service-category"] .service-area-scroll-controls {
  margin-top: 0.44rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.52rem;
}

body[data-page="service-category"] .service-area-scroll-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 156, 0.34);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(241, 232, 251, 0.84));
  color: #5b2a82;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body[data-page="service-category"] .service-area-scroll-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 58, 156, 0.5);
  box-shadow: 0 12px 20px -16px rgba(82, 39, 120, 0.56);
}

body[data-page="service-category"] .service-area-scroll-track {
  position: relative;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.22);
  overflow: hidden;
}

body[data-page="service-category"] .service-area-scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 26%;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.78), rgba(148, 46, 135, 0.72));
  box-shadow: 0 8px 14px -12px rgba(82, 39, 120, 0.72);
}

body[data-page="service-category"] .service-lp-ba-grid {
  margin-top: 0.78rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.64rem;
}

body[data-page="service-category"] .service-lp-ba-card {
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
}

body[data-page="service-category"] .service-lp-ba-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="service-category"] .service-lp-ba-compare img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

body[data-page="service-category"] .service-lp-ba-meta {
  padding: 0.58rem 0.66rem;
  display: flex;
  justify-content: space-between;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 700;
}

body[data-page="service-category"] .service-lp-gallery-grid {
  margin-top: 0.78rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.6rem;
}

body[data-page="service-category"] .service-lp-gallery-item {
  border-radius: 0.88rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  min-height: 180px;
}

body[data-page="service-category"] .service-lp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body[data-page="service-category"] .service-lp-gallery-item--lg {
  grid-column: span 7;
}

body[data-page="service-category"] .service-lp-gallery-item--md {
  grid-column: span 5;
}

body[data-page="service-category"] .service-lp-gallery-item--sm {
  grid-column: span 4;
}

body[data-page="service-category"] .service-gallery-carousel {
  margin-top: 0.82rem;
}

body[data-page="service-category"] .service-gallery-viewport {
  overflow: hidden;
  border-radius: 1rem;
  cursor: grab;
  user-select: none;
}

body[data-page="service-category"] .service-gallery-viewport.is-dragging {
  cursor: grabbing;
}

body[data-page="service-category"] .service-gallery-track {
  display: flex;
  gap: 0.72rem;
  transition: transform 0.42s ease;
  will-change: transform;
}

body[data-page="service-category"] .service-gallery-slide {
  flex: 0 0 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.34);
  padding: 0;
  background: transparent;
  height: 190px;
  min-height: 190px;
}

body[data-page="service-category"] .service-gallery-slide img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  object-position: center;
  display: block;
}

body[data-page="service-category"] .service-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 1rem;
}

body[data-page="service-category"] .service-gallery-lightbox.hidden {
  display: none;
}

body[data-page="service-category"] .service-gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(4px);
}

body[data-page="service-category"] .service-gallery-lightbox-panel {
  position: relative;
  width: min(980px, 100%);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 15, 30, 0.82);
  padding: 0.75rem;
  box-shadow: 0 24px 48px rgba(2, 6, 23, 0.46);
}

body[data-page="service-category"] .service-gallery-lightbox-close {
  position: absolute;
  top: 0.66rem;
  right: 0.66rem;
  z-index: 2;
}

body[data-page="service-category"] .service-gallery-lightbox-panel figure {
  margin: 0;
}

body[data-page="service-category"] .service-gallery-lightbox-panel img {
  width: 100%;
  max-height: min(78vh, 820px);
  border-radius: 0.84rem;
  object-fit: contain;
  background: rgba(2, 6, 23, 0.45);
}

body[data-page="service-category"] .service-gallery-lightbox-panel figcaption {
  margin-top: 0.62rem;
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

body[data-page="service-category"] .service-intro-video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 111;
  display: grid;
  place-items: center;
  padding: 1rem;
}

body[data-page="service-category"] .service-intro-video-lightbox.hidden {
  display: none;
}

body[data-page="service-category"] .service-intro-video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(5px);
}

body[data-page="service-category"] .service-intro-video-lightbox-panel {
  position: relative;
  width: min(1100px, 100%);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 15, 30, 0.88);
  padding: 0.75rem;
  box-shadow: 0 28px 48px rgba(2, 6, 23, 0.5);
}

body[data-page="service-category"] .service-intro-video-lightbox-close {
  position: absolute;
  top: 0.66rem;
  right: 0.66rem;
  z-index: 2;
}

body[data-page="service-category"] .service-intro-video-lightbox-panel video {
  width: 100%;
  max-height: min(82vh, 820px);
  border-radius: 0.8rem;
  background: rgba(2, 6, 23, 0.62);
}

body[data-page="service-category"] .service-intro-video-lightbox-panel iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(82vh, 820px);
  border: 0;
  border-radius: 0.8rem;
  background: rgba(2, 6, 23, 0.62);
}

body[data-page="service-category"] .service-intro-video-lightbox.is-shorts .service-intro-video-lightbox-panel {
  width: min(560px, 96vw);
}

body[data-page="service-category"] .service-intro-video-lightbox.is-shorts .service-intro-video-lightbox-panel iframe {
  width: min(460px, 92vw);
  aspect-ratio: 9 / 16;
  margin-inline: auto;
  display: block;
}

body[data-page="service-category"] .service-lp-reviews-grid {
  margin-top: 0.76rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

body[data-page="service-category"] .service-lp-review {
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.84);
  padding: 0.72rem;
}

body[data-page="service-category"] .service-lp-review p {
  margin: 0;
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.6;
}

body[data-page="service-category"] .service-lp-review span {
  display: block;
  margin-top: 0.46rem;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

body[data-page="service-category"] .service-lp-faq-list {
  margin-top: 0.76rem;
  display: grid;
  gap: 0.5rem;
}

body[data-page="service-category"] .service-lp-faq-list details {
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.84);
  padding: 0.62rem 0.72rem;
}

body[data-page="service-category"] .service-lp-faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #1f2937;
}

body[data-page="service-category"] .service-lp-faq-list p {
  margin: 0.44rem 0 0;
  color: #475569;
  line-height: 1.56;
}

body[data-page="service-category"] .service-lp-cta {
  background:
    radial-gradient(500px 240px at 0% 0%, rgba(255, 255, 255, 0.14), transparent 64%),
    linear-gradient(140deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  border-color: rgba(255, 255, 255, 0.3);
}

body[data-page="service-category"] .service-lp-cta .service-lp-kicker,
body[data-page="service-category"] .service-lp-cta h2,
body[data-page="service-category"] .service-lp-cta p {
  color: #ffffff;
}

body[data-page="service-category"] .service-lp-cta .service-lp-kicker::before {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}

body[data-page="service-category"] .service-lp-cta-actions {
  margin-top: 0.78rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.56rem;
}

body[data-page="service-category"] .service-lp-cta-actions .btn-primary,
body[data-page="service-category"] .service-lp-cta-actions .hero-call-quick {
  width: 100%;
  justify-content: center;
}

body[data-page="service-category"] .service-lp-cta--epilation {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(420px 200px at 8% 18%, rgba(148, 46, 135, 0.22), transparent 70%),
    linear-gradient(135deg, rgba(82, 39, 120, 0.82), rgba(30, 41, 59, 0.72));
  backdrop-filter: blur(14px) saturate(1.22);
  -webkit-backdrop-filter: blur(14px) saturate(1.22);
  box-shadow: 0 14px 26px -18px rgba(2, 6, 23, 0.5);
  margin-top: 1.28rem;
}

body[data-page="service-category"] .service-lp-cta--epilation::before,
body[data-page="service-category"] .service-lp-cta--epilation::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body[data-page="service-category"] .service-lp-cta--epilation::before {
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02));
}

body[data-page="service-category"] .service-lp-cta--epilation::after {
  width: 340px;
  height: 220px;
  right: -80px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

body[data-page="service-category"] .service-lp-cta--epilation .service-lp-cta-inner {
  position: relative;
  z-index: 1;
  border-radius: 1.24rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(142deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(203, 220, 255, 0.08), rgba(255, 255, 255, 0));
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  padding: 1.06rem 1.08rem;
}

body[data-page="service-category"] .service-lp-cta--epilation .service-lp-head h2 {
  max-width: 900px;
}

body[data-page="service-category"] .service-lp-cta--epilation .service-lp-cta-highlights {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

body[data-page="service-category"] .service-lp-cta--epilation .service-lp-cta-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

body[data-page="service-category"] .service-lp-cta--epilation .service-lp-cta-highlights i {
  font-size: 0.78rem;
}

body[data-page="service-category"] .service-lp-cta--epilation .service-lp-cta-actions {
  margin-top: 0.84rem;
}

body[data-page="service-category"] .service-lp-cta--epilation .service-lp-cta-actions .btn-primary,
body[data-page="service-category"] .service-lp-cta--epilation .service-lp-cta-actions .hero-call-quick {
  min-height: 3.22rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-weight: 700;
}

body[data-page="service-category"] .service-lp-cta--epilation .service-lp-cta-actions .btn-primary {
  background: linear-gradient(135deg, rgba(70, 43, 149, 0.94), rgba(96, 61, 177, 0.9));
  box-shadow: 0 14px 24px rgba(33, 26, 97, 0.34);
}

body[data-page="service-category"] .service-lp-cta--epilation .service-lp-cta-actions .hero-call-quick--whatsapp {
  box-shadow: 0 10px 20px rgba(12, 113, 69, 0.24);
}

body[data-page="service-category"] .service-lp-cta--epilation .service-lp-cta-actions .hero-call-quick--phone {
  box-shadow: 0 10px 20px rgba(49, 68, 140, 0.2);
}

body[data-page="service-category"] .service-lp-cta--epilation .service-lp-cta-note {
  margin: 0.66rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.83rem;
  line-height: 1.5;
}

body[data-page="service-category"] .service-lp-gap {
  margin-top: 2rem;
}

body[data-page="service-category"] .service-lp-cta--epilation.service-lp-gap {
  margin-top: 2.6rem;
}

@media (min-width: 768px) and (max-width: 1179px) {
  body[data-page="service-category"] .service-gallery-slide {
    flex-basis: calc((100% - 0.72rem) / 2);
  }
}

@media (min-width: 1180px) {
  body[data-page="service-category"] .service-gallery-slide {
    flex-basis: calc((100% - 1.44rem) / 3);
    height: 172px;
    min-height: 172px;
  }
}

@media (max-width: 1080px) {
  body[data-page="service-category"] .service-lp-intro-grid,
  body[data-page="service-category"] .service-lp-intro-premium,
  body[data-page="service-category"] .service-lp-device-spotlight,
  body[data-page="service-category"] .service-lp-device--split,
  body[data-page="service-category"] .service-lp-device--panel,
  body[data-page="service-category"] .service-lp-type-card,
  body[data-page="service-category"] .service-lp-type-card--ipl,
  body[data-page="service-category"] .service-lp-reviews-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="service-category"] .service-lp-type-card--ipl .service-lp-type-media {
    order: 0;
    border-left: 0;
    border-right: 1px solid rgba(148, 163, 184, 0.24);
  }

  body[data-page="service-category"] .service-lp-type-media {
    min-height: 220px;
  }

  body[data-page="service-category"] .service-lp-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="service-category"] .service-lp-intro-premium-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  body[data-page="service-category"] .service-lp-intro-premium-float {
    position: static;
  }

  body[data-page="service-category"] .service-lp-intro-premium-visual {
    display: grid;
    gap: 0.46rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="service-category"] .service-lp-intro-premium-media {
    grid-column: span 3;
  }

  body[data-page="service-category"] .service-area-grid {
    gap: 0.54rem;
  }

  body[data-page="service-category"] .service-area-card {
    flex-basis: calc((100% - (3 * 0.54rem)) / 4);
  }

  body[data-page="service-category"] .service-lp-diode-diff-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="service-category"] .service-lp-device-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body[data-page="service-category"] .service-lp-ba-grid,
  body[data-page="service-category"] .service-lp-trust-grid,
  body[data-page="service-category"] .service-lp-intro-premium-actions,
  body[data-page="service-category"] .service-lp-intro-premium-steps,
  body[data-page="service-category"] .service-lp-type-actions,
  body[data-page="service-category"] .service-lp-type-metrics,
  body[data-page="service-category"] .service-lp-cta-actions,
  body[data-page="service-category"] .service-lp-device-proof-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="service-category"] .service-lp-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="service-category"] .service-lp-gallery-item--lg,
  body[data-page="service-category"] .service-lp-gallery-item--md,
  body[data-page="service-category"] .service-lp-gallery-item--sm {
    grid-column: span 1;
  }

  body[data-page="service-category"] .service-lp-process {
    grid-template-columns: 1fr;
  }

  body[data-page="service-category"] .service-lp-cta--epilation .service-lp-cta-inner {
    padding: 0.9rem 0.86rem;
  }

  body[data-page="service-category"] .service-gallery-slide,
  body[data-page="service-category"] .service-gallery-slide img {
    min-height: 164px;
    height: 164px;
  }

  body[data-page="service-category"] .service-area-tabs {
    width: 100%;
  }

  body[data-page="service-category"] .service-area-grid {
    gap: 0.54rem;
  }

  body[data-page="service-category"] .service-area-card {
    flex-basis: calc((100% - (1 * 0.54rem)) / 2);
    min-height: 168px;
  }

  body[data-page="service-category"] .service-area-card-title {
    font-size: 0.84rem;
  }
}

body[data-page="blog"] .blog-headline-nav--prev {
  left: 0.8rem;
}

body[data-page="blog"] .blog-headline-nav--next {
  right: 0.8rem;
}

body[data-page="blog"] .blog-category-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

body[data-page="blog"] .blog-category-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(139, 92, 246, 0.22);
  background:
    radial-gradient(110% 90% at 0% 0%, rgba(148, 46, 135, 0.14), transparent 58%),
    radial-gradient(95% 90% at 100% 100%, rgba(14, 116, 144, 0.12), transparent 62%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.9));
  padding: 0.88rem 0.94rem;
  text-decoration: none;
  box-shadow: 0 20px 32px -26px rgba(15, 23, 42, 0.56);
  display: grid;
  align-content: start;
  gap: 0.48rem;
  min-height: 178px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

body[data-page="blog"] .blog-category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 156, 0.4);
  box-shadow: 0 28px 42px -28px rgba(15, 23, 42, 0.64);
}

body[data-page="blog"] .blog-category-kicker {
  margin: 0;
  color: #5b2a82;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
}

body[data-page="blog"] .blog-category-kicker::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.95), rgba(148, 46, 135, 0.92));
  box-shadow: 0 0 0 3px rgba(124, 58, 156, 0.14);
}

body[data-page="blog"] .blog-category-card h2 {
  margin: 0;
  color: #1f2937;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
}

body[data-page="blog"] .blog-category-card h2:first-child {
  margin-top: 0.08rem;
}

body[data-page="blog"] .blog-category-card p:not(.blog-category-kicker) {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.55;
}

body[data-page="blog"] .blog-category-card > span {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.42rem 0.66rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 156, 0.26);
  background: rgba(255, 255, 255, 0.82);
  color: #5b2a82;
  font-size: 0.82rem;
  font-weight: 800;
}

body[data-page="blog"] .blog-pagination {
  margin-top: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.46rem;
  flex-wrap: wrap;
}

body[data-page="blog"] .blog-pagination a {
  min-width: 2.16rem;
  height: 2.16rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: rgba(255, 255, 255, 0.78);
  color: #475569;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body[data-page="blog"] .blog-pagination a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px -18px rgba(15, 23, 42, 0.6);
}

body[data-page="blog"] .blog-pagination a.is-active {
  background: linear-gradient(135deg, rgba(82, 39, 120, 0.92), rgba(148, 46, 135, 0.92));
  border-color: transparent;
  color: #f8fafc;
  box-shadow: 0 14px 24px -18px rgba(82, 39, 120, 0.8);
}

body[data-page="blog"] .blog-pagination .blog-pagination-ctrl {
  min-width: 0;
  padding: 0 0.86rem;
  gap: 0.42rem;
}

body[data-page="blog"] .blog-pagination .is-disabled {
  pointer-events: none;
  opacity: 0.52;
}

@media (max-width: 980px) {
  body[data-page="blog"] .blog-category-strip {
    grid-template-columns: 1fr;
  }

  body[data-page="blog"] .blog-headline-panel {
    grid-template-columns: 1fr;
    height: auto;
  }

  body[data-page="blog"] .blog-headline-media {
    height: 260px;
  }

  body[data-page="blog"] .blog-headline-copy {
    gap: 0.55rem;
  }

  body[data-page="blog"] .blog-headline-nav {
    top: 115px;
    transform: translateY(-50%);
  }
}
