:root {
  --pp-purple: #5b19ff;
  --pp-purple-2: #8b5cff;
  --pp-violet: #2c0b74;
  --pp-ink: #100822;
  --pp-ink-2: #190b36;
  --pp-text: #241b3d;
  --pp-muted: #746b8f;
  --pp-cyan: #35f2ff;
  --pp-magenta: #ff4fd8;
  --pp-yellow-gold: #f5c518;
  --pp-lime: #b8ff6f;
  --pp-blue: var(--pp-purple);
  --pp-blue-2: var(--pp-purple-2);
  --pp-orange: var(--pp-magenta);
  --pp-yellow: var(--pp-yellow-gold);
  --pp-mint: var(--pp-cyan);
  --pp-rose: var(--pp-magenta);
  --pp-bg: #f7f3ff;
  --pp-soft: #eee7ff;
  --pp-white: #fff;
  --pp-line: rgba(91, 25, 255, 0.16);
  --pp-glass: rgba(255, 255, 255, 0.1);
  --pp-shadow: 0 22px 58px rgba(33, 5, 86, 0.2);
  --pp-glow: 0 0 32px rgba(139, 92, 255, 0.42), 0 0 72px rgba(53, 242, 255, 0.18);
  --pp-radius: 8px;
  --pp-shell: min(1500px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--pp-text);
  background:
    linear-gradient(180deg, rgba(247, 243, 255, 0.9), rgba(255, 255, 255, 1) 36%),
    var(--pp-white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", "Noto Sans TC", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  padding: 9px 12px;
  background: var(--pp-white);
  color: var(--pp-purple);
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.pp-shell {
  width: var(--pp-shell);
  margin: 0 auto;
}

.pp-topbar {
  overflow: hidden;
  color: var(--pp-white);
  background: #090014;
  border-bottom: 1px solid rgba(139, 92, 255, 0.32);
}

.pp-topbar__track {
  display: flex;
  gap: 34px;
  width: max-content;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  animation: ppMarquee 28s linear infinite;
}

@keyframes ppMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-35%);
  }
}

.pp-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(14, 4, 31, 0.88);
  border-bottom: 1px solid rgba(139, 92, 255, 0.22);
  backdrop-filter: blur(14px);
}

.pp-header__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
}

.pp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--pp-white);
  font-weight: 900;
  text-decoration: none;
}

.pp-brand__logo {
  width: 172px;
  max-width: 42vw;
  filter: drop-shadow(0 0 18px rgba(139, 92, 255, 0.58));
}

.pp-brand__tag {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  text-transform: uppercase;
}

.pp-nav {
  flex: 1;
}

.pp-menu,
.pp-footer-menu {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.pp-menu {
  justify-content: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
}

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

.pp-menu a,
.pp-footer-menu a {
  text-decoration: none;
}

.pp-menu a:hover,
.pp-footer-menu a:hover {
  color: var(--pp-cyan);
}

.pp-submenu {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 8px;
  width: min(620px, calc(100vw - 36px));
  padding: 14px;
  border: 1px solid rgba(139, 92, 255, 0.26);
  border-radius: var(--pp-radius);
  color: var(--pp-text);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--pp-shadow), 0 0 40px rgba(139, 92, 255, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.pp-menu-item--has-children::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 18px;
}

.pp-menu-item--has-children:hover .pp-submenu,
.pp-menu-item--has-children:focus-within .pp-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.pp-submenu__item {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: var(--pp-radius);
  color: var(--pp-text);
}

.pp-submenu__item:hover {
  color: var(--pp-purple);
  background: var(--pp-bg);
}

.pp-submenu__item strong {
  font-size: 14px;
  line-height: 1.25;
}

.pp-submenu__item span {
  color: var(--pp-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.pp-header-cta,
.pp-footer-cta,
.pp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--pp-radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pp-header-cta,
.pp-button--primary {
  color: var(--pp-white);
  background: linear-gradient(135deg, var(--pp-purple), var(--pp-magenta));
  box-shadow: 0 16px 36px rgba(91, 25, 255, 0.34);
}

.pp-button--secondary {
  color: var(--pp-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.pp-button--light {
  color: var(--pp-violet);
  background: var(--pp-white);
}

.pp-button:hover,
.pp-header-cta:hover,
.pp-footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--pp-shadow);
}

.pp-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: rgba(255, 255, 255, 0.95);
}

.pp-menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--pp-ink);
}

.pp-hero,
.pp-page-hero,
.pp-service-hero {
  position: relative;
  overflow: hidden;
  color: var(--pp-white);
  --pp-hero-bg: url("../img/generated/home/home-hero.webp");
  background:
    radial-gradient(circle at 74% 24%, rgba(255, 79, 216, 0.28), transparent 28%),
    radial-gradient(circle at 22% 72%, rgba(245, 197, 24, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(7, 0, 19, 0.98) 0%, rgba(16, 8, 34, 0.95) 46%, rgba(44, 11, 116, 0.72) 74%, rgba(7, 0, 19, 0.84) 100%),
    var(--pp-hero-bg) center / cover no-repeat;
}

.pp-hero::after,
.pp-page-hero::after,
.pp-service-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: linear-gradient(90deg, var(--pp-magenta), var(--pp-purple-2), var(--pp-cyan), var(--pp-lime));
  box-shadow: 0 0 28px rgba(53, 242, 255, 0.45);
}

.pp-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  padding: 86px 0;
  overflow: hidden;
  color: var(--pp-white);
}

.pp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent 0 18%, rgba(53, 242, 255, 0.13) 19%, transparent 21% 48%, rgba(255, 79, 216, 0.16) 49%, transparent 51%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 72px);
  mix-blend-mode: screen;
  animation: ppLightSweep 8s ease-in-out infinite alternate;
}

@keyframes ppLightSweep {
  from {
    transform: translateX(-2%);
    opacity: 0.62;
  }
  to {
    transform: translateX(2%);
    opacity: 0.95;
  }
}

.pp-hero__grid,
.pp-page-hero__grid,
.pp-service-hero__grid,
.pp-hero__content,
.pp-page-hero__content,
.pp-service-hero__content,
.pp-cta__grid,
.pp-two-col,
.pp-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pp-hero__content,
.pp-page-hero__content,
.pp-service-hero__content {
  display: block;
}

.pp-hero__copy {
  max-width: 840px;
}

.pp-hero__copy,
.pp-page-hero__content,
.pp-service-hero__content {
  text-shadow: 0 2px 26px rgba(7, 0, 19, 0.86);
}

.pp-kicker {
  margin: 0 0 12px;
  color: var(--pp-cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pp-hero h1,
.pp-page-hero h1,
.pp-service-hero h1 {
  max-width: 820px;
  margin: 0;
  color: inherit;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 0 30px rgba(139, 92, 255, 0.34);
  overflow-wrap: anywhere;
}

.pp-page-hero h1,
.pp-service-hero h1 {
  font-size: clamp(38px, 5vw, 66px);
}

.pp-lead {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: clamp(18px, 2.1vw, 22px);
  color: rgba(255, 255, 255, 0.86);
}

.pp-service-hero p:not(.pp-kicker):not(.pp-lead),
.pp-page-hero p:not(.pp-kicker):not(.pp-lead) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

.pp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pp-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pp-hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid rgba(245, 197, 24, 0.26);
  border-radius: var(--pp-radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(11, 3, 30, 0.58);
  box-shadow: 0 0 22px rgba(139, 92, 255, 0.22);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.pp-hero-visual,
.pp-service-badge,
.pp-page-hero__visual,
.pp-service-hero-media,
.pp-generated-visual,
.pp-wide-visual {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--pp-radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(91, 25, 255, 0.12));
  box-shadow: var(--pp-glow), 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.pp-hero-visual,
.pp-service-badge {
  min-height: 420px;
}

.pp-hero-visual {
  display: grid;
  align-items: center;
  overflow: hidden;
}

.pp-hero-visual img {
  width: min(100%, 520px);
  max-height: 430px;
  object-fit: cover;
  object-position: top;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--pp-radius);
  box-shadow: 0 0 42px rgba(53, 242, 255, 0.16);
  transform: perspective(900px) rotateY(-7deg) rotateX(3deg);
}

.pp-page-hero__visual,
.pp-service-hero-media,
.pp-generated-visual,
.pp-wide-visual,
.pp-card__media {
  margin: 0;
  overflow: hidden;
}

.pp-page-hero__visual img,
.pp-service-hero-media img,
.pp-generated-visual img,
.pp-wide-visual img,
.pp-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

.pp-page-hero__visual,
.pp-service-hero-media,
.pp-generated-visual {
  padding: 10px;
}

.pp-page-hero__visual img,
.pp-service-hero-media img,
.pp-generated-visual img,
.pp-wide-visual img {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--pp-radius);
  box-shadow: 0 0 38px rgba(139, 92, 255, 0.22);
}

.pp-wide-visual {
  margin-bottom: 28px;
}

.pp-card__media {
  aspect-ratio: 1 / 1;
  margin: -8px -8px 18px;
  padding: 0;
  border: 1px solid rgba(139, 92, 255, 0.18);
  border-radius: var(--pp-radius);
  background: rgba(16, 8, 34, 0.92);
  box-shadow: 0 18px 42px rgba(44, 11, 116, 0.12);
}

.pp-card__media--wide {
  aspect-ratio: 16 / 9;
}

.pp-card__media img {
  height: 100%;
  object-fit: cover;
}

.pp-hero-metric {
  position: absolute;
  width: min(250px, 55%);
  padding: 14px 16px;
  border: 1px solid rgba(53, 242, 255, 0.28);
  border-radius: var(--pp-radius);
  color: var(--pp-white);
  background: rgba(11, 3, 30, 0.76);
  box-shadow: 0 0 28px rgba(139, 92, 255, 0.35);
  backdrop-filter: blur(14px);
}

.pp-hero-metric span {
  display: block;
  color: var(--pp-cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pp-hero-metric strong {
  display: block;
  margin-top: 3px;
  font-size: 16px;
  line-height: 1.25;
}

.pp-hero-metric--top {
  top: 52px;
  right: 18px;
}

.pp-hero-metric--bottom {
  left: 18px;
  bottom: 44px;
}

.pp-page-hero,
.pp-service-hero {
  padding: 110px 0 92px;
}

.pp-service-badge {
  display: grid;
  place-items: center;
  text-align: center;
}

.pp-service-visual {
  position: relative;
  min-height: 420px;
}

.pp-service-visual .pp-service-hero-media {
  height: 100%;
  min-height: 420px;
}

.pp-service-visual .pp-service-hero-media img {
  height: 100%;
  min-height: 398px;
  object-fit: cover;
}

.pp-service-badge--floating {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: block;
  width: min(300px, calc(100% - 36px));
  min-height: 0;
  padding: 18px;
  background: rgba(11, 3, 30, 0.72);
}

.pp-service-badge span {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  color: var(--pp-white);
  background: linear-gradient(135deg, var(--pp-purple), var(--pp-cyan));
  box-shadow: 0 0 30px rgba(53, 242, 255, 0.35);
  border-radius: var(--pp-radius);
  font-size: 30px;
  font-weight: 950;
}

.pp-service-badge strong {
  display: block;
  margin-top: 18px;
  font-size: 30px;
}

.pp-service-badge small {
  color: rgba(255, 255, 255, 0.72);
}

.pp-section {
  padding: 92px 0;
}

.pp-section--soft {
  background:
    linear-gradient(180deg, rgba(247, 243, 255, 0.94), rgba(238, 231, 255, 0.78)),
    var(--pp-bg);
}

.pp-section--ink {
  color: var(--pp-white);
  background:
    linear-gradient(135deg, rgba(16, 8, 34, 0.98), rgba(44, 11, 116, 0.95)),
    url("../img/strategy-system.png") right bottom / 420px auto no-repeat;
}

.pp-section--clarity {
  color: var(--pp-white);
  background:
    linear-gradient(135deg, rgba(16, 8, 34, 0.98), rgba(44, 11, 116, 0.94)),
    url("../img/space-glow.png") right center / auto 120% no-repeat;
}

.pp-section--clarity .pp-section-head h2,
.pp-section--clarity .pp-section-head p {
  color: var(--pp-white);
}

.pp-clarity__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pp-clarity__grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(53, 242, 255, 0.2);
  border-radius: var(--pp-radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 34px rgba(139, 92, 255, 0.16);
}

.pp-clarity__grid h3 {
  margin: 0 0 10px;
  color: var(--pp-cyan);
  font-size: 19px;
  line-height: 1.22;
}

.pp-clarity__grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.pp-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.pp-section-head h2,
.pp-two-col h2,
.pp-cta h2,
.pp-contact-card h2 {
  margin: 0;
  color: var(--pp-ink);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: 0;
}

.pp-section--ink h2,
.pp-section--ink .pp-kicker {
  color: var(--pp-white);
}

.pp-section-head p,
.pp-two-col p,
.pp-card p,
.pp-contact-card p,
.pp-richtext p {
  color: var(--pp-muted);
}

.pp-section--ink p {
  color: rgba(255, 255, 255, 0.78);
}

.pp-card-grid {
  display: grid;
  gap: 18px;
}

.pp-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pp-card,
.pp-list-panel,
.pp-contact-card,
.pp-form {
  min-width: 0;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--pp-shadow);
}

.pp-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.pp-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--pp-purple), var(--pp-magenta), var(--pp-cyan));
  box-shadow: 0 0 22px rgba(139, 92, 255, 0.42);
}

.pp-card__label,
.pp-case-card span,
.pp-insight-card span {
  color: var(--pp-orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pp-card__icon {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 54px;
  margin-bottom: 16px;
  padding: 0 10px;
  color: var(--pp-white);
  background: linear-gradient(135deg, var(--pp-purple), var(--pp-cyan));
  box-shadow: 0 0 22px rgba(91, 25, 255, 0.28);
  border-radius: var(--pp-radius);
  font-weight: 900;
}

.pp-card h3 {
  margin: 8px 0 10px;
  color: var(--pp-ink);
  font-size: 23px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.pp-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--pp-purple);
  font-weight: 900;
  text-decoration: none;
}

.pp-two-col {
  align-items: start;
}

.pp-richtext {
  font-size: 18px;
}

.pp-list-panel {
  padding: 12px;
}

.pp-check-row {
  position: relative;
  padding: 17px 18px 17px 46px;
  border-bottom: 1px solid var(--pp-line);
  font-weight: 750;
}

.pp-check-row:last-child {
  border-bottom: 0;
}

.pp-check-row::before {
  content: "✓";
  position: absolute;
  left: 18px;
  color: var(--pp-mint);
  font-weight: 950;
}

.pp-step-list {
  display: grid;
  gap: 16px;
}

.pp-step-list--grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pp-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(44, 11, 116, 0.1);
}

.pp-step span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--pp-white);
  background: linear-gradient(135deg, var(--pp-purple), var(--pp-magenta));
  border-radius: var(--pp-radius);
  font-weight: 950;
}

.pp-step h3 {
  margin: 0 0 6px;
  color: var(--pp-ink);
}

.pp-step p {
  margin: 0;
  color: var(--pp-muted);
}

.pp-ads-readiness .pp-card {
  min-height: 230px;
}

.pp-service-faq__list {
  display: grid;
  gap: 14px;
}

.pp-service-faq__item {
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(44, 11, 116, 0.08);
  overflow: hidden;
}

.pp-service-faq__item summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--pp-ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.pp-service-faq__item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--pp-muted);
}

.pp-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pp-chip-list span {
  display: inline-flex;
  padding: 10px 14px;
  color: var(--pp-white);
  background: rgba(139, 92, 255, 0.24);
  border: 1px solid rgba(53, 242, 255, 0.24);
  border-radius: var(--pp-radius);
  font-weight: 850;
}

.pp-deliverables-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
}

.pp-deliverables-grid .pp-chip-list {
  align-content: center;
}

.pp-case-card__sector {
  margin-top: 0;
  font-weight: 850;
}

.pp-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.pp-card-actions a {
  margin-top: 0;
}

.pp-case-card {
  display: flex;
  flex-direction: column;
}

.pp-case-card__visual,
.pp-case-detail-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 154px;
  margin: -6px -6px 20px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 255, 0.18);
  border-radius: var(--pp-radius);
  color: var(--pp-white);
  background:
    radial-gradient(circle at 26% 24%, rgba(245, 197, 24, 0.35), transparent 22%),
    radial-gradient(circle at 78% 64%, rgba(53, 242, 255, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(18, 3, 50, 0.98), rgba(91, 25, 255, 0.78));
  box-shadow: inset 0 0 36px rgba(139, 92, 255, 0.3), 0 18px 42px rgba(44, 11, 116, 0.12);
}

.pp-case-card__visual::before,
.pp-case-detail-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--pp-radius);
  background:
    linear-gradient(90deg, transparent 0 30%, rgba(255, 255, 255, 0.08) 31%, transparent 33%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 28px);
}

.pp-case-card__visual img,
.pp-case-detail-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pp-case-card__visual::after,
.pp-case-detail-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 0, 20, 0.16), rgba(9, 0, 20, 0.54)),
    radial-gradient(circle at 22% 18%, rgba(245, 197, 24, 0.26), transparent 30%),
    radial-gradient(circle at 82% 72%, rgba(91, 25, 255, 0.32), transparent 36%);
}

.pp-case-card__visual span,
.pp-case-detail-visual span,
.pp-case-detail-visual strong {
  position: relative;
  z-index: 2;
  color: var(--pp-white);
  font-size: 22px;
  letter-spacing: 0.02em;
}

.pp-case-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pp-case-detail-visual {
  min-height: 360px;
  margin: 0;
  padding: 32px;
  text-align: center;
}

.pp-case-detail-visual figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.pp-case-detail-visual strong {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 320px;
  margin-top: 10px;
  font-size: 34px;
  line-height: 1.08;
}

.pp-note {
  padding: 14px 16px;
  border: 1px solid rgba(245, 197, 24, 0.32);
  border-radius: var(--pp-radius);
  color: #5b4775 !important;
  background: rgba(255, 248, 221, 0.78);
  font-size: 15px;
}

.pp-pricing-card strong {
  display: block;
  margin: 10px 0;
  color: var(--pp-purple);
  font-size: 30px;
}

.pp-pricing-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pp-pricing-card li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--pp-muted);
}

.pp-pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 9px;
  height: 9px;
  background: var(--pp-magenta);
  border-radius: 50%;
}

.pp-section-foot {
  margin-top: 28px;
}

.pp-section--tool {
  color: var(--pp-white);
  background:
    radial-gradient(circle at 15% 18%, rgba(245, 197, 24, 0.28), transparent 26%),
    radial-gradient(circle at 82% 76%, rgba(139, 92, 255, 0.36), transparent 32%),
    linear-gradient(135deg, #0b0614, #26005b 58%, #3b0d8e);
}

.pp-tool-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.82fr);
  gap: 42px;
  align-items: center;
}

.pp-tool-banner h2 {
  max-width: 760px;
  margin: 0;
  color: var(--pp-white);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
}

.pp-tool-banner p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.pp-tool-banner__visual {
  position: relative;
  min-height: 350px;
  perspective: 900px;
}

.pp-tool-window {
  position: absolute;
  inset: 24px 0 0;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--pp-radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(139, 92, 255, 0.12));
  box-shadow: var(--pp-glow), 0 30px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  transform: rotateY(-8deg) rotateX(4deg);
}

.pp-tool-window__dots {
  display: flex;
  gap: 6px;
}

.pp-tool-window__dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pp-lime);
}

.pp-tool-window__dots span:first-child {
  background: var(--pp-magenta);
}

.pp-tool-window__dots span:nth-child(2) {
  background: var(--pp-yellow);
}

.pp-tool-window__row,
.pp-tool-window__grid i {
  display: block;
  min-height: 28px;
  border: 1px solid rgba(53, 242, 255, 0.2);
  border-radius: var(--pp-radius);
  background: rgba(255, 255, 255, 0.12);
}

.pp-tool-window__row--wide {
  min-height: 62px;
  background: linear-gradient(90deg, rgba(245, 197, 24, 0.26), rgba(53, 242, 255, 0.16));
}

.pp-tool-window__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pp-section--showcase {
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 79, 216, 0.16), transparent 26%),
    radial-gradient(circle at 18% 78%, rgba(53, 242, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(247, 243, 255, 0.96), rgba(255, 255, 255, 0.95));
}

.pp-website-showcase {
  display: grid;
  gap: 18px;
}

.pp-website-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(91, 25, 255, 0.16);
  border-radius: var(--pp-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 255, 0.92));
  box-shadow: var(--pp-shadow);
}

.pp-website-card__media {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(53, 242, 255, 0.22);
  border-radius: var(--pp-radius);
  background:
    linear-gradient(135deg, rgba(16, 8, 34, 0.98), rgba(44, 11, 116, 0.94));
  box-shadow: inset 0 0 42px rgba(139, 92, 255, 0.24);
}

.pp-website-card__media::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9, 0, 20, 0.12), rgba(9, 0, 20, 0.42)),
    radial-gradient(circle at 76% 18%, rgba(255, 79, 216, 0.24), transparent 32%),
    radial-gradient(circle at 24% 78%, rgba(53, 242, 255, 0.2), transparent 34%);
  backdrop-filter: blur(0.6px);
}

.pp-website-card__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.74) contrast(0.92) brightness(0.86);
}

.pp-website-card__media figcaption {
  position: absolute;
  z-index: 3;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(53, 242, 255, 0.26);
  border-radius: 999px;
  color: var(--pp-white);
  background: rgba(16, 8, 34, 0.74);
  box-shadow: 0 0 24px rgba(139, 92, 255, 0.3);
  font-size: 12px;
  font-weight: 900;
}

.pp-website-card__body {
  display: grid;
  align-content: center;
  padding: 8px 8px 8px 0;
}

.pp-website-card__body h3 {
  margin: 0 0 10px;
  color: var(--pp-ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.pp-website-card__body p {
  margin: 0;
  color: var(--pp-muted);
}

.pp-website-card__body ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pp-website-card__body li {
  position: relative;
  padding-left: 24px;
  color: var(--pp-text);
  font-weight: 780;
}

.pp-website-card__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pp-cyan);
  box-shadow: 0 0 18px rgba(53, 242, 255, 0.52);
}

.pp-section--tool-preview {
  color: var(--pp-white);
  background:
    radial-gradient(circle at 16% 18%, rgba(53, 242, 255, 0.18), transparent 30%),
    radial-gradient(circle at 82% 68%, rgba(255, 79, 216, 0.22), transparent 32%),
    linear-gradient(135deg, #0b0614, #240058 58%, #3a0e8a);
}

.pp-tool-preview-grid,
.pp-tool-page-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
}

.pp-tool-preview-card,
.pp-tool-page-preview {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(53, 242, 255, 0.24);
  border-radius: var(--pp-radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--pp-glow), 0 24px 70px rgba(0, 0, 0, 0.22);
}

.pp-tool-preview-card img,
.pp-tool-page-preview img,
.pp-tool-window--image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}

.pp-tool-preview-copy h2 {
  margin: 0;
  color: var(--pp-white);
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.08;
}

.pp-tool-preview-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.pp-chip-list--dark span {
  background: rgba(255, 255, 255, 0.08);
}

.pp-page-hero--tool {
  --pp-hero-bg: url("../img/generated/home/freetool-hero.webp");
}

.pp-tool-window--image {
  margin: 0;
  overflow: hidden;
}

.pp-tool-window--image img {
  border: 1px solid rgba(53, 242, 255, 0.16);
  border-radius: var(--pp-radius);
  box-shadow: 0 0 34px rgba(53, 242, 255, 0.14);
}

.pp-cta {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  color: var(--pp-white);
  --pp-cta-bg: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(245, 197, 24, 0.24), transparent 26%),
    radial-gradient(circle at 82% 68%, rgba(139, 92, 255, 0.38), transparent 32%),
    linear-gradient(135deg, rgba(16, 8, 34, 0.94), rgba(44, 11, 116, 0.86)),
    var(--pp-cta-bg) center / cover no-repeat;
}

.pp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0 42%, rgba(53, 242, 255, 0.16) 43%, transparent 46%);
}

.pp-cta h2 {
  color: var(--pp-white);
}

.pp-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.pp-cta__grid {
  grid-template-columns: 1fr auto;
  position: relative;
  z-index: 1;
}

.pp-contact-grid {
  align-items: stretch;
}

.pp-contact-card,
.pp-form {
  padding: 28px;
}

.pp-form {
  display: grid;
  gap: 16px;
}

.pp-form label {
  display: grid;
  gap: 8px;
  color: var(--pp-ink);
  font-weight: 850;
}

.pp-form input,
.pp-form select,
.pp-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  color: var(--pp-text);
  font: inherit;
}

.pp-footer {
  position: relative;
  overflow: hidden;
  padding: 64px 0 26px;
  color: var(--pp-white);
  background:
    linear-gradient(145deg, #090014, #1b073d 62%, #2b0b68);
  border-top: 1px solid rgba(139, 92, 255, 0.32);
}

.pp-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 28%, rgba(139, 92, 255, 0.16) 29%, transparent 31%),
    linear-gradient(115deg, transparent 0 60%, rgba(53, 242, 255, 0.12) 61%, transparent 64%);
}

.pp-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(160px, 0.75fr) minmax(190px, 0.85fr) minmax(220px, 0.85fr);
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.pp-footer__brand img {
  width: 220px;
  filter: drop-shadow(0 0 20px rgba(139, 92, 255, 0.58));
}

.pp-footer p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.68);
}

.pp-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pp-footer__badges span {
  padding: 7px 9px;
  border: 1px solid rgba(53, 242, 255, 0.24);
  border-radius: var(--pp-radius);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 800;
}

.pp-footer__col {
  display: grid;
  gap: 10px;
}

.pp-footer__col h2 {
  margin: 0 0 8px;
  color: var(--pp-cyan);
  font-size: 15px;
  text-transform: uppercase;
}

.pp-footer__col a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  text-decoration: none;
}

.pp-footer__col a:hover {
  color: var(--pp-cyan);
}

.pp-footer-menu {
  display: grid;
  align-items: start;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: start;
}

.pp-footer-cta {
  color: var(--pp-white) !important;
  background: linear-gradient(135deg, var(--pp-purple), var(--pp-magenta));
  box-shadow: 0 0 24px rgba(139, 92, 255, 0.35);
}

.pp-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.post-card {
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: var(--pp-white);
}

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

.pp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.pp-ai-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: grid;
  justify-items: end;
  gap: 12px;
  max-width: calc(100vw - 32px);
  pointer-events: none;
}

.pp-ai-chat > * {
  pointer-events: auto;
}

.pp-ai-chat[data-open="true"] {
  bottom: 16px;
}

.pp-ai-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(53, 242, 255, 0.34);
  border-radius: 999px;
  color: var(--pp-white);
  background: linear-gradient(135deg, rgba(91, 25, 255, 0.96), rgba(255, 79, 216, 0.9));
  box-shadow: 0 0 34px rgba(139, 92, 255, 0.5), 0 14px 36px rgba(16, 8, 34, 0.26);
  cursor: pointer;
}

.pp-ai-toggle span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--pp-violet);
  background: var(--pp-cyan);
  font-weight: 950;
}

.pp-ai-toggle strong {
  font-size: 14px;
}

.pp-ai-chat__panel {
  display: flex;
  flex-direction: column;
  width: min(430px, calc(100vw - 32px));
  height: min(760px, calc(100dvh - 88px));
  max-height: calc(100dvh - 88px);
  border: 1px solid rgba(191, 206, 239, 0.92);
  border-radius: 24px;
  color: var(--pp-text);
  background: var(--pp-white);
  box-shadow: 0 30px 90px rgba(16, 8, 34, 0.34), 0 0 44px rgba(139, 92, 255, 0.25);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.94);
  transform-origin: right bottom;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.pp-ai-chat__panel[hidden] {
  display: none !important;
}

.pp-ai-chat[data-open="true"] .pp-ai-chat__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.pp-ai-chat__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 20px 22px;
  color: var(--pp-white);
  background: linear-gradient(135deg, #14105a, var(--pp-purple));
}

.pp-ai-chat__head h2 {
  margin: 0;
  color: var(--pp-white);
  font-size: 26px;
  line-height: 1.16;
}

.pp-ai-chat__close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--pp-white);
  background: transparent;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.pp-ai-chat__note,
.pp-ai-chat__response {
  margin: 0;
  padding: 16px 22px;
  color: var(--pp-muted);
  font-size: 15px;
  line-height: 1.62;
}

.pp-ai-chat__model-note {
  margin: 0 22px 14px;
  padding: 14px 16px;
  border: 1px solid rgba(245, 190, 75, 0.36);
  border-radius: 16px;
  color: #534160;
  background: rgba(255, 244, 219, 0.82);
  font-size: 14px;
  line-height: 1.58;
}

.pp-ai-chat__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 18px;
}

.pp-ai-chat__quick a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(91, 25, 255, 0.18);
  border-radius: 999px;
  color: #244bd6;
  background: #f5f7ff;
  font-weight: 850;
  text-decoration: none;
}

.pp-ai-chat__messages {
  display: grid;
  align-content: start;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 160px;
  overflow: auto;
  padding: 14px 16px 0;
  background: var(--pp-white);
  scroll-behavior: smooth;
}

.pp-ai-chat__msg {
  width: fit-content;
  max-width: min(100%, 360px);
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.62;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.pp-ai-chat__msg--assistant {
  justify-self: start;
  color: #141c36;
  background: #f2f5ff;
  border: 1px solid rgba(91, 25, 255, 0.14);
  border-top-left-radius: 6px;
}

.pp-ai-chat__msg--user {
  justify-self: end;
  color: var(--pp-white);
  background: linear-gradient(135deg, var(--pp-purple), #244bd6);
  border-top-right-radius: 6px;
}

.pp-ai-chat__msg--typing {
  opacity: 0.78;
}

.pp-ai-chat__time {
  display: block;
  margin-top: 4px;
  color: currentColor;
  font-size: 10px;
  opacity: 0.62;
}

.pp-ai-chat__form {
  display: grid;
  gap: 10px;
  padding: 18px 22px;
}

.pp-ai-chat__form label {
  color: var(--pp-ink);
  font-size: 15px;
  font-weight: 900;
}

.pp-ai-chat__form textarea {
  width: 100%;
  min-height: 116px;
  resize: vertical;
  border: 2px solid #0b63ce;
  border-radius: 16px;
  padding: 14px;
  color: var(--pp-text);
  font: inherit;
  line-height: 1.55;
}

.pp-ai-chat__verify {
  display: grid;
  gap: 8px;
  padding: 11px 12px;
  border: 1px solid rgba(91, 25, 255, 0.16);
  border-radius: 14px;
  background: #f7f8ff;
}

.pp-ai-chat__verify label {
  color: var(--pp-ink);
  font-size: 14px;
  font-weight: 900;
}

.pp-ai-chat__verify-input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(91, 25, 255, 0.28);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--pp-text);
  background: var(--pp-white);
  font: inherit;
}

.pp-ai-chat__verify-help {
  margin: 0;
  color: var(--pp-muted);
  font-size: 12px;
  line-height: 1.45;
}

.pp-ai-chat__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.pp-ai-chat__submit:disabled {
  opacity: 0.56;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pp-ai-chat__response {
  min-height: 24px;
  white-space: pre-wrap;
}

.pp-ai-chat__response[data-state="error"] {
  color: #9f1239;
}

.pp-ai-chat__response[data-state="ok"] {
  color: var(--pp-text);
}

@media (max-width: 980px) {
  .pp-hero__grid,
  .pp-page-hero__grid,
  .pp-service-hero__grid,
  .pp-cta__grid,
  .pp-two-col,
  .pp-contact-grid,
  .pp-deliverables-grid,
  .pp-tool-banner,
  .pp-tool-preview-grid,
  .pp-tool-page-grid,
  .pp-website-card,
  .pp-case-hero__grid,
  .pp-footer__grid {
    grid-template-columns: 1fr;
  }

  .pp-card-grid--three,
  .pp-step-list--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pp-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    max-height: calc(100dvh - 110px);
    overflow: auto;
    padding: 16px;
    border: 1px solid var(--pp-line);
    border-radius: var(--pp-radius);
    background: var(--pp-white);
    box-shadow: var(--pp-shadow);
  }

  .pp-nav.is-open {
    display: block;
  }

  .pp-menu {
    display: grid;
    justify-content: stretch;
    color: var(--pp-ink);
  }

  .pp-menu-item {
    display: grid;
    gap: 8px;
  }

  .pp-menu-item--has-children::after {
    display: none;
  }

  .pp-submenu {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: var(--pp-bg);
  }

  .pp-menu-toggle {
    display: block;
    margin-left: auto;
  }

  .pp-header-cta {
    display: none;
  }

  .pp-menu-is-open .pp-ai-chat {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --pp-shell: min(100% - 28px, 1500px);
  }

  .pp-topbar {
    display: none;
  }

  .pp-hero,
  .pp-page-hero,
  .pp-service-hero,
  .pp-section,
  .pp-cta {
    padding: 58px 0;
  }

  .pp-hero {
    min-height: auto;
  }

  .pp-hero,
  .pp-page-hero,
  .pp-service-hero {
    background:
      radial-gradient(circle at 74% 18%, rgba(255, 79, 216, 0.24), transparent 32%),
      radial-gradient(circle at 22% 82%, rgba(53, 242, 255, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(7, 0, 19, 0.98) 0%, rgba(16, 8, 34, 0.96) 58%, rgba(44, 11, 116, 0.8) 100%),
      var(--pp-hero-bg) center / cover no-repeat;
  }

  .pp-hero h1,
  .pp-page-hero h1,
  .pp-service-hero h1 {
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 1.08;
  }

  .pp-lead {
    font-size: 17px;
  }

  .pp-hero-proof {
    display: grid;
  }

  .pp-hero-proof span {
    width: 100%;
  }

  .pp-card-grid--three,
  .pp-step-list--grid {
    grid-template-columns: 1fr;
  }

  .pp-hero-visual,
  .pp-service-badge,
  .pp-service-visual,
  .pp-service-visual .pp-service-hero-media {
    min-height: 260px;
  }

  .pp-brand__tag {
    display: none;
  }

  .pp-hero-metric {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .pp-hero-visual img {
    max-height: 300px;
    transform: none;
  }

  .pp-service-badge--floating {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .pp-page-hero__visual,
  .pp-service-hero-media,
  .pp-generated-visual,
  .pp-wide-visual {
    padding: 8px;
  }

  .pp-tool-banner__visual,
  .pp-case-detail-visual {
    min-height: 280px;
  }

  .pp-tool-window {
    position: static;
    transform: none;
  }

  .pp-website-card {
    padding: 14px;
  }

  .pp-website-card__media,
  .pp-website-card__media img {
    min-height: 220px;
  }

  .pp-website-card__body {
    padding: 0;
  }

  .pp-step {
    grid-template-columns: 1fr;
  }

  .pp-actions {
    display: grid;
  }

  .pp-button {
    width: 100%;
  }

  .pp-footer__bottom {
    display: grid;
  }

  .pp-ai-chat {
    right: 14px;
    bottom: 14px;
  }

  .pp-form-focus .pp-ai-chat:not([data-open="true"]) {
    display: none;
  }

  .pp-ai-chat[data-open="true"] {
    inset: 8px 8px calc(8px + env(safe-area-inset-bottom));
    max-width: none;
  }

  .pp-ai-chat[data-open="true"] .pp-ai-toggle {
    display: none;
  }

  .pp-ai-chat__panel {
    width: 100%;
    height: calc(100dvh - 16px - env(safe-area-inset-bottom));
    max-height: calc(100dvh - 16px - env(safe-area-inset-bottom));
    border-radius: 22px;
  }

  .pp-ai-chat__head {
    padding: 14px 16px;
  }

  .pp-ai-chat__head h2 {
    font-size: 22px;
  }

  .pp-ai-chat__note,
  .pp-ai-chat__response {
    padding: 12px 16px;
    font-size: 14px;
  }

  .pp-ai-chat__model-note {
    margin: 0 16px 10px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .pp-ai-chat__quick {
    padding: 0 16px 10px;
  }

  .pp-ai-chat__messages {
    min-height: 90px;
    padding: 12px 12px 0;
  }

  .pp-ai-chat__form {
    padding: 12px 16px calc(14px + env(safe-area-inset-bottom));
  }

  .pp-ai-chat__form textarea {
    min-height: 82px;
    max-height: 22dvh;
  }

  .pp-ai-toggle strong {
    display: none;
  }
}
