:root {
      --bg: #0b0c0f;
      --surface: #111114;
      --surface-2: #151519;
      --text: #f5f5f5;
      --muted: #a1a1aa;
      --line: #27272a;
      --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
      --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.28);
      --orange: #ff8a00;
      --pink: #ff2f7d;
      --blue: #111114;
      --blue-border: #3f3f46;
      --header-h: 64px;
      --space-2xs: 0.5rem;   /* 8px */
      --space-xs: 0.75rem;   /* 12px */
      --space-sm: 1rem;      /* 16px */
      --space-md: 1.25rem;   /* 20px */
      --space-lg: 1.5rem;    /* 24px */
      --space-xl: 2rem;      /* 32px */
      --space-2xl: 2.5rem;   /* 40px */
      --space-3xl: 3rem;     /* 48px */
      --space-4xl: 4rem;     /* 64px */
      --content-max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      background: var(--bg);
      color: var(--text);
      font-family: "Inter", "Segoe UI", Arial, sans-serif;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:focus-visible,
    button:focus-visible,
    [role="button"]:focus-visible {
      outline: none;
      box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0b0c0f;
      border-radius: 10px;
    }

    .page {
      min-height: 100vh;
      position: relative;
      overflow-x: visible;
      overflow-y: visible;
      isolation: isolate;
      padding-top: var(--header-h);
    }

    .page::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(60% 30% at 50% 42%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 70%),
        radial-gradient(22% 18% at 50% 76%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 75%);
      pointer-events: none;
      z-index: -1;
    }

    .container {
      width: min(1200px, calc(100% - 56px));
      margin: 0 auto;
    }

    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 120;
      backdrop-filter: blur(12px);
      background: linear-gradient(180deg, rgba(11, 12, 15, 0.92) 0%, rgba(11, 12, 15, 0.72) 100%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header-inner {
      height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      position: relative;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 900;
      letter-spacing: 0.2px;
      font-size: 27px;
      line-height: 1;
    }

    .brand-main {
      color: #fff;
    }

    .brand-hub {
      color: #ffffff;
      border-radius: 6px;
      padding: 4px 9px 5px;
      line-height: 0.9;
      background-color: #ff8a00;
      background-image: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.82) 48%, transparent 60%),
        linear-gradient(90deg, #ff8a00 0%, #ffb000 48%, #ff8a00 100%);
      background-size: 260% 100%, 100% 100%;
      background-position: -180% 50%, 0 50%;
      background-repeat: no-repeat;
      animation: bhHubPalette 75s linear infinite, bhHubShimmer 2.2s linear infinite;
      will-change: background-position;
    }

    @keyframes bhHubShimmer {
      0% {
        background-position: -180% 50%, 0 50%;
      }
      100% {
        background-position: 180% 50%, 0 50%;
      }
    }

    @keyframes bhHubPalette {
      0%,
      20%,
      100% {
        background-image: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.82) 48%, transparent 60%),
          linear-gradient(90deg, #ff8a00 0%, #ffb000 48%, #ff8a00 100%);
      }
      4% {
        background-image: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.82) 48%, transparent 60%),
          linear-gradient(90deg, #fb7185 0%, #a855f7 52%, #fb7185 100%);
      }
      8% {
        background-image: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.82) 48%, transparent 60%),
          linear-gradient(90deg, #22d3ee 0%, #3b82f6 52%, #22d3ee 100%);
      }
      12% {
        background-image: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.82) 48%, transparent 60%),
          linear-gradient(90deg, #22c55e 0%, #10b981 52%, #22c55e 100%);
      }
      16% {
        background-image: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.82) 48%, transparent 60%),
          linear-gradient(90deg, #a78bfa 0%, #4f46e5 52%, #a78bfa 100%);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .brand-hub {
        animation: none;
        background-image: none;
        background-color: #ff8a00;
      }
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 18px;
      color: var(--text);
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.1px;
    }

    .nav a {
      opacity: 0.95;
      transition: opacity 0.2s ease;
    }

    .nav a:hover {
      opacity: 1;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: rgba(17, 17, 20, 0.92);
      color: var(--text);
      padding: 0;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .menu-toggle-lines {
      width: 20px;
      height: 14px;
      display: inline-flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .menu-toggle-lines span {
      height: 2px;
      width: 100%;
      display: block;
      background: #fff;
      border-radius: 999px;
      transform-origin: center;
      transition: transform 0.22s ease, opacity 0.2s ease;
    }

    .header.is-open .menu-toggle-lines span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .header.is-open .menu-toggle-lines span:nth-child(2) {
      opacity: 0;
    }

    .header.is-open .menu-toggle-lines span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .btn-form {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: none;
      border-radius: 999px;
      background: #ffffff;
      color: #0b0c0f;
      font-weight: 600;
      font-size: 16px;
      line-height: 1;
      min-height: 40px;
      min-width: 132px;
      padding: 0 14px;
      box-shadow: var(--shadow-soft);
      transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    }

    .btn-form:hover {
      transform: translateY(-1px);
      box-shadow: var(--shadow);
      filter: brightness(1.02);
    }

    .nav-cta-mobile {
      display: none;
    }

    .menu-backdrop {
      display: none;
    }

    .hero {
      margin: 0;
      text-align: center;
      min-height: calc(100svh - var(--header-h));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: clamp(12px, 2.2vh, 20px);
      padding: var(--space-xl) 0;
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 16%;
      width: min(860px, 95vw);
      height: min(420px, 52vw);
      transform: translateX(-50%);
      border-radius: 50%;
      background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 36%, rgba(255, 255, 255, 0) 74%);
      filter: blur(4px);
      pointer-events: none;
      z-index: 1;
    }

    .hero > * {
      position: relative;
      z-index: 2;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.68);
    }

    .hero-bg iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100vw;
      height: 56.25vw;
      min-width: 177.78vh;
      min-height: 100%;
      transform: translate(-50%, -50%);
      opacity: 0.38;
      filter: saturate(0.9) contrast(1.05) brightness(0.78);
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 40px;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: var(--text);
      background: rgba(17, 17, 20, 0.85);
      padding: 0 14px;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.05px;
      animation: riseIn 0.95s ease 0.08s both;
    }

    .pill-dot {
      color: #ffffff;
      font-size: 16px;
      line-height: 1;
    }

    .title {
      margin: 0;
      font-size: clamp(36px, 4.7vw, 64px);
      line-height: 1.08;
      font-weight: 650;
      letter-spacing: -0.5px;
      max-width: 980px;
      animation: riseIn 0.95s ease 0.2s both;
    }

    .title .line-1,
    .title .line-2,
    .title .line-3 {
      display: block;
      margin: 0;
    }

    .title .line-2 {
      display: flex;
      justify-content: center;
      align-items: center;
      line-height: 0.88;
      margin-top: 0;
      margin-bottom: -6px;
    }

    .handwriting-word {
      display: inline-flex;
      position: relative;
      justify-content: center;
      width: min(8.52em, 96vw);
      max-width: 100%;
      line-height: 0.84;
    }

    .handwriting-svg {
      width: 100%;
      height: auto;
      display: block;
      overflow: visible;
      filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.12));
      transform: translateY(2px);
    }

    .hw-base {
      font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
      font-size: 161px;
      font-weight: 600;
      letter-spacing: 0.35px;
      text-rendering: geometricPrecision;
      paint-order: stroke;
      text-anchor: middle;
    }

    .hw-stroke-main {
      fill: transparent;
      stroke: url(#hwStrokeGradient);
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 950;
      stroke-dashoffset: 950;
      animation: handwritingDraw 9.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    }

    .hw-stroke-retrace {
      fill: transparent;
      stroke: url(#hwStrokeGradient);
      stroke-width: 1.15;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 950;
      stroke-dashoffset: 950;
      opacity: 0;
      animation: handwritingRetrace 9.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    }

    .hw-fill {
      fill: url(#hwFillGradient);
      opacity: 0;
      animation: handwritingFill 9.2s ease-in-out infinite;
    }

    .title .italic {
      font-style: italic;
      font-weight: 500;
      letter-spacing: -0.2px;
    }

    .desc {
      margin: 0;
      max-width: 810px;
      font-size: clamp(14px, 1.2vw, 19px);
      line-height: 1.68;
      color: var(--muted);
      font-weight: 400;
      letter-spacing: 0;
      animation: riseIn 0.95s ease 0.34s both;
    }

    .cta-row {
      margin-top: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
      animation: riseIn 0.95s ease 0.46s both;
    }

    .btn-primary,
    .btn-secondary {
      min-height: 42px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 18px;
      letter-spacing: 0.05px;
    }

    .btn-primary {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      color: #0b0c0f;
      background: #ffffff;
      box-shadow: var(--shadow-soft);
      transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
      animation: none;
    }

    .btn-primary::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0) 70%);
      transform: translateX(-120%);
      animation: none;
      pointer-events: none;
      z-index: 0;
    }

    .btn-primary > * {
      position: relative;
      z-index: 1;
    }

    .btn-secondary {
      color: var(--text);
      border: 1px solid var(--blue-border);
      background: transparent;
      box-shadow: none;
      transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
    }

    .bh-assistant-cta {
      gap: 10px;
    }

    .bh-assistant-icon {
      position: relative;
      width: 16px;
      height: 16px;
      display: inline-block;
    }

    .bh-assistant-icon i {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      opacity: 0;
      transform: scale(0.86);
      filter: blur(0.1px);
      transform-origin: center;
      animation: bhIconCycle 6.6s ease-in-out infinite;
    }

    .bh-assistant-icon i:nth-child(2) {
      animation-delay: 2.2s;
    }

    .bh-assistant-icon i:nth-child(3) {
      animation-delay: 4.4s;
    }

    @keyframes bhIconCycle {
      0% {
        opacity: 0;
        transform: scale(0.86) translateY(2px);
      }
      10% {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
      30% {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
      44% {
        opacity: 0;
        transform: scale(0.92) translateY(-1px);
      }
      100% {
        opacity: 0;
        transform: scale(0.92) translateY(-1px);
      }
    }

    .bh-typing {
      display: inline-flex;
      align-items: center;
      margin-left: 2px;
      letter-spacing: 0;
      opacity: 0.9;
    }

    .bh-typing span {
      display: inline-block;
      width: 5px;
      text-align: center;
      opacity: 0.25;
      animation: bhTypingDots 1.2s ease-in-out infinite;
    }

    .bh-typing span:nth-child(2) {
      animation-delay: 0.2s;
    }

    .bh-typing span:nth-child(3) {
      animation-delay: 0.4s;
    }

    @keyframes bhTypingDots {
      0%,
      100% {
        opacity: 0.2;
        transform: translateY(0);
      }
      50% {
        opacity: 1;
        transform: translateY(-1px);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .bh-assistant-icon i,
      .bh-typing span {
        animation: none;
        opacity: 1;
        transform: none;
      }
    }

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

    .btn-primary:hover {
      box-shadow: var(--shadow);
      filter: brightness(1.02);
    }

    .btn-secondary:hover {
      border-color: #a1a1aa;
      background: rgba(255, 255, 255, 0.06);
    }

    .meta {
      margin-top: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      color: #d9deea;
      font-size: 12px;
      font-weight: 400;
      flex-wrap: wrap;
      animation: riseIn 0.95s ease 0.58s both;
    }

    .hero-more {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.04);
      color: rgba(255, 255, 255, 0.86);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.02em;
      transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
      overflow: hidden;
      -webkit-tap-highlight-color: transparent;
    }

    .hero-more::before {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 138, 0, 0.55) 35%, rgba(255, 47, 125, 0.5) 60%, rgba(255, 255, 255, 0) 100%);
      opacity: 0;
      transform: translateX(-120%);
      filter: blur(0.3px);
      pointer-events: none;
    }

    .hero-more.is-clicked {
      transform: translateY(-1px) scale(1.01);
      border-color: rgba(255, 255, 255, 0.26);
      background: rgba(255, 255, 255, 0.07);
    }

    .hero-more.is-clicked::before {
      opacity: 1;
      animation: heroMoreSweep 720ms cubic-bezier(0.22, 1, 0.36, 1) 1;
    }

    .hero-more.is-clicked span[aria-hidden="true"] {
      animation: heroMoreArrow 720ms cubic-bezier(0.22, 1, 0.36, 1) 1;
    }

    .hero-more:hover {
      transform: translateY(-1px);
      background: rgba(255, 255, 255, 0.07);
      border-color: rgba(255, 255, 255, 0.22);
    }

    @keyframes heroMoreSweep {
      0% {
        transform: translateX(-120%);
      }
      70% {
        transform: translateX(120%);
      }
      100% {
        transform: translateX(120%);
        opacity: 0;
      }
    }

    @keyframes heroMoreArrow {
      0% {
        transform: translateY(0);
        opacity: 0.9;
      }
      45% {
        transform: translateY(5px);
        opacity: 1;
      }
      100% {
        transform: translateY(0);
        opacity: 0.9;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-more::before,
      .hero-more.is-clicked::before,
      .hero-more.is-clicked span[aria-hidden="true"] {
        animation: none;
      }
    }

    .meta-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }

    .meta-check {
      color: #f5a623;
      font-weight: 700;
    }

    .problem-section {
      margin-top: 0;
      padding: var(--space-3xl) 34px var(--space-xl);
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
      animation: riseIn 0.8s ease 0.18s both;
      position: relative;
      overflow: hidden;
    }

    .hero-separator {
      position: relative;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-separator-line {
      width: min(720px, 92%);
      height: 1px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 138, 0, 0.6) 28%, rgba(255, 47, 125, 0.55) 52%, rgba(255, 255, 255, 0) 100%);
      background-size: 220% 100%;
      animation: heroSeparatorFlow 6.2s ease-in-out infinite;
      opacity: 0.9;
    }

    .hero-separator-orb {
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #ff8a00;
      box-shadow: 0 0 0 6px rgba(255, 138, 0, 0.16), 0 10px 24px rgba(0, 0, 0, 0.26);
      animation: heroSeparatorPulse 2.8s ease-in-out infinite;
    }

    @keyframes heroSeparatorFlow {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

    @keyframes heroSeparatorPulse {
      0%,
      100% {
        transform: scale(1);
        opacity: 0.92;
      }
      50% {
        transform: scale(1.12);
        opacity: 1;
      }
    }

    .intro-section {
      margin: var(--space-2xl) 0 var(--space-3xl);
    }

    .intro-section--footer {
      margin-top: var(--space-2xl);
      margin-bottom: 0;
    }

    .intro-kenburns {
      width: min(1040px, 100%);
      aspect-ratio: 16 / 9;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
      border-radius: 18px;
      outline: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 22px 70px rgba(0, 0, 0, 0.7);
      background: transparent;
    }

    .intro-kenburns img {
      position: absolute;
      inset: -2%;
      width: 104%;
      height: 104%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.04);
      will-change: transform;
    }

    .intro-kenburns--a img {
      object-position: center;
      animation: bhKenBurnsA 18s ease-in-out infinite alternate;
    }

    .intro-kenburns--b img {
      object-position: bottom center;
      animation: bhKenBurnsB 18s ease-in-out infinite alternate;
    }

    @keyframes bhKenBurnsA {
      0% { transform: scale(1.03) translate3d(-1.2%, -0.8%, 0); }
      100% { transform: scale(1.14) translate3d(1.2%, 0.8%, 0); }
    }

    @keyframes bhKenBurnsB {
      0% { transform: scale(1.03) translate3d(1.2%, -0.8%, 0); }
      100% { transform: scale(1.14) translate3d(-1.2%, 0.8%, 0); }
    }

    @media (prefers-reduced-motion: reduce) {
      .intro-kenburns img {
        animation: none;
        transform: none;
      }
    }

    .intro-breathe {
      width: min(1040px, 100%);
      margin: 0 auto;
      position: relative;
      overflow: visible;
      border-radius: 0;
      outline: none;
      box-shadow: none;
      background: none;
    }

    .intro-rotator {
      width: min(100%, 322px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      position: relative;
      aspect-ratio: 3 / 4;
    }

    .intro-rotator-img {
      grid-area: 1 / 1;
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      opacity: 0;
      will-change: opacity, transform;
      transform: translate3d(0, 0, 0);
      object-fit: contain;
      object-position: center bottom;
    }

    .intro-rotator-img--a {
      animation: introFadeA 20s ease-in-out infinite;
    }

    .intro-rotator-img--b {
      animation: introFadeB 20s ease-in-out infinite;
    }

    @keyframes introFadeA {
      0% { opacity: 1; }
      45% { opacity: 1; }
      50% { opacity: 0; }
      100% { opacity: 0; }
    }

    @keyframes introFadeB {
      0% { opacity: 0; }
      50% { opacity: 0; }
      55% { opacity: 1; }
      95% { opacity: 1; }
      100% { opacity: 0; }
    }

    .intro-rotator--line {
      padding-bottom: 12px;
    }

    .intro-rotator--line::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 138, 0, 0.9) 30%, rgba(255, 47, 125, 0.9) 52%, rgba(255, 255, 255, 0) 100%);
      background-size: 220% 100%;
      opacity: 0.95;
      filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.6));
      animation: introLineFlow 10s ease-in-out infinite;
    }

    .intro-rotator--line::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -10px;
      height: 22px;
      background: radial-gradient(70% 120% at 50% 0%, rgba(255, 138, 0, 0.22) 0%, rgba(255, 47, 125, 0.16) 40%, rgba(0, 0, 0, 0) 70%);
      pointer-events: none;
      animation: introGlowPulse 10s ease-in-out infinite;
    }

    @keyframes introLineFlow {
      0% { background-position: 0% 50%; filter: hue-rotate(0deg) drop-shadow(0 10px 22px rgba(0, 0, 0, 0.6)); }
      50% { background-position: 100% 50%; filter: hue-rotate(12deg) drop-shadow(0 10px 22px rgba(0, 0, 0, 0.6)); }
      100% { background-position: 0% 50%; filter: hue-rotate(0deg) drop-shadow(0 10px 22px rgba(0, 0, 0, 0.6)); }
    }

    @keyframes introGlowPulse {
      0% { opacity: 0.5; transform: translate3d(0, 0, 0); }
      50% { opacity: 0.95; transform: translate3d(0, 1px, 0); }
      100% { opacity: 0.5; transform: translate3d(0, 0, 0); }
    }

    .intro-breathe img {
      position: relative;
      width: 100%;
      height: auto;
      display: block;
      transform: translate3d(0, 0, 0);
      animation: bhBreathe 7.5s ease-in-out infinite;
      will-change: transform;
    }

    @keyframes bhBreathe {
      0% { transform: translate3d(0, 0, 0); }
      50% { transform: translate3d(0, -0.7%, 0); }
      100% { transform: translate3d(0, 0, 0); }
    }

    @media (prefers-reduced-motion: reduce) {
      .intro-breathe img {
        animation: none;
        transform: none;
      }
      .intro-rotator-img {
        animation: none;
        opacity: 1;
      }
      .intro-rotator-img--b {
        opacity: 0;
      }
      .intro-rotator--line::after,
      .intro-rotator--line::before {
        animation: none;
      }
    }

    .problem-section::before {
      display: none;
    }

    .problem-section::after {
      display: none;
    }

    .omset-strip {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr;
      align-items: center;
      gap: 12px;
      border: 1px solid rgba(249, 115, 22, 0.24);
      border-radius: 18px;
      background: linear-gradient(120deg, rgba(13, 20, 34, 0.92), rgba(10, 14, 24, 0.88));
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
      padding: 14px 16px;
      margin-bottom: 24px;
    }

    .omset-chip {
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 10px;
      color: #f8c88a;
      margin-bottom: 4px;
      display: block;
    }

    .omset-value {
      font-size: 28px;
      font-weight: 800;
      line-height: 1;
      color: #fff;
    }

    .omset-caption {
      display: block;
      margin-top: 3px;
      font-size: 12px;
      color: #b8c1d5;
    }

    .omset-arrow {
      color: #f59e0b;
      font-weight: 800;
      font-size: 20px;
      opacity: 0.9;
    }

    .omset-gain {
      text-align: center;
      border: 1px solid rgba(52, 211, 153, 0.4);
      border-radius: 12px;
      padding: 8px 10px;
      background: linear-gradient(140deg, rgba(16, 185, 129, 0.16), rgba(4, 120, 87, 0.22));
      animation: softPulse 3.6s ease-in-out infinite;
    }

    .omset-gain strong {
      display: block;
      font-size: 26px;
      font-weight: 800;
      color: #6ee7b7;
      line-height: 1;
    }

    .omset-gain span {
      font-size: 11px;
      color: #c6f6de;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .ps-head {
      text-align: center;
      margin: 0 auto 30px;
      max-width: 940px;
      position: relative;
      z-index: 1;
    }

    .ps-badge-row {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .ps-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #cbd5e1;
      border-radius: 999px;
      color: #475569;
      background: #f8fafc;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 7px 14px;
      white-space: nowrap;
    }

    .ps-title {
      margin: 14px 0 10px;
      font-size: clamp(22px, 2.4vw, 32px);
      line-height: 1.2;
      letter-spacing: -0.2px;
      color: #0f172a;
      font-weight: 600;
    }

    .ps-title .accent {
      color: #b91c1c;
    }

    .ps-desc {
      margin: 0 auto;
      max-width: 780px;
      font-size: clamp(13px, 1.1vw, 16px);
      line-height: 1.65;
      color: #334155;
    }

    .ps-compare {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 18px;
      align-items: stretch;
      position: relative;
      z-index: 1;
    }

    .ps-card {
      border-radius: 10px;
      border: 1px solid #e2e8f0;
      padding: 20px 20px 18px;
      position: relative;
      overflow: hidden;
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
      color: #0f172a;
    }

    .ps-card:hover {
      transform: translateY(-1px);
    }

    .ps-card.old {
      background: #ffffff;
      border-color: #f3c8cc;
      box-shadow: none;
    }

    .ps-card.new {
      background: #ffffff;
      border-color: #cdebd8;
      box-shadow: none;
    }

    .ps-cover {
      margin: 0 0 12px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #e2e8f0;
      background: #0b1220;
      height: clamp(220px, 24vw, 320px);
    }

    .ps-cover img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 18%;
      transform-origin: center center;
      transform: scale(1.02);
      animation: kenBurnsZoom 13s ease-in-out infinite alternate;
    }

    .ps-card.old .ps-cover {
      border-color: #f8d3d7;
    }

    .ps-card.old .ps-cover img {
      animation-name: kenBurnsPanLeft;
    }

    .ps-card.new .ps-cover {
      border-color: #cfeadb;
    }

    .ps-card.new .ps-cover img {
      animation-name: kenBurnsPanRight;
      animation-duration: 14s;
    }

    .ps-card h3 {
      margin: 0 0 14px;
      font-size: clamp(18px, 1.45vw, 22px);
      line-height: 1.16;
      letter-spacing: -0.2px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      justify-content: center;
      text-align: center;
    }

    .ps-brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: clamp(16px, 1.35vw, 20px);
      letter-spacing: 0.1px;
    }

    .ps-brand-logo .brand-main {
      color: #0f172a;
      font-weight: 700;
    }

    .ps-brand-logo .brand-hub {
      color: #111827;
      background: #f4b81f;
      border-radius: 6px;
      padding: 3px 8px 4px;
      line-height: 0.9;
      font-weight: 700;
      animation: none;
    }

    .ps-recommend {
      display: inline-block;
      margin: 0 auto 10px;
      display: table;
      font-size: 9px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 999px;
      background: #dcfce7;
      color: #166534;
      border: 1px solid #bbf7d0;
      padding: 5px 9px;
      font-weight: 600;
    }

    .ps-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0;
    }

    .ps-item {
      display: block;
      padding: 12px 0;
      text-align: center;
      border-bottom: 1px solid #e5e7eb;
    }

    .ps-item:last-child {
      border-bottom: 0;
    }

    .ps-card.old .ps-item {
      border-bottom-color: #f9d7da;
    }

    .ps-card.new .ps-item {
      border-bottom-color: #d8efe2;
    }

    .ps-item strong {
      display: block;
      font-size: 13px;
      line-height: 1.36;
      margin-bottom: 3px;
      font-weight: 500;
    }

    .ps-item span {
      display: block;
      font-size: 11px;
      line-height: 1.52;
      color: #475569;
    }

    .ps-vs {
      align-self: center;
      justify-self: center;
      width: 36px;
      height: 36px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 600;
      color: #ffffff;
      background: #f59e0b;
      box-shadow: none;
    }

    .ps-total {
      margin-top: 14px;
      border-radius: 8px;
      padding: 13px 14px;
    }

    .ps-card.old .ps-total {
      border: 1px solid #f8d8dc;
      background: #fff8f8;
    }

    .ps-card.new .ps-total {
      border: 1px solid #d2eddc;
      background: #f6fcf8;
    }

    .ps-total-label {
      display: block;
      font-size: 10px;
      color: #475569;
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 500;
      text-align: center;
    }

    .ps-total-value {
      font-size: clamp(21px, 1.95vw, 31px);
      font-weight: 700;
      line-height: 1.05;
      color: #0f172a;
      transition: color 0.2s linear, text-shadow 0.2s linear;
      display: block;
      text-align: center;
    }

    .ps-total-note {
      display: block;
      margin-top: 6px;
      font-size: 10px;
      line-height: 1.4;
      color: #64748b;
      text-align: center;
    }

    .ps-total-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 8px auto 0;
      padding: 3px 9px;
      border-radius: 999px;
      font-size: 7px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 700;
      color: #fff;
      background-size: 170% 170%;
      animation: badgeFlow 4.6s ease-in-out infinite;
      width: max-content;
      line-height: 1;
    }

    .ps-total-badge-old {
      background-image: linear-gradient(120deg, #ef4444 0%, #f97316 48%, #ef4444 100%);
      box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
    }

    .ps-total-badge-new {
      background-image: linear-gradient(120deg, #16a34a 0%, #22c55e 48%, #0ea5a4 100%);
      box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
    }

    .uc-section {
      margin-top: var(--space-4xl);
      padding: var(--space-2xl) 0 var(--space-sm);
      border-radius: 0;
      background: transparent;
      animation: riseIn 0.7s ease 0.1s both;
    }

    .uc-head {
      text-align: center;
      max-width: 840px;
      margin: 0 auto 22px;
    }

    .uc-badge {
      display: inline-flex;
      padding: 6px 11px;
      border-radius: 999px;
      border: none;
      background: rgba(255, 255, 255, 0.06);
      color: var(--text);
      border: 1px solid var(--line);
      font-size: 9px;
      letter-spacing: 0.12em;
      font-weight: 700;
      text-transform: uppercase;
    }

    .uc-title {
      margin: 12px 0 8px;
      font-size: clamp(21px, 2.2vw, 30px);
      line-height: 1.2;
      color: var(--text);
      font-weight: 600;
    }

    .uc-desc {
      margin: 0;
      font-size: clamp(13px, 1.05vw, 16px);
      line-height: 1.6;
      color: var(--muted);
    }

    .uc-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin: 0 0 20px;
      max-width: 980px;
      margin-left: auto;
      margin-right: auto;
    }

    .uc-tab {
      display: inline-flex;
      appearance: none;
      border: 1px solid var(--line);
      cursor: pointer;
      padding: 7px 11px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
      color: var(--text);
      font-size: 10px;
      font-weight: 500;
      transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .uc-tab:hover {
      transform: translateY(-1px);
      background: rgba(255, 255, 255, 0.08);
    }

    .uc-tab.is-active {
      background: #ffffff;
      color: #0b0c0f;
      border-color: #ffffff;
    }

    .uc-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      align-items: start;
    }

    .uc-card,
    .uc-preview {
      border: none;
      border-radius: 0;
      background: transparent;
      padding: 0;
    }

    .uc-card {
      background: transparent;
    }

    .uc-segment {
      display: inline-flex;
      border-radius: 999px;
      padding: 5px 9px;
      font-size: 9px;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--text);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.06);
    }

    .uc-card h3 {
      margin: 10px 0 8px;
      font-size: clamp(16px, 1.5vw, 22px);
      line-height: 1.3;
      color: #f8fafc;
      font-weight: 600;
      letter-spacing: -0.12px;
    }

    .uc-card p {
      margin: 0 0 12px;
      font-size: 12px;
      line-height: 1.55;
      color: #94a3b8;
    }

    .uc-main-split {
      display: grid;
      grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
      gap: 24px;
      align-items: center;
      max-width: 1120px;
      margin: 0 auto;
    }

    .uc-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 100%;
      align-items: flex-start;
      text-align: left;
    }

    .uc-content #ucTitle {
      margin: 12px 0 8px;
      font-size: clamp(24px, 2.7vw, 36px);
      line-height: 1.2;
      letter-spacing: -0.25px;
      font-weight: 700;
      color: #f8fafc;
      text-align: left;
    }

    .uc-subtitle {
      margin: 10px 0 6px;
      font-size: clamp(15px, 1.2vw, 18px);
      line-height: 1.62;
      color: #e2e8f0;
      font-weight: 500;
      text-align: left;
    }

    .uc-body-main {
      margin: 0;
      font-size: clamp(14px, 1.05vw, 16px);
      line-height: 1.65;
      color: #cbd5e1;
      text-align: left;
    }

    .uc-body-extended {
      margin: 8px 0 0;
      font-size: clamp(13px, 0.98vw, 15px);
      line-height: 1.62;
      color: #aab8cd;
      text-align: left;
    }

    .uc-list {
      margin: 12px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .uc-list li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      padding-left: 0;
      font-size: 12px;
      color: #e2e8f0;
      line-height: 1.5;
      text-align: left;
    }

    .uc-list li > div {
      min-width: 0;
      flex: 1;
    }

    .uc-list li::before {
      content: "✓";
      position: static;
      color: #22c55e;
      font-weight: 700;
      line-height: 1.45;
      text-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
    }

    .uc-list li strong {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: #f8fafc;
      margin-bottom: 2px;
    }

    .uc-list li span {
      display: block;
      font-size: 11px;
      color: #94a3b8;
      line-height: 1.5;
    }

    .uc-showcase {
      --uc-accent: #22c55e;
      --uc-accent-soft: rgba(34, 197, 94, 0.16);
      --uc-tag-border: rgba(56, 189, 248, 0.55);
      --uc-tag-bg: rgba(14, 165, 233, 0.16);
      --uc-tag-text: #bae6fd;
      --uc-cta: linear-gradient(90deg, #ff8a00, #ff5d1d 45%, #ff2fa3);
      --uc-screen-glow: radial-gradient(85% 60% at 15% 0%, rgba(14, 165, 233, 0.18) 0%, rgba(14, 165, 233, 0) 70%);
      margin-top: 0;
      margin-left: auto;
      margin-right: auto;
      max-width: 382px;
      border: none;
      border-radius: 0;
      padding: 0;
      background: transparent;
    }

    .uc-live {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10px;
      color: #dbeafe;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .uc-live .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--uc-accent);
      box-shadow: 0 0 0 6px var(--uc-accent-soft);
      animation: softPulse 2.6s ease-in-out infinite;
    }

    .uc-live .muted {
      color: #94a3b8;
      font-size: 10px;
      margin-left: 4px;
    }

    .uc-iphone {
      position: relative;
      margin: 0 auto;
      width: min(100%, 322px);
      border-radius: 44px;
      border: 1px solid #f9b255;
      background: linear-gradient(160deg, #ffb347 0%, #ff8c2a 46%, #da6f13 100%);
      padding: 9px;
      box-shadow: 0 16px 32px rgba(217, 119, 6, 0.28), inset 0 1px 0 rgba(255, 237, 213, 0.42);
    }

    .wa-contact-frame {
      position: relative;
      overflow: hidden;
      border-radius: 0;
      padding: 18px 0 0;
      text-align: center;
      border: none;
      background: transparent;
      box-shadow: none;
    }

    .uc-content .wa-contact-frame {
      margin-top: 14px;
      text-align: left;
      animation: riseIn 0.72s ease 0.12s both;
    }

    .wa-contact-frame {
      padding: 18px 18px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background:
        radial-gradient(70% 60% at 20% 0%, rgba(34, 197, 94, 0.14) 0%, rgba(34, 197, 94, 0) 70%),
        radial-gradient(70% 60% at 80% 0%, rgba(56, 189, 248, 0.12) 0%, rgba(56, 189, 248, 0) 70%),
        linear-gradient(180deg, rgba(17, 17, 20, 0.92) 0%, rgba(11, 12, 15, 0.92) 100%);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
    }

    .wa-talk-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .wa-talk-kicker {
      color: rgba(255, 255, 255, 0.78);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .wa-talk-kicker-arrow {
      color: rgba(34, 197, 94, 0.92);
      font-size: 18px;
      line-height: 1;
      flex: 0 0 auto;
    }

    .wa-talk-main {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: start;
      gap: 18px;
    }

    .wa-talk-status {
      margin: 0 0 10px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.72);
    }

    .wa-talk-title {
      margin: 0;
      font-size: clamp(34px, 3.4vw, 52px);
      line-height: 0.95;
      letter-spacing: -0.04em;
      color: #ffffff;
      font-weight: 900;
    }

    .wa-contact-desc {
      margin: 12px 0 0;
      max-width: 58ch;
      font-size: 14px;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.72);
    }

    .wa-talk-links {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      margin-top: 16px;
    }

    .wa-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.06);
      color: rgba(255, 255, 255, 0.92);
      font-size: 12px;
      font-weight: 700;
      line-height: 1;
      transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    }

    .wa-pill i {
      font-size: 14px;
      color: rgba(34, 197, 94, 0.95);
    }

    .wa-pill:hover {
      transform: translateY(-1px);
      background: rgba(255, 255, 255, 0.09);
      border-color: rgba(255, 255, 255, 0.18);
    }

    .wa-pill-assistant {
      background: linear-gradient(90deg, rgba(34, 197, 94, 0.22) 0%, rgba(34, 197, 94, 0.14) 55%, rgba(34, 197, 94, 0.2) 100%);
      border-color: rgba(34, 197, 94, 0.34);
    }

    .wa-pill-assistant:hover {
      background: rgba(34, 197, 94, 0.18);
      border-color: rgba(34, 197, 94, 0.42);
    }

    .wa-talk-cta {
      width: 120px;
      height: 120px;
      border-radius: 999px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.92);
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
      transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
      flex: 0 0 auto;
    }

    .wa-talk-cta:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.22);
    }

    .wa-talk-cta-arrow {
      font-size: 18px;
      line-height: 1;
      opacity: 0.92;
    }

    .wa-talk-cta-text {
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .wa-talk-cta-sub {
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.78;
      text-align: center;
      padding: 0 10px;
    }

    @media (max-width: 520px) {
      .wa-contact-frame {
        padding: 16px 14px;
      }

      .wa-talk-main {
        grid-template-columns: 1fr auto;
        align-items: end;
        gap: 10px;
      }

      .wa-talk-cta {
        width: 96px;
        height: 96px;
        justify-self: end;
      }
    }

    .wa-contact-frame::before,
    .wa-contact-frame::after {
      display: none;
    }

    .wa-contact-frame::before {
      width: 220px;
      height: 220px;
      right: -110px;
      top: -120px;
      background: radial-gradient(circle, rgba(34, 197, 94, 0.32) 0%, rgba(34, 197, 94, 0) 72%);
    }

    .wa-contact-frame::after {
      width: 240px;
      height: 240px;
      left: -130px;
      bottom: -140px;
      background: radial-gradient(circle, rgba(56, 189, 248, 0.24) 0%, rgba(56, 189, 248, 0) 74%);
    }

    .wa-contact-head {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0;
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: none;
    }

    .wa-contact-icon {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #16a34a;
      color: #ffffff;
      box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45);
      animation: ucWaPulse 2s ease-in-out infinite;
    }

    .wa-contact-icon svg {
      width: 15px;
      height: 15px;
      display: block;
    }

    .wa-contact-animated {
      margin: 0;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: linear-gradient(90deg, #22c55e, #38bdf8, #22c55e);
      background-size: 220% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: ucTextFlow 3.6s linear infinite;
    }

    .wa-contact-frame .wa-contact-legacy-title {
      position: relative;
      z-index: 1;
      margin: 0;
      font-size: clamp(20px, 2.2vw, 30px);
      line-height: 1.2;
      color: #f8fafc;
      font-weight: 700;
      letter-spacing: -0.2px;
    }

    .wa-contact-panel .wa-contact-desc {
      position: relative;
      z-index: 1;
      margin: 10px 0 0;
      max-width: 62ch;
      font-size: clamp(13px, 1.05vw, 16px);
      line-height: 1.6;
      color: #cbd5e1;
    }

    .wa-contact-label {
      position: relative;
      z-index: 1;
      margin: 12px 0 8px;
      font-size: 12px;
      line-height: 1.4;
      color: #e2e8f0;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .wa-contact-list {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
      justify-items: stretch;
      max-width: 520px;
      margin: 0;
    }

    .wa-contact-btn {
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      width: 100%;
      max-width: 100%;
      min-height: 44px;
      border-radius: 12px;
      padding: 0 18px;
      background: #ffffff;
      color: #111111;
      font-size: 12px;
      font-weight: 700;
      line-height: 1;
      border: 1px solid #111111;
      box-shadow: 0 8px 18px rgba(2, 6, 23, 0.16);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .wa-contact-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(2, 6, 23, 0.24);
    }

    .wa-btn-icon {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      margin-right: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #16a34a;
      flex: 0 0 auto;
    }

    .wa-btn-icon svg {
      width: 18px;
      height: 18px;
      display: block;
    }

    .wa-contact-note {
      position: relative;
      z-index: 1;
      margin: 12px 0 0;
      font-size: 11px;
      color: #94a3b8;
      line-height: 1.5;
    }

    .how-section {
      position: relative;
      margin-top: 56px;
      padding: var(--space-sm) 0 var(--space-2xs);
      animation: riseIn 0.76s ease 0.1s both;
    }

    .how-section::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 8px;
      transform: translateX(-50%);
      width: min(760px, 90vw);
      height: 220px;
      pointer-events: none;
      background: radial-gradient(ellipse at center, rgba(251, 113, 133, 0.18) 0%, rgba(251, 146, 60, 0.08) 38%, rgba(56, 189, 248, 0.05) 58%, rgba(2, 6, 23, 0) 78%);
      filter: blur(10px);
      z-index: 0;
    }

    .how-head {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 780px;
      margin: 0 auto 12px;
    }

    .how-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(245, 158, 11, 0.16);
      color: #fbbf24;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .how-badge i {
      font-size: 10px;
      opacity: 0.92;
    }

    .how-title {
      margin: 10px 0 8px;
      font-size: clamp(21px, 2.2vw, 30px);
      line-height: 1.18;
      color: #f8fafc;
      font-weight: 600;
      letter-spacing: -0.25px;
    }

    .how-title span {
      background: linear-gradient(90deg, #fb923c 0%, #fb7185 56%, #f43f5e 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .how-desc {
      margin: 0 auto;
      max-width: 700px;
      font-size: clamp(12px, 0.95vw, 14px);
      line-height: 1.6;
      color: #cbd5e1;
    }

    .how-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      align-items: start;
      max-width: 1040px;
      margin: 0 auto;
    }

    .how-item {
      text-align: center;
      padding: 2px 4px 0;
      opacity: 0;
      transform: translateY(10px);
      animation: howItemIn 0.65s ease forwards;
    }

    .how-item:nth-child(1) {
      animation-delay: 0.06s;
    }

    .how-item:nth-child(2) {
      animation-delay: 0.16s;
    }

    .how-item:nth-child(3) {
      animation-delay: 0.26s;
    }

    .how-icon-wrap {
      position: relative;
      overflow: hidden;
      width: 92px;
      height: 92px;
      border-radius: 999px;
      margin: 0 auto 8px;
      background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
      display: grid;
      place-items: center;
      box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.12), 0 12px 24px rgba(2, 6, 23, 0.34);
      animation: howFloat 4.2s ease-in-out infinite;
      transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    }

    .how-icon-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(140deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 40%);
      pointer-events: none;
    }

    .how-item:hover .how-icon-wrap {
      transform: translateY(-2px);
      filter: saturate(1.04) brightness(1.04);
    }

    .how-icon {
      width: 66px;
      height: 66px;
      color: #f59e0b;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .how-icon svg {
      width: 42px;
      height: 42px;
      display: block;
    }

    .how-step {
      position: absolute;
      left: 50%;
      bottom: 8px;
      transform: translateX(-50%);
      font-size: clamp(9px, 0.72vw, 10px);
      font-weight: 600;
      line-height: 1;
      color: #fb7185;
      letter-spacing: 0.06em;
    }

    .how-item h3 {
      margin: 0 0 6px;
      font-size: clamp(14px, 1vw, 17px);
      line-height: 1.25;
      color: #f8fafc;
      font-weight: 500;
      letter-spacing: -0.2px;
    }

    .how-item p {
      margin: 0 auto;
      max-width: 310px;
      min-height: 0;
      font-size: 12px;
      line-height: 1.55;
      color: #cbd5e1;
      text-wrap: balance;
    }

    .price-section {
      margin-top: 58px;
      padding: var(--space-2xl) 0 44px;
      animation: riseIn 0.76s ease 0.1s both;
      position: relative;
      isolation: isolate;
    }

    .price-section::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      width: min(1180px, calc(100vw - 28px));
      height: 100%;
      border-radius: 30px;
      background: linear-gradient(130deg, #ffb347 0%, #ff8a00 42%, #ff5d1d 76%, #ff2f6d 100%);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
      z-index: -1;
    }

    .price-head {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 16px;
      color: #ffffff;
    }

    .price-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.35);
      color: #ffffff;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .price-badge i {
      font-size: 10px;
      opacity: 0.92;
    }

    .price-title {
      margin: 10px 0 8px;
      font-family: "Inter", "Segoe UI", Arial, sans-serif;
      font-size: clamp(21px, 2.1vw, 30px);
      line-height: 1.18;
      color: #ffffff;
      font-weight: 600;
      letter-spacing: -0.3px;
    }

    .price-title span {
      color: #ffffff;
    }

    .price-desc {
      margin: 0;
      color: rgba(255, 255, 255, 0.86);
      font-size: clamp(12px, 0.95vw, 14px);
      line-height: 1.6;
    }

    .price-voucher {
      margin: 0 auto 18px;
      max-width: 320px;
      border-radius: 18px;
      padding: 0;
      display: grid;
      gap: 0;
      justify-items: stretch;
      text-align: center;
      background: transparent;
      border: none;
      transition: transform 0.22s ease, filter 0.22s ease;
      position: relative;
      overflow: hidden;
    }

    .price-voucher::before,
    .price-voucher::after {
      content: "";
      position: absolute;
      pointer-events: none;
    }

    .price-voucher::before {
      left: 12px;
      top: 10px;
      width: 6px;
      height: 6px;
      border-radius: 2px;
      background: rgba(255, 255, 255, 0.9);
      transform: rotate(14deg);
      box-shadow:
        26px 8px 0 rgba(255, 255, 255, 0.75),
        80px -4px 0 rgba(255, 255, 255, 0.85),
        160px 10px 0 rgba(255, 255, 255, 0.7),
        240px -2px 0 rgba(255, 255, 255, 0.85);
    }

    .price-voucher::after {
      right: 14px;
      top: 14px;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.8);
      transform: rotate(-10deg);
      box-shadow:
        -32px 10px 0 rgba(255, 255, 255, 0.65),
        -86px -6px 0 rgba(255, 255, 255, 0.82),
        -168px 12px 0 rgba(255, 255, 255, 0.6);
    }

    .voucher-ticket {
      position: relative;
      padding: 14px 14px 12px;
      border-radius: 18px 18px 14px 14px;
      background:
        radial-gradient(circle at 12px 0, transparent 0 9px, #ffffff 10px) 0 0 / 22px 16px repeat-x,
        linear-gradient(#ffffff, #ffffff) 0 10px / 100% calc(100% - 10px) no-repeat;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
      overflow: hidden;
    }

    .voucher-ticket::before,
    .voucher-ticket::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: rgba(22, 27, 44, 0.22);
      transform: translateY(-8px);
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.65);
    }

    .voucher-ticket::before {
      left: -6px;
    }

    .voucher-ticket::after {
      right: -6px;
    }

    .voucher-ticket-top {
      display: grid;
      gap: 6px;
      justify-items: center;
    }

    .voucher-title {
      font-size: 16px;
      letter-spacing: 0.18em;
      font-weight: 800;
      color: #a16207;
    }

    .voucher-code {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: #111827;
      opacity: 0.92;
    }

    .voucher-code strong {
      margin-left: 8px;
      padding: 3px 8px;
      border-radius: 999px;
      background: #111827;
      color: #ffffff;
      letter-spacing: 0.12em;
      font-weight: 900;
      font-size: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .voucher-tear {
      margin: 10px auto 0;
      width: min(240px, 100%);
      border-top: 2px dashed rgba(17, 24, 39, 0.18);
      opacity: 0.9;
    }

    .voucher-offer {
      margin-top: 10px;
      display: grid;
      justify-items: center;
    }

    .voucher-offer-badge {
      width: min(240px, 100%);
      border-radius: 12px;
      background: linear-gradient(180deg, #ff6b6b 0%, #ef4444 100%);
      box-shadow: 0 12px 22px rgba(239, 68, 68, 0.22);
      padding: 10px 12px 10px;
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .voucher-offer-badge::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(220px 60px at 18% 22%, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 62%);
      pointer-events: none;
    }

    .voucher-offer-badge::after {
      content: "";
      position: absolute;
      inset: -20% -40%;
      background: linear-gradient(110deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.42) 48%, rgba(255, 255, 255, 0) 62%);
      transform: translateX(-40%);
      opacity: 0.9;
      pointer-events: none;
      animation: voucherShimmer 3.2s ease-in-out infinite;
    }

    .voucher-offer-big {
      display: block;
      font-size: 22px;
      letter-spacing: 0.04em;
      font-weight: 900;
      line-height: 1.05;
      position: relative;
      z-index: 1;
    }

    .voucher-offer-sub {
      display: block;
      margin-top: 7px;
      font-size: 9px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0.9;
      position: relative;
      z-index: 1;
    }

    .voucher-envelope {
      position: relative;
      margin-top: -12px;
      background: linear-gradient(180deg, #ff6b6b 0%, #ef4444 100%);
      border-radius: 0 0 18px 18px;
      padding: 20px 14px 14px;
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
    }

    .voucher-ticket {
      animation: voucherFloat 3.8s ease-in-out infinite;
      transform-origin: 50% 50%;
    }

    .voucher-envelope {
      animation: voucherFloat 3.8s ease-in-out infinite;
      animation-delay: 0.12s;
      transform-origin: 50% 50%;
    }

    .price-voucher:hover .voucher-ticket,
    .price-voucher:hover .voucher-envelope {
      filter: saturate(1.02) brightness(1.02);
    }

    .voucher-envelope::before {
      content: "";
      position: absolute;
      left: 50%;
      top: -14px;
      width: 120%;
      height: 34px;
      transform: translateX(-50%);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
      border-radius: 999px;
      opacity: 0.35;
      pointer-events: none;
    }

    .voucher-envelope-text {
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 6px;
    }

    .voucher-envelope-tag {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.88);
      margin-bottom: 10px;
    }

    .voucher-input-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .voucher-input {
      flex: 1;
      min-width: 0;
      min-height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(11, 12, 15, 0.22);
      color: rgba(255, 255, 255, 0.96);
      font: inherit;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.04em;
      padding: 0 12px;
      outline: none;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
    }

    .voucher-input::placeholder {
      color: rgba(255, 255, 255, 0.78);
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .voucher-input:focus-visible {
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.44), 0 0 0 4px rgba(15, 23, 42, 0.9);
    }

    @media (max-width: 420px) {
      .voucher-input {
        flex-basis: 100%;
      }

      .voucher-btn {
        width: 100%;
      }
    }

    .voucher-hint {
      margin-top: 10px;
      font-size: 10px;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.88);
    }

    .voucher-hint strong {
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .voucher-slot {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.18);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
      color: #ffffff;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-left: 6px;
      animation: voucherSlotPulse 1.9s ease-in-out infinite;
    }

    .voucher-btn {
      min-height: 34px;
      padding: 0 16px;
      border-radius: 999px;
      border: none;
      background: linear-gradient(180deg, #ffe08a 0%, #fbbf24 100%);
      color: rgba(120, 53, 15, 0.98);
      font-size: 10px;
      font-weight: 900;
      cursor: pointer;
      transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      box-shadow: 0 12px 18px rgba(0, 0, 0, 0.16);
      justify-content: center;
      text-align: center;
      margin: 0;
    }

    .voucher-btn:hover {
      transform: translateY(-1px);
      filter: brightness(1.03);
      box-shadow: 0 18px 26px rgba(0, 0, 0, 0.2);
    }

    .voucher-btn:disabled {
      cursor: default;
      opacity: 0.88;
    }

    @media (min-width: 720px) {
      .price-voucher {
        max-width: 320px;
      }
    }

    @media (min-width: 920px) {
      .price-voucher {
        max-width: 640px;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
      }

      .voucher-ticket {
        border-radius: 18px 0 0 18px;
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
      }

      .voucher-envelope {
        margin-top: 0;
        border-radius: 0 18px 18px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 22px 16px 16px;
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
      }

      .voucher-envelope::before {
        top: -16px;
        height: 34px;
        opacity: 0.28;
      }
    }

    @media (max-width: 420px) {
      .price-voucher {
        max-width: 280px;
      }

      .voucher-ticket {
        padding: 12px 12px 10px;
      }

      .voucher-title {
        font-size: 14px;
      }

      .voucher-offer-badge {
        width: min(220px, 100%);
      }

      .voucher-offer-big {
        font-size: 20px;
      }

      .voucher-envelope {
        margin-top: 8px;
        border-radius: 18px;
        padding: 16px 12px 12px;
      }
    }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      align-items: stretch;
      max-width: 1040px;
      margin: 0 auto;
    }

    .custom-plan-wrap {
      max-width: 1040px;
      margin: 16px auto 0;
    }

    .custom-plan-card {
      border-radius: 22px;
      padding: 22px 22px 20px;
      background: #ffffff;
      border: 1px solid #e5e7eb;
      box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
      color: #0b0c0f;
      text-align: left;
    }

    .custom-plan-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 8px;
    }

    .custom-plan-pill {
      border-radius: 999px;
      padding: 8px 12px;
      background: #0b0c0f;
      color: #ffffff;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .custom-plan-badge {
      border-radius: 999px;
      padding: 7px 11px;
      border: 1px solid rgba(90, 107, 255, 0.24);
      background: rgba(90, 107, 255, 0.08);
      color: #2a319a;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .custom-plan-card h3 {
      margin: 4px 0 8px;
      font-size: clamp(20px, 2.2vw, 28px);
      line-height: 1.2;
      color: #0b0c0f;
    }

    .custom-plan-card p {
      margin: 0;
      max-width: 860px;
      color: #1f2937;
      font-size: 14px;
      line-height: 1.7;
    }

    .custom-plan-list {
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .custom-plan-list li {
      position: relative;
      padding-left: 22px;
      color: #111827;
      font-size: 13px;
      line-height: 1.45;
    }

    .custom-plan-list li::before {
      content: "•";
      position: absolute;
      left: 6px;
      top: 0;
      font-weight: 900;
      color: #5a6bff;
    }

    .custom-plan-actions {
      margin-top: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .custom-plan-actions .plan-btn {
      margin: 0;
    }

    .custom-plan-wa {
      min-height: 36px;
      padding: 9px 14px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #0b0c0f;
      border: 1px solid rgba(11, 12, 15, 0.2);
      background: rgba(11, 12, 15, 0.04);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }

    .custom-plan-wa:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
      background: rgba(11, 12, 15, 0.08);
    }

    .plan-card {
      border-radius: 22px;
      padding: 20px 18px 16px;
      background: #ffffff;
      box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
      position: relative;
      overflow: hidden;
      text-align: center;
      min-height: 0;
      border: 1px solid #e5e7eb;
      color: #0b0c0f;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
    }

    .plan-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 1px;
      background: rgba(0, 0, 0, 0.06);
      opacity: 1;
      background-size: 200% 100%;
      background-position: 0% 50%;
      transition: background-position 0.45s ease, opacity 0.25s ease;
    }

    .plan-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
      border-color: rgba(0, 0, 0, 0.12);
    }

    .plan-card:hover::before {
      background-position: 100% 50%;
      opacity: 1;
    }

    .plan-card.is-featured {
      background: #ffffff;
      color: #0b0c0f;
      transform: translateY(-4px);
      box-shadow: 0 28px 64px rgba(0, 0, 0, 0.3);
      border-color: rgba(0, 0, 0, 0.18);
    }

    .plan-card.is-featured::before {
      background: rgba(0, 0, 0, 0.08);
      opacity: 1;
    }

    .plan-card.is-featured:hover {
      transform: translateY(-6px);
      box-shadow: 0 34px 74px rgba(0, 0, 0, 0.34);
    }

    .plan-top {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 2px;
      flex-wrap: wrap;
    }

    .plan-pill {
      position: relative;
      top: auto;
      left: auto;
      border-radius: 10px;
      padding: 8px 14px;
      font-size: 12px;
      font-weight: 800;
      background: #0b0c0f;
      color: #ffffff;
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
      clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
      line-height: 1;
    }

    .plan-pill-soft {
      background: #e5e7eb;
      color: #0b0c0f;
    }

    .plan-pill-basic {
      background: #27cfc7;
      color: #ffffff;
    }

    .plan-pill-standard {
      background: #5a6bff;
      color: #ffffff;
    }

    .plan-pill-premium {
      background: #b06bff;
      color: #ffffff;
    }

    .plan-card h3 {
      margin: 34px 0 0;
      font-family: "Inter", "Segoe UI", Arial, sans-serif;
      font-size: 18px;
      color: #0b0c0f;
      line-height: 1.15;
      font-weight: 700;
      letter-spacing: -0.2px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .plan-card h3 i {
      font-size: 0.88em;
      opacity: 0.9;
      flex: 0 0 auto;
    }

    .plan-domain {
      margin: 0;
      display: inline-flex;
      padding: 6px 10px;
      border-radius: 999px;
      background: #f3f4f6;
      color: #6b7280;
      font-size: 11px;
      font-weight: 600;
      border: 1px solid #e5e7eb;
    }

    .plan-copy {
      margin: 10px auto 0;
      font-size: 13px;
      line-height: 1.5;
      color: #4b5563;
      min-height: 0;
      max-width: 360px;
    }

    .plan-old {
      margin: 0;
      font-size: 18px;
      color: #6b7280;
      line-height: 1;
      max-height: 0;
      opacity: 0;
      transform: translateY(-4px);
      overflow: hidden;
      transition: max-height 0.28s ease, opacity 0.28s ease, transform 0.28s ease, margin 0.28s ease;
    }

    .plan-old span {
      position: relative;
      display: inline-block;
      color: #6b7280;
      white-space: nowrap;
    }

    .plan-old span::after {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: rgba(11, 12, 15, 0.7);
      transform: translateY(-50%);
    }

    .plan-price {
      margin: 16px 0 0;
      color: #0b0c0f;
      font-size: 14px;
      line-height: 1.3;
      display: flex;
      align-items: baseline;
      gap: 6px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .plan-price strong {
      font-family: "Inter", "Segoe UI", Arial, sans-serif;
      font-size: clamp(53px, 4.5vw, 78px);
      line-height: 1;
      color: #0b0c0f;
      letter-spacing: -1px;
      text-shadow: none;
    }

    .plan-currency {
      font-size: 0.42em;
      font-weight: 800;
      margin-right: 6px;
      opacity: 0.92;
      vertical-align: top;
    }

    .plan-price-discount {
      display: none;
      background-image: linear-gradient(90deg, #55c7ff 0%, #6d5efc 48%, #d85cff 100%);
      background-size: 200% 100%;
      background-position: 0% 50%;
      color: #6d5efc;
    }

    @supports (-webkit-background-clip: text) or (background-clip: text) {
      .plan-price .plan-price-discount {
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
      }
    }

    .plan-card.plan-basic .plan-price .plan-price-discount {
      background-image: linear-gradient(90deg, #19d3c5 0%, #55c7ff 52%, #6d5efc 100%);
    }

    .plan-card.plan-standard .plan-price .plan-price-discount {
      background-image: linear-gradient(90deg, #55c7ff 0%, #6d5efc 52%, #3d5afe 100%);
    }

    .plan-card.plan-premium .plan-price .plan-price-discount {
      background-image: linear-gradient(90deg, #6d5efc 0%, #b06bff 52%, #d85cff 100%);
    }

    .plan-price-unit {
      display: inline-block;
      font-size: 12px;
      color: #6b7280;
      font-weight: 500;
      opacity: 0.9;
      padding-bottom: 4px;
    }

    .plan-billing-notes {
      margin-top: 8px;
      text-align: center;
    }

    .plan-billing-note {
      display: block;
      font-size: 12px;
      color: #6b7280;
      font-weight: 500;
      line-height: 1.4;
    }

    .plan-card.is-featured .plan-domain {
      background: #f3f4f6;
      color: #6b7280;
    }

    .plan-card.is-featured .plan-copy,
    .plan-card.is-featured .plan-old,
    .plan-card.is-featured .plan-price {
      color: #0b0c0f;
    }

    .plan-card.is-featured .plan-price .plan-price-normal {
      color: #0b0c0f;
    }

    .stats-section {
      margin-top: 36px;
      padding: 0 0 var(--space-2xs);
      animation: riseIn 0.76s ease 0.12s both;
    }

    .stats-grid {
      width: min(1180px, calc(100vw - 28px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .stats-card {
      border-radius: 18px;
      padding: 12px 10px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.04);
      box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
      text-align: center;
    }

    .stats-value {
      font-family: "Inter", "Segoe UI", Arial, sans-serif;
      font-size: clamp(19px, 2vw, 28px);
      font-weight: 900;
      letter-spacing: -0.03em;
      background-image: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.78) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .stats-label {
      margin-top: 6px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(229, 231, 235, 0.72);
    }

    .cta-section {
      margin-top: 34px;
      padding: 0 0 var(--space-2xs);
      animation: riseIn 0.76s ease 0.12s both;
    }

    .cta-card {
      width: min(1180px, calc(100vw - 28px));
      margin: 0 auto;
      border-radius: 22px;
      padding: clamp(18px, 2.4vw, 28px) clamp(14px, 2vw, 24px);
      text-align: center;
      color: #ffffff;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
    }

    .cta-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 8px 8px, rgba(255, 255, 255, 0.12) 1px, transparent 1.6px);
      background-size: 18px 18px;
      opacity: 0.22;
      z-index: -1;
    }

    .cta-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(80% 60% at 50% 10%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
      z-index: -1;
    }

    .cta-card--sunset {
      background:
        radial-gradient(70% 70% at 30% 15%, rgba(249, 115, 22, 0.35) 0%, rgba(249, 115, 22, 0) 65%),
        radial-gradient(70% 70% at 70% 0%, rgba(236, 72, 153, 0.28) 0%, rgba(236, 72, 153, 0) 62%),
        linear-gradient(180deg, rgba(17, 17, 20, 0.94) 0%, rgba(11, 12, 15, 0.94) 100%);
    }

    .cta-card--blast {
      background:
        radial-gradient(70% 70% at 30% 15%, rgba(34, 197, 94, 0.26) 0%, rgba(34, 197, 94, 0) 65%),
        radial-gradient(70% 70% at 70% 0%, rgba(249, 115, 22, 0.26) 0%, rgba(249, 115, 22, 0) 62%),
        linear-gradient(180deg, rgba(17, 17, 20, 0.94) 0%, rgba(11, 12, 15, 0.94) 100%);
    }

    .cta-icon {
      width: 48px;
      height: 48px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      margin: 0 auto 14px;
      background: rgba(0, 0, 0, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.28);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    }

    .cta-icon i {
      font-size: 22px;
      color: rgba(255, 255, 255, 0.95);
    }

    .cta-card--blast .cta-icon {
      background: rgba(0, 0, 0, 0.2);
    }

    .cta-card--blast .cta-icon i {
      color: rgba(255, 255, 255, 0.98);
    }

    .cta-title {
      margin: 0;
      font-family: "Inter", "Segoe UI", Arial, sans-serif;
      font-size: clamp(22px, 2.8vw, 30px);
      line-height: 1.16;
      letter-spacing: -0.04em;
      font-weight: 600;
    }

    .cta-desc {
      margin: 14px auto 0;
      max-width: 62ch;
      color: rgba(255, 255, 255, 0.86);
      font-size: 13px;
      line-height: 1.58;
    }

    .cta-actions {
      margin-top: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 9px 14px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 12px;
      line-height: 1.32;
      letter-spacing: 0.01em;
      transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
      min-width: 140px;
    }

    .cta-btn:hover {
      transform: translateY(-1px);
      filter: brightness(1.03);
    }

    .cta-btn:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22), 0 0 0 6px rgba(0, 0, 0, 0.35);
    }

    .cta-btn-primary {
      background: rgba(0, 0, 0, 0.92);
      color: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.5);
    }

    .cta-btn-secondary {
      background: rgba(255, 255, 255, 0.14);
      color: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(255, 255, 255, 0.22);
      backdrop-filter: blur(10px);
    }

    .cta-btn-assistant {
      background: rgba(34, 197, 94, 0.16);
      border-color: rgba(34, 197, 94, 0.35);
    }

    .cta-btn-assistant:hover {
      background: rgba(34, 197, 94, 0.2);
      border-color: rgba(34, 197, 94, 0.44);
    }

    .site-footer {
      margin-top: 40px;
      padding: 28px 0 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.02);
    }

    .site-footer .container {
      width: min(1200px, calc(100% - 48px));
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 14px;
      align-items: start;
    }

    .footer-brand,
    .footer-col {
      min-width: 0;
      text-align: left;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 900;
      letter-spacing: 0.2px;
      font-size: 17px;
      line-height: 1;
    }

    .footer-desc {
      margin: 10px 0 0;
      max-width: 52ch;
      color: rgba(229, 231, 235, 0.78);
      line-height: 1.6;
      font-size: 11px;
    }

    .footer-title {
      margin: 0 0 10px;
      color: rgba(255, 255, 255, 0.92);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .footer-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .footer-list a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: rgba(229, 231, 235, 0.78);
      font-size: 12px;
      transition: color 0.2s ease, opacity 0.2s ease;
    }

    .footer-list a::before {
      content: "↗";
      font-size: 9px;
      color: rgba(251, 146, 60, 0.92);
      opacity: 0.9;
    }

    .footer-list a:hover {
      color: rgba(255, 255, 255, 0.94);
    }

    .footer-bottom {
      margin-top: 18px;
      padding-top: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: rgba(229, 231, 235, 0.6);
      font-size: 11px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-links {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: rgba(229, 231, 235, 0.85);
      font-size: 10px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.05);
      border-radius: 999px;
      padding: 4px 8px;
      line-height: 1;
    }

    .footer-links a:hover {
      color: rgba(255, 255, 255, 0.94);
    }

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

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-links {
        gap: 10px;
      }
    }

    .page-main {
      padding: 36px 0 48px;
    }

    .page-hero {
      width: min(var(--content-max), calc(100vw - 40px));
      margin: 0 auto 20px;
      color: rgba(229, 231, 235, 0.86);
    }

    .page-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.06);
      color: rgba(255, 255, 255, 0.82);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .page-hero h1 {
      margin: 12px 0 8px;
      font-size: clamp(22px, 2.4vw, 32px);
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: -0.03em;
      color: #ffffff;
    }

    .page-hero p {
      margin: 0;
      max-width: 72ch;
      line-height: 1.72;
      color: rgba(229, 231, 235, 0.74);
    }

    .page-content {
      width: min(var(--content-max), calc(100vw - 40px));
      margin: 0 auto;
    }

    .page-content .grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .page-content .faq-list {
      display: grid;
      gap: 16px;
    }

    .page-content .card {
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
      padding: 18px 18px;
      color: rgba(229, 231, 235, 0.82);
    }

    .page-content .card h2 {
      margin: 0 0 12px;
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .page-content .card p {
      margin: 0;
      line-height: 1.72;
      color: rgba(229, 231, 235, 0.74);
    }

    .page-content .card ul {
      margin: 2px 0 0;
      padding-left: 18px;
      line-height: 1.72;
      color: rgba(229, 231, 235, 0.74);
    }

    .page-content .card li + li {
      margin-top: 6px;
    }

    .page-content .cta-line a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 10px;
      padding: 9px 13px;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.12);
      border: 1px solid rgba(34, 197, 94, 0.28);
      color: rgba(209, 250, 229, 0.95);
      font-weight: 700;
    }

    .content-grid {
      width: min(var(--content-max), calc(100vw - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .order-content-grid {
      grid-template-columns: minmax(0, 1.36fr) minmax(280px, 0.64fr);
      align-items: start;
    }

    .order-content-grid > .content-card {
      height: auto;
    }

    .order-assistant-card {
      position: sticky;
      top: 92px;
    }

    .content-card {
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
      padding: 18px 18px;
      color: rgba(229, 231, 235, 0.82);
    }

    .content-card h2 {
      margin: 0 0 12px;
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .content-card p {
      margin: 0;
      line-height: 1.72;
      color: rgba(229, 231, 235, 0.74);
    }

    .content-card ul {
      margin: 2px 0 0;
      padding-left: 18px;
      line-height: 1.72;
      color: rgba(229, 231, 235, 0.74);
    }

    .content-card li + li {
      margin-top: 6px;
    }

    .wb-chat {
      margin-top: 10px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.03);
      padding: 14px;
    }

    .wb-bubble {
      margin: 8px 0;
      padding: 10px 12px;
      border-radius: 12px;
      font-size: 14px;
      line-height: 1.55;
    }

    .wb-bubble.in {
      background: rgba(34, 197, 94, 0.12);
      border: 1px solid rgba(34, 197, 94, 0.28);
      color: rgba(209, 250, 229, 0.95);
    }

    .wb-bubble.out {
      background: rgba(99, 102, 241, 0.12);
      border: 1px solid rgba(99, 102, 241, 0.28);
      color: rgba(224, 231, 255, 0.92);
    }

    .wb-chat-meta {
      margin-top: 10px;
      color: rgba(134, 239, 172, 0.86);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .wb-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 12px;
    }

    .wb-metric {
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.03);
      padding: 10px;
      text-align: center;
    }

    .wb-metric .v {
      color: #ffffff;
      font-size: 22px;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .wb-metric .l {
      color: rgba(203, 213, 225, 0.82);
      font-size: 12px;
      margin-top: 4px;
      font-weight: 600;
    }

    .wb-pricing {
      margin-top: 14px;
    }

    .wb-showcase {
      width: min(var(--content-max), calc(100vw - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items: center;
    }

    .wb-showcase-media {
      position: relative;
      min-height: 420px;
    }

    .wb-showcase-glow {
      position: absolute;
      inset: -12px;
      border-radius: 28px;
      background: radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.28) 0%, rgba(34, 197, 94, 0) 55%), radial-gradient(circle at 80% 60%, rgba(249, 115, 22, 0.28) 0%, rgba(249, 115, 22, 0) 60%);
      filter: blur(16px);
    }

    .wb-showcase-canvas {
      position: relative;
      border-radius: 26px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      min-height: 420px;
      background: #0f172a;
      box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
    }

    .wb-showcase-canvas img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(0.95) contrast(1.03);
    }

    .wb-show-bubble {
      position: absolute;
      max-width: 190px;
      font-size: 11px;
      line-height: 1.45;
      border-radius: 14px;
      padding: 8px 10px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
      animation: liveFloat 5s ease-in-out infinite;
    }

    .wb-show-bubble-a {
      left: 12px;
      top: 14px;
      background: rgba(255, 255, 255, 0.94);
      color: #111827;
    }

    .wb-show-bubble-b {
      right: 14px;
      top: 110px;
      background: rgba(34, 197, 94, 0.92);
      color: #f0fdf4;
      animation-delay: 0.8s;
    }

    .wb-show-bubble-c {
      left: 26px;
      bottom: 78px;
      background: rgba(255, 255, 255, 0.92);
      color: #111827;
      animation-delay: 1.6s;
    }

    .wb-show-meta {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 14px;
      border-radius: 999px;
      padding: 7px 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: rgba(22, 163, 74, 0.22);
      border: 1px solid rgba(34, 197, 94, 0.44);
      color: rgba(209, 250, 229, 0.96);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .wb-showcase-copy h2 {
      margin: 0;
      color: #ffffff;
      font-size: clamp(34px, 4.4vw, 58px);
      line-height: 1.07;
      letter-spacing: -0.03em;
      font-weight: 800;
    }

    .wb-showcase-copy h2 span {
      background: linear-gradient(90deg, rgba(74, 222, 128, 0.98), rgba(249, 115, 22, 0.95));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .wb-showcase-copy p {
      margin: 12px 0 0;
      color: rgba(229, 231, 235, 0.8);
      font-size: 15px;
      line-height: 1.7;
      max-width: 58ch;
    }

    .wb-feature-grid {
      width: min(var(--content-max), calc(100vw - 40px));
      margin: 18px auto 0;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }

    .wb-feature-card {
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.03);
      padding: 12px;
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    }

    .wb-feature-card h3 {
      margin: 0;
      color: #ffffff;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: -0.01em;
    }

    .wb-feature-card p {
      margin: 6px 0 0;
      color: rgba(229, 231, 235, 0.74);
      font-size: 12px;
      line-height: 1.55;
    }

    .wb-pack-head {
      width: min(var(--content-max), calc(100vw - 40px));
      margin: 28px auto 0;
      text-align: center;
    }

    .wb-pack-badge {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 6px 12px;
      border: 1px solid rgba(34, 197, 94, 0.26);
      background: rgba(34, 197, 94, 0.08);
      color: rgba(74, 222, 128, 0.95);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .wb-pack-head h3 {
      margin: 10px 0 0;
      color: #ffffff;
      font-size: clamp(24px, 3vw, 36px);
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .wb-pack-head h3 span {
      background: linear-gradient(90deg, rgba(74, 222, 128, 0.98), rgba(249, 115, 22, 0.95));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .wb-pack-head p {
      margin: 8px 0 0;
      color: rgba(203, 213, 225, 0.78);
      font-size: 13px;
    }

    .wb-voucher {
      width: min(var(--content-max), calc(100vw - 40px));
      margin: 14px auto 10px;
    }

    .wb-voucher-card {
      border-radius: 16px;
      border: 1px solid rgba(34, 197, 94, 0.24);
      background: rgba(15, 23, 42, 0.66);
      padding: 12px;
    }

    .wb-voucher-title {
      color: #e2e8f0;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.03em;
      margin: 0 0 8px;
    }

    .wb-voucher-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px;
    }

    .wb-voucher-input {
      min-height: 38px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(15, 23, 42, 0.78);
      color: #f8fafc;
      padding: 0 12px;
      font-size: 13px;
      outline: none;
    }

    .wb-voucher-btn {
      min-height: 38px;
      border-radius: 10px;
      border: 1px solid rgba(34, 197, 94, 0.4);
      background: rgba(34, 197, 94, 0.16);
      color: rgba(209, 250, 229, 0.95);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0 12px;
      cursor: pointer;
    }

    .wb-voucher-status {
      margin-top: 8px;
      color: rgba(203, 213, 225, 0.84);
      font-size: 12px;
    }

    .wb-title {
      margin: 10px 0 8px;
    }

    .wb-plans {
      width: min(var(--content-max), calc(100vw - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      align-items: stretch;
    }

    .wb-plan {
      position: relative;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
      padding: 16px 16px;
      color: rgba(229, 231, 235, 0.82);
    }

    .wb-plan h3 {
      margin: 0;
      color: #ffffff;
      font-size: 18px;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .wb-sub {
      margin: 8px 0 0;
      color: rgba(229, 231, 235, 0.68);
      line-height: 1.6;
      font-size: 13px;
    }

    .wb-kontak {
      margin-top: 10px;
      color: rgba(147, 197, 253, 0.92);
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    .wb-old {
      margin: 10px 0 0;
      color: rgba(148, 163, 184, 0.78);
      font-size: 13px;
      text-decoration: line-through;
      text-decoration-thickness: 2px;
      text-decoration-color: rgba(148, 163, 184, 0.4);
    }

    .wb-price {
      display: flex;
      gap: 6px;
      align-items: flex-end;
      margin: 10px 0 6px;
    }

    .wb-price .nominal {
      color: #ffffff;
      font-size: 34px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.03em;
    }

    .wb-price .unit {
      color: rgba(203, 213, 225, 0.86);
      font-size: 14px;
      font-weight: 700;
    }

    .wb-note {
      color: rgba(134, 239, 172, 0.9);
      font-weight: 700;
      font-size: 13px;
    }

    .wb-buy {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 12px;
      border-radius: 999px;
      padding: 10px 14px;
      border: 1px solid rgba(34, 197, 94, 0.38);
      background: rgba(34, 197, 94, 0.14);
      color: rgba(209, 250, 229, 0.95);
      font-weight: 800;
      width: 100%;
    }

    .wb-list {
      margin: 12px 0 0;
      padding-left: 18px;
      color: rgba(229, 231, 235, 0.74);
      line-height: 1.7;
    }

    .wb-plan-reco {
      border-color: rgba(250, 204, 21, 0.38);
      background:
        radial-gradient(70% 70% at 70% 0%, rgba(250, 204, 21, 0.16) 0%, rgba(250, 204, 21, 0) 62%),
        radial-gradient(70% 70% at 30% 10%, rgba(236, 72, 153, 0.12) 0%, rgba(236, 72, 153, 0) 62%),
        rgba(255, 255, 255, 0.04);
    }

    .wb-tag {
      position: absolute;
      top: 12px;
      right: 12px;
      font-size: 11px;
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(250, 204, 21, 0.18);
      border: 1px solid rgba(250, 204, 21, 0.4);
      color: rgba(253, 230, 138, 0.96);
      font-weight: 900;
      letter-spacing: 0.06em;
    }

    .wb-more {
      width: min(var(--content-max), calc(100vw - 40px));
      margin: 18px auto 0;
      text-align: center;
      color: rgba(229, 231, 235, 0.72);
    }

    .wb-more a {
      color: rgba(251, 146, 60, 0.92);
      font-weight: 700;
    }

    .wb-more a:hover {
      color: rgba(255, 255, 255, 0.92);
    }

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

      .wb-feature-grid {
        grid-template-columns: 1fr;
      }

      .wb-plans {
        grid-template-columns: 1fr;
      }

      .wb-voucher-row {
        grid-template-columns: 1fr;
      }
    }

    .order-form {
      margin-top: 10px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .form-col-full {
      grid-column: 1 / -1;
    }

    .form-field label {
      display: block;
      margin: 0 0 6px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(229, 231, 235, 0.72);
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(0, 0, 0, 0.18);
      color: rgba(255, 255, 255, 0.9);
      padding: 10px 12px;
      font-family: "Inter", "Segoe UI", Arial, sans-serif;
      font-size: 14px;
      line-height: 1.4;
      outline: none;
      transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    }

    .form-field textarea {
      resize: vertical;
      min-height: 120px;
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder {
      color: rgba(229, 231, 235, 0.5);
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: rgba(249, 115, 22, 0.4);
      background: rgba(0, 0, 0, 0.22);
      box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
    }

    .voucher-input-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .voucher-input-wrap input {
      flex: 1 1 auto;
    }

    .voucher-apply-btn {
      flex: 0 0 auto;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(0, 0, 0, 0.18);
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0;
      text-transform: none;
      padding: 10px 12px;
    }

    .voucher-apply-btn:hover {
      border-color: rgba(249, 115, 22, 0.4);
      background: rgba(0, 0, 0, 0.22);
    }

    .voucher-hint {
      margin-top: 6px;
      font-size: 12px;
      color: rgba(229, 231, 235, 0.7);
    }

    .voucher-feedback-row {
      margin-top: 7px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .voucher-state-badge {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.4);
      background: rgba(30, 41, 59, 0.45);
      color: rgba(226, 232, 240, 0.95);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    .voucher-state-badge[data-state="checking"] {
      border-color: rgba(96, 165, 250, 0.5);
      background: rgba(30, 64, 175, 0.3);
      color: rgba(191, 219, 254, 0.98);
    }

    .voucher-state-badge[data-state="valid"] {
      border-color: rgba(74, 222, 128, 0.55);
      background: rgba(21, 128, 61, 0.32);
      color: rgba(187, 247, 208, 0.98);
    }

    .voucher-state-badge[data-state="invalid"] {
      border-color: rgba(248, 113, 113, 0.55);
      background: rgba(127, 29, 29, 0.35);
      color: rgba(254, 202, 202, 0.98);
    }

    .voucher-hint[data-type="err"] {
      color: rgba(252, 165, 165, 0.95);
    }

    .upload-file-input {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .upload-file-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .upload-file-btn {
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(0, 0, 0, 0.18);
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0;
      text-transform: none;
      padding: 10px 12px;
    }

    .upload-file-btn:hover {
      border-color: rgba(249, 115, 22, 0.4);
      background: rgba(0, 0, 0, 0.22);
    }

    .upload-file-name {
      font-size: 14px;
      color: rgba(229, 231, 235, 0.5);
    }

    .file-preview {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
      margin-top: 10px;
    }

    .file-preview img {
      width: 100%;
      height: 66px;
      border-radius: 10px;
      object-fit: cover;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.03);
    }

    .order-submit {
      width: 100%;
      margin-top: 4px;
    }

    .payment-proof-meta {
      margin-top: 8px;
      font-size: 12px;
      color: rgba(229, 231, 235, 0.72);
    }

    .payment-proof-wrap {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .payment-proof-title {
      display: block;
      margin-bottom: 8px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(229, 231, 235, 0.72);
    }

    .payment-proof-input {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .payment-box {
      border-radius: 18px;
      border: 1px solid rgba(255, 0, 128, 0.34);
      background:
        radial-gradient(130% 110% at 0% 0%, rgba(255, 0, 128, 0.16), rgba(255, 0, 128, 0) 55%),
        linear-gradient(180deg, rgba(8, 8, 10, 0.95), rgba(10, 10, 12, 0.94));
      box-shadow: 0 18px 44px rgba(255, 0, 128, 0.12);
      padding: 16px;
    }

    .payment-fast-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 0, 128, 0.44);
      color: #ff4fa2;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      margin-bottom: 12px;
      background: rgba(255, 0, 128, 0.12);
    }

    .payment-box-head {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-bottom: 12px;
    }

    .payment-box h3 {
      margin: 0 0 8px;
      font-size: clamp(24px, 3.4vw, 34px);
      color: #ffffff;
      letter-spacing: -0.02em;
      line-height: 1.05;
    }

    .payment-box p {
      margin: 0;
      font-size: 14px;
      line-height: 1.7;
      color: rgba(229, 231, 235, 0.78);
    }

    .payment-bank-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin: 14px 0 12px;
    }

    .payment-bank-card {
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.03);
      color: #ffffff;
      text-align: left;
      padding: 12px;
      cursor: pointer;
      transition: all 0.2s ease;
      min-height: 98px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .payment-bank-card.is-active {
      border-color: rgba(255, 0, 128, 0.84);
      box-shadow: 0 0 0 2px rgba(255, 0, 128, 0.2), 0 16px 26px rgba(255, 0, 128, 0.14);
      background: linear-gradient(140deg, rgba(36, 8, 28, 0.95), rgba(18, 10, 15, 0.9));
    }

    .payment-bank-logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.06em;
    }

    .payment-bank-logo--bca {
      background: rgba(13, 110, 253, 0.2);
      color: #6bb8ff;
      border: 1px solid rgba(13, 110, 253, 0.4);
    }

    .payment-bank-logo--cimb {
      background: rgba(239, 68, 68, 0.2);
      color: #fda4af;
      border: 1px solid rgba(239, 68, 68, 0.4);
    }

    .payment-bank-text strong {
      display: block;
      font-size: 16px;
      margin-bottom: 5px;
      letter-spacing: -0.01em;
    }

    .payment-bank-text span {
      display: block;
      font-size: 25px;
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    .payment-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .payment-item {
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(0, 0, 0, 0.28);
      padding: 10px;
      min-height: 70px;
    }

    .payment-item span {
      display: block;
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(156, 163, 175, 0.95);
      font-weight: 700;
      margin-bottom: 6px;
    }

    .payment-item strong {
      font-size: 16px;
      color: #ffffff;
      letter-spacing: 0.02em;
    }

    .copy-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }

    .copy-btn {
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 8px 12px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .copy-btn:hover {
      border-color: rgba(255, 255, 255, 0.42);
      background: rgba(255, 255, 255, 0.16);
    }

    .copy-btn:disabled {
      opacity: 0.45;
      cursor: not-allowed;
    }

    .payment-note {
      margin-top: 10px !important;
      font-size: 12px !important;
      color: rgba(244, 114, 182, 0.92) !important;
    }

    .form-status {
      margin-top: 10px;
      font-size: 13px;
      line-height: 1.6;
      color: rgba(229, 231, 235, 0.72);
    }

    .form-status[data-type="ok"] {
      color: rgba(134, 239, 172, 0.92);
      font-weight: 700;
    }

    .form-status[data-type="err"] {
      color: rgba(251, 113, 133, 0.92);
      font-weight: 700;
    }

    .order-summary-card {
      margin-top: 14px;
      border-radius: 16px;
      border: 1px solid rgba(99, 102, 241, 0.28);
      background:
        radial-gradient(110% 90% at 100% 0%, rgba(59, 130, 246, 0.22), rgba(59, 130, 246, 0) 58%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.72));
      box-shadow: 0 16px 32px rgba(8, 15, 45, 0.4);
      padding: 13px;
    }

    .order-summary-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 10px;
    }

    .order-summary-card h3 {
      margin: 0;
      color: #ffffff;
      font-size: 14px;
      letter-spacing: 0.02em;
    }

    .order-summary-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.08);
      color: rgba(191, 219, 254, 0.96);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .order-summary-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .order-summary-item {
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(2, 6, 23, 0.56);
      padding: 10px;
      min-height: 64px;
      display: flex;
      align-items: flex-start;
      gap: 9px;
    }

    .order-summary-icon {
      width: 30px;
      height: 30px;
      border-radius: 9px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(125, 211, 252, 0.32);
      background: rgba(14, 116, 144, 0.22);
      color: rgba(224, 242, 254, 0.95);
      font-size: 12px;
      flex: 0 0 auto;
    }

    .order-summary-copy {
      min-width: 0;
    }

    .order-summary-copy span,
    .order-summary-total span {
      display: block;
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(148, 163, 184, 0.95);
      font-weight: 700;
      margin-bottom: 5px;
    }

    .order-summary-copy strong {
      color: #f8fafc;
      font-size: 13px;
      line-height: 1.4;
      word-break: break-word;
    }

    .order-summary-item--full {
      grid-column: 1 / -1;
      min-height: 0;
      padding: 9px;
      border-color: rgba(52, 211, 153, 0.34);
      background: linear-gradient(135deg, rgba(2, 44, 34, 0.75), rgba(2, 6, 23, 0.65));
    }

    .order-summary-total {
      width: 100%;
      border-radius: 10px;
      background: rgba(6, 78, 59, 0.38);
      border: 1px solid rgba(52, 211, 153, 0.3);
      padding: 8px 10px;
    }

    .order-summary-total strong {
      color: #d1fae5;
      font-size: 23px;
      line-height: 1.2;
      letter-spacing: 0.01em;
    }

    .order-summary-note {
      margin-top: 8px !important;
      font-size: 12px !important;
      line-height: 1.55 !important;
      color: rgba(191, 219, 254, 0.92) !important;
    }

    @media (max-width: 720px) {
      .form-grid {
        grid-template-columns: 1fr;
      }

      .payment-grid {
        grid-template-columns: 1fr;
      }

      .payment-bank-grid {
        grid-template-columns: 1fr;
      }

      .payment-box-head {
        flex-direction: column;
      }

      .payment-bank-text span {
        font-size: 20px;
      }

      .order-summary-grid {
        grid-template-columns: 1fr;
      }
    }

    .live-demo-wrap {
      width: min(var(--content-max), calc(100vw - 40px));
      margin: 0 auto;
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
      box-shadow: 0 26px 68px rgba(0, 0, 0, 0.42);
      padding: 18px 18px 20px;
      overflow: hidden;
    }

    .live-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(34, 197, 94, 0.95);
      border: 1px solid rgba(34, 197, 94, 0.35);
      background: rgba(34, 197, 94, 0.1);
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .live-title {
      margin: 14px 0 0;
      font-size: clamp(30px, 3.8vw, 54px);
      letter-spacing: -0.03em;
      line-height: 1.05;
      color: #ffffff;
      font-weight: 900;
      text-align: center;
    }

    .live-title span {
      background: linear-gradient(90deg, rgba(249, 115, 22, 0.95), rgba(236, 72, 153, 0.92));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .live-lead {
      margin: 10px auto 0;
      max-width: 82ch;
      font-size: 15px;
      color: rgba(229, 231, 235, 0.76);
      line-height: 1.75;
      text-align: center;
    }

    .demo-stage {
      position: relative;
      margin-top: 22px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(0, 0, 0, 0.18);
      padding: 14px;
      overflow: hidden;
    }

    .demo-stage--hero {
      background:
        radial-gradient(120% 90% at 0% 100%, rgba(249, 115, 22, 0.28) 0%, rgba(249, 115, 22, 0) 62%),
        radial-gradient(110% 88% at 100% 0%, rgba(236, 72, 153, 0.26) 0%, rgba(236, 72, 153, 0) 58%),
        rgba(0, 0, 0, 0.2);
      overflow: visible;
      padding-bottom: 10px;
    }

    .live-insight-badge,
    .live-blast-badge {
      position: absolute;
      z-index: 4;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 12px;
      padding: 8px 10px;
      font-size: 11px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.94);
      background: rgba(17, 24, 39, 0.76);
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(10px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    }

    .live-insight-badge {
      left: -26px;
      top: 14px;
    }

    .live-insight-badge strong,
    .live-blast-badge strong {
      font-size: 18px;
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .live-blast-badge {
      right: 16px;
      bottom: -14px;
      color: rgba(209, 250, 229, 0.96);
      border-color: rgba(34, 197, 94, 0.4);
      background: rgba(22, 163, 74, 0.22);
    }

    .live-tabs {
      display: flex;
      gap: 10px;
      margin-top: 12px;
      overflow-x: auto;
      padding-bottom: 2px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .live-tabs::-webkit-scrollbar {
      width: 0;
      height: 0;
      display: none;
    }

    .live-tab {
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.03);
      color: rgba(229, 231, 235, 0.8);
      border-radius: 10px;
      padding: 8px 12px;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.35;
      white-space: nowrap;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .live-tab.is-active {
      color: #ffffff;
      border-color: rgba(249, 115, 22, 0.55);
      background: linear-gradient(90deg, rgba(249, 115, 22, 0.3), rgba(236, 72, 153, 0.28));
      box-shadow: 0 8px 22px rgba(249, 115, 22, 0.25);
    }

    .live-progress {
      height: 4px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      margin: 8px 0 10px;
      overflow: hidden;
    }

    .live-progress-bar {
      width: 0;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, rgba(249, 115, 22, 0.95), rgba(236, 72, 153, 0.92));
      transition: width 0.06s linear;
    }

    .stage-browser {
      display: flex;
      align-items: center;
      gap: 10px;
      border-radius: 14px;
      background: rgba(17, 24, 39, 0.72);
      padding: 10px 12px;
      color: rgba(229, 231, 235, 0.86);
      font-size: 12px;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stage-dots {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .stage-dots span {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.18);
    }

    .stage-addr {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: calc(100% - 56px);
    }

    .stage-card {
      margin-top: 10px;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      height: 480px;
      background: linear-gradient(130deg, #111827, #1f2937);
      position: relative;
      margin-right: 250px;
    }

    .stage-card img,
    .stage-phone img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .stage-card iframe,
    .stage-phone iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      background: #ffffff;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    .stage-card iframe::-webkit-scrollbar,
    .stage-phone iframe::-webkit-scrollbar,
    .demo-frame iframe::-webkit-scrollbar {
      display: none;
    }

    .stage-card iframe {
      width: 124%;
      height: 124%;
      transform: scale(0.806);
      transform-origin: top left;
    }

    .stage-phone iframe {
      width: calc(100% + 18px);
      margin-right: -18px;
    }

    .stage-chip {
      position: absolute;
      left: 10px;
      top: 10px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 9px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.68);
      border: 1px solid rgba(255, 255, 255, 0.22);
      color: rgba(255, 255, 255, 0.94);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      z-index: 4;
    }

    .stage-chip span,
    .stage-mini-chip span {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: rgba(74, 222, 128, 0.94);
      box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.16);
    }

    .stage-phone {
      position: absolute;
      right: 16px;
      top: 50px;
      width: 266px;
      height: 576px;
      border-radius: 34px;
      border: 8px solid rgba(2, 6, 23, 0.92);
      overflow: hidden;
      box-shadow: 0 16px 42px rgba(0, 0, 0, 0.45);
      background: #0b1220;
    }

    .stage-mini-chip {
      position: absolute;
      left: 8px;
      bottom: 8px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 4px 7px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.66);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.92);
      font-size: 9px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      z-index: 4;
    }

    .stage-mini-chip-phone {
      left: auto;
      right: 8px;
    }

    .stage-device-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 4;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 5px 9px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(3, 7, 18, 0.72);
      color: rgba(241, 245, 249, 0.92);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .stage-device-badge-desktop {
      left: auto;
      right: 10px;
    }

    .stage-device-badge-mobile {
      top: 6px;
      left: 6px;
      font-size: 7px;
      padding: 3px 6px;
    }

    .live-note {
      margin: 10px 0 0;
      color: rgba(203, 213, 225, 0.7);
      text-align: center;
      font-size: 12px;
    }

    .live-direct-section {
      margin-top: 14px;
      padding: 14px 14px 12px;
      border-radius: 14px;
      border: 1px solid rgba(251, 146, 60, 0.28);
      background: linear-gradient(140deg, rgba(249, 115, 22, 0.12), rgba(15, 23, 42, 0.62));
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
      text-align: left;
    }

    .live-direct-title {
      margin: 0;
      color: #ffffff;
      font-size: 14px;
      line-height: 1.38;
      letter-spacing: -0.01em;
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .live-direct-title i {
      color: rgba(251, 146, 60, 0.95);
      font-size: 12px;
    }

    .live-direct-desc {
      margin: 8px 0 0;
      color: rgba(226, 232, 240, 0.82);
      font-size: 12px;
      line-height: 1.62;
    }

    .live-direct-link {
      margin-top: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 9px 14px;
      border-radius: 999px;
      border: 1px solid rgba(251, 146, 60, 0.42);
      background: linear-gradient(90deg, rgba(249, 115, 22, 0.2), rgba(236, 72, 153, 0.16));
      color: #f8fafc;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-decoration: none;
    }

    .live-direct-trust {
      margin: 8px 0 0;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: rgba(148, 163, 184, 0.92);
      font-size: 10px;
      line-height: 1.45;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .live-direct-trust i {
      color: rgba(74, 222, 128, 0.96);
      font-size: 10px;
    }

    .live-mobile-caption,
    .live-mobile-spacer {
      display: none;
    }

    .live-extra-grid {
      margin-top: 22px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .live-extra-card h2 {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
    }

    .live-extra-card h2 i {
      color: rgba(251, 146, 60, 0.96);
      animation: livePulse 1.8s ease-in-out infinite;
    }

    .live-extra-card:nth-child(2) h2 i {
      color: rgba(74, 222, 128, 0.96);
      animation-delay: 0.35s;
    }

    .live-extra-card:nth-child(3) h2 i {
      color: rgba(96, 165, 250, 0.96);
      animation-delay: 0.7s;
    }

    @keyframes liveFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }

    @keyframes livePulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.08); opacity: 0.86; }
    }

    .live-list {
      margin-top: 16px;
      display: grid;
      gap: 14px;
    }

    .live-item-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 8px;
      color: rgba(229, 231, 235, 0.9);
    }

    .live-item-head h3 {
      margin: 0;
      font-size: 16px;
      letter-spacing: -0.02em;
      color: #ffffff;
    }

    .live-item-head p {
      margin: 0;
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(134, 239, 172, 0.88);
      font-weight: 700;
      white-space: nowrap;
    }

    .demo-stage--stack {
      margin-top: 0;
    }

    .stage-grid {
      margin-top: 10px;
      display: grid;
      grid-template-columns: 1fr 280px;
      gap: 10px;
      align-items: stretch;
    }

    .stage-phone-inline {
      position: relative;
      border-radius: 22px;
      border: 6px solid rgba(2, 6, 23, 0.92);
      overflow: hidden;
      background: #0b1220;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
    }

    .live-spacer {
      margin-top: 14px;
      height: 1px;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(249, 115, 22, 0.45), rgba(255, 255, 255, 0));
    }

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

      .order-assistant-card {
        position: static;
      }

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

      .wb-showcase-media,
      .wb-showcase-canvas {
        min-height: 320px;
      }

      .wb-showcase-copy h2 {
        font-size: clamp(28px, 9vw, 40px);
      }

      .live-insight-badge,
      .live-blast-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 8px;
      }

      .live-blast-badge {
        margin-left: 8px;
      }

      .demo-stage--hero {
        padding-bottom: 14px;
      }

      .stage-card {
        margin-right: 206px;
        height: 430px;
      }

      .stage-card iframe {
        width: 112%;
        height: 112%;
        transform: scale(0.892);
        transform-origin: top left;
      }

      .stage-phone {
        position: absolute;
        top: 82px;
        right: 8px;
        left: auto;
        transform: none;
        width: 192px;
        height: 416px;
        margin-top: 0;
        border-radius: 26px;
        border-width: 6px;
        z-index: 5;
      }

      .stage-mini-chip-phone {
        right: 6px;
        bottom: 6px;
        font-size: 8px;
      }

      .live-note {
        margin-top: 14px;
      }

      .live-extra-grid {
        grid-template-columns: 1fr;
      }

      .live-item-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
      }

      .stage-grid {
        grid-template-columns: 1fr;
      }

      .stage-phone-inline {
        min-height: 340px;
        border-width: 1px;
        border-radius: 14px;
      }

    }

    @media (max-width: 620px) {
      .container,
      .page-hero,
      .content-grid,
      .wb-showcase,
      .wb-feature-grid,
      .wb-pack-head,
      .wb-plans,
      .wb-more,
      .live-demo-wrap,
      .stats-grid,
      .cta-card,
      .demo-frame,
      .demo-actions,
      .demo-card {
        width: min(1180px, calc(100vw - 32px));
      }

      .live-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding-bottom: 0;
        overflow: visible;
      }

      .live-tab {
        width: 100%;
        min-height: 40px;
        padding: 10px 12px;
        font-size: 11px;
        border-radius: 10px;
        border-color: rgba(255, 255, 255, 0.2);
        background: rgba(15, 23, 42, 0.84);
        text-align: center;
      }

      .stage-card {
        margin-right: 0;
        --landscape-preview-width: clamp(280px, calc(100vw - 32px), 560px);
        --landscape-preview-height: calc(var(--landscape-preview-width) * 0.58);
        height: var(--landscape-preview-height);
        min-height: 220px;
        background: #0f172a;
      }

      .stage-card iframe {
        width: 185%;
        height: 185%;
        transform: scale(0.52);
        transform-origin: top left;
        background: #ffffff;
      }

      .stage-phone {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: min(170px, 48vw);
        height: 340px;
        margin: 0 auto 0;
        border-radius: 28px;
        border-width: 5px;
      }

      .demo-stage--hero {
        display: flex;
        flex-direction: column;
      }

      .stage-phone {
        order: 1;
      }

      .live-mobile-caption-phone {
        order: 2;
      }

      .live-mobile-spacer {
        order: 3;
      }

      .stage-card {
        order: 4;
      }

      .live-mobile-caption-desktop {
        order: 5;
      }

      .live-note {
        order: 6;
      }

      .live-mobile-caption {
        display: block;
        margin: 8px 2px 0;
        color: rgba(226, 232, 240, 0.82);
        font-size: 11px;
        line-height: 1.58;
        text-align: left;
      }

      .live-mobile-spacer {
        display: block;
        margin: 10px 0 8px;
        height: 1px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(249, 115, 22, 0.52), rgba(255, 255, 255, 0));
      }

      .live-direct-section {
        margin-top: 12px;
        padding: 12px 12px 10px;
      }

      .live-direct-title {
        font-size: 13px;
      }

      .live-direct-desc {
        font-size: 11px;
      }

      .stage-card,
      .stage-phone {
        touch-action: auto;
        -webkit-overflow-scrolling: touch;
      }

      .stage-chip {
        top: 36px;
        left: 8px;
        font-size: 9px;
        padding: 4px 7px;
      }

      .stage-device-badge-desktop {
        top: 8px;
        right: 8px;
      }

      .stage-device-badge-mobile {
        top: 5px;
        left: 6px;
      }
    }

    @media (max-width: 430px) {
      .title {
        letter-spacing: -0.35px;
        line-height: 1.12;
      }

      .desc {
        font-size: 12.5px;
        line-height: 1.66;
      }

      .meta {
        gap: 10px;
      }

      .page-main {
        padding: 30px 0 40px;
      }

      .page-hero {
        margin-bottom: 16px;
      }

      .page-hero h1 {
        margin: 10px 0 8px;
        line-height: 1.26;
      }

      .page-badge {
        font-size: 10px;
        letter-spacing: 0.1em;
      }

      .page-hero p {
        font-size: 13px;
        line-height: 1.68;
      }

      .content-grid {
        gap: 14px;
      }

      .content-card {
        padding: 16px;
      }

      .content-card h2 {
        margin-bottom: 10px;
      }

      .content-card p,
      .content-card ul {
        line-height: 1.68;
      }

      .wb-feature-card,
      .wb-plan {
        padding: 14px;
      }

      .wb-showcase-copy h2 {
        line-height: 1.12;
      }

      .wb-showcase-copy p {
        font-size: 13px;
        line-height: 1.64;
      }

      .plan-btn {
        width: 100%;
        min-width: 0;
        min-height: 38px;
        font-size: 10.5px;
        letter-spacing: 0.08em;
        margin: 10px 0 8px;
      }

      .plan-card li {
        font-size: 11.5px;
        line-height: 1.5;
      }

      .wb-list {
        margin-top: 10px;
        line-height: 1.62;
      }

      .live-tabs {
        gap: 7px;
      }

      .live-tab {
        min-height: 38px;
        font-size: 10.5px;
      }

      .stage-card {
        --landscape-preview-width: clamp(260px, calc(100vw - 28px), 420px);
        --landscape-preview-height: calc(var(--landscape-preview-width) * 0.6);
        height: var(--landscape-preview-height);
      }

      .stage-card iframe {
        width: 195%;
        height: 195%;
        transform: scale(0.49);
      }

      .stage-phone {
        width: min(154px, 50vw);
        height: 308px;
        margin-top: 0;
      }

      .cta-actions {
        margin-top: 12px;
      }

      .cta-btn {
        min-height: 40px;
        font-size: 11.5px;
      }
    }

    @media (max-width: 380px) {
      .container {
        width: min(1200px, calc(100% - 28px));
      }

      .page-hero,
      .content-grid,
      .wb-showcase,
      .wb-feature-grid,
      .wb-pack-head,
      .wb-plans,
      .wb-more,
      .live-demo-wrap,
      .stats-grid,
      .cta-card,
      .demo-frame,
      .demo-actions,
      .demo-card {
        width: min(1180px, calc(100vw - 28px));
      }

      .content-card {
        padding: 14px;
      }

      .cta-card {
        padding: 16px 12px;
      }

      .title {
        font-size: clamp(32px, 9.4vw, 40px);
      }

      .desc {
        font-size: 12px;
      }

      .live-tab {
        font-size: 10px;
      }

      .stage-phone {
        width: min(144px, 52vw);
        height: 286px;
        border-width: 4px;
        margin-top: 0;
      }

      .demo-subtitle {
        font-size: 16px;
      }

      .demo-list {
        line-height: 1.68;
      }
    }

    .demo-page {
      padding: 42px 0 54px;
    }

    .demo-head {
      text-align: left;
      max-width: 980px;
      margin: 0 auto 18px;
      color: #e5e7eb;
    }

    .demo-head h1 {
      margin: 0 0 8px;
      font-size: clamp(26px, 3vw, 40px);
      line-height: 1.15;
      font-weight: 800;
      color: #ffffff;
      letter-spacing: -0.03em;
    }

    .demo-head p {
      margin: 0;
      color: rgba(229, 231, 235, 0.78);
      line-height: 1.7;
      max-width: 70ch;
    }

    .demo-frame {
      width: min(var(--content-max), calc(100vw - 40px));
      margin: 0 auto;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
      box-shadow: 0 26px 68px rgba(0, 0, 0, 0.42);
    }

    .demo-frame iframe {
      width: 100%;
      height: min(72vh, 760px);
      display: block;
      border: none;
      background: #0b0c0f;
    }

    .demo-actions {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      margin: 16px auto 0;
      width: min(var(--content-max), calc(100vw - 40px));
    }

    .demo-card {
      width: min(var(--content-max), calc(100vw - 40px));
      margin: 18px auto 0;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
      box-shadow: 0 26px 68px rgba(0, 0, 0, 0.42);
    }

    .demo-inner {
      padding: 20px 20px;
      color: rgba(229, 231, 235, 0.88);
    }

    .demo-subtitle {
      margin: 0 0 10px;
      color: #ffffff;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .demo-list {
      margin: 0;
      padding-left: 18px;
      color: rgba(229, 231, 235, 0.78);
      line-height: 1.75;
    }

    .demo-list li + li {
      margin-top: 6px;
    }

    @media (max-width: 860px) {
      .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 520px) {
      .cta-btn {
        width: 100%;
        min-width: 0;
        min-height: 40px;
        padding: 10px 14px;
        line-height: 1.35;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }
    }

    .price-section.is-voucher-applied .price-voucher {
      animation: voucherWow 0.8s cubic-bezier(0.2, 0.9, 0.25, 1) both;
      filter: saturate(1.04) brightness(1.02);
    }

    .price-section.is-voucher-applied .voucher-ticket,
    .price-section.is-voucher-applied .voucher-envelope {
      animation: voucherBreath 2.6s ease-in-out infinite;
    }

    .price-section.is-voucher-applied .plan-price-discount {
      display: inline-block;
      background-size: 260% 100%;
      animation: pricePopIn 0.38s cubic-bezier(0.2, 1.1, 0.4, 1) both, priceZoomElegant 1.9s cubic-bezier(0.2, 0.9, 0.2, 1) infinite, priceShimmer 2.2s linear infinite;
      filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.14));
      transform-origin: center;
      will-change: transform, filter, background-position;
    }

    .price-section.is-voucher-applied .plan-price-discount .plan-currency {
      color: rgba(17, 24, 39, 0.92);
      -webkit-text-fill-color: rgba(17, 24, 39, 0.92);
      background: none;
      -webkit-background-clip: initial;
      background-clip: initial;
      filter: none;
    }

    .price-section.is-voucher-applied #voucherStatus {
      color: rgba(255, 255, 255, 0.95);
    }

    .price-section.is-voucher-applied .plan-old {
      max-height: 34px;
      margin: 0 0 6px;
      opacity: 1;
      transform: translateY(0);
    }

    .price-section.is-voucher-applied .plan-old span::after {
      animation: strikeRun 0.46s ease 0.1s forwards;
    }

    .price-section.is-voucher-applied .plan-price-normal {
      display: none;
    }

    .plan-btn {
      width: max-content;
      min-width: 160px;
      min-height: 36px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(90deg, #5a6bff 0%, #b06bff 100%);
      color: #ffffff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin: 12px auto 10px;
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
      transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }

    .plan-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
      filter: brightness(1.05);
    }


    .plan-card ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 8px;
      text-align: left;
      justify-items: start;
      max-width: 320px;
      margin-left: auto;
      margin-right: auto;
    }

    .plan-card li {
      position: relative;
      padding-left: 26px;
      color: #111827;
      font-size: 12px;
      line-height: 1.4;
      opacity: 0.98;
    }

    .plan-card li::before {
      content: "✓";
      font-family: "Inter", "Segoe UI", Arial, sans-serif;
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 0;
      width: 18px;
      height: 18px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #0b0c0f;
      background: #e5e7eb;
      font-size: 12px;
    }

    .plan-card.is-featured li::before {
      color: #0b0c0f;
      background: rgba(90, 107, 255, 0.22);
    }

    .plan-basic li::before {
      background: rgba(39, 207, 199, 0.22);
    }

    .plan-premium li::before {
      background: rgba(176, 107, 255, 0.22);
    }

    @keyframes strikeRun {
      from {
        width: 0;
      }
      to {
        width: 100%;
      }
    }

    @keyframes pricePopIn {
      from {
        opacity: 0;
        transform: translateY(6px) scale(0.96);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes voucherWow {
      0% {
        transform: scale(0.98);
        filter: saturate(0.95);
      }
      50% {
        transform: scale(1.012);
        filter: saturate(1.08);
      }
      100% {
        transform: scale(1);
        filter: saturate(1);
      }
    }

    @keyframes voucherFloat {
      0% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-3px);
      }
      100% {
        transform: translateY(0);
      }
    }

    @keyframes voucherBreath {
      0% {
        transform: translateY(0) scale(1);
      }
      50% {
        transform: translateY(-2px) scale(1.01);
      }
      100% {
        transform: translateY(0) scale(1);
      }
    }

    @keyframes voucherShimmer {
      0% {
        transform: translateX(-40%);
        opacity: 0;
      }
      15% {
        opacity: 0.9;
      }
      50% {
        transform: translateX(40%);
        opacity: 0.9;
      }
      70% {
        opacity: 0;
      }
      100% {
        transform: translateX(40%);
        opacity: 0;
      }
    }

    @keyframes voucherSlotPulse {
      0% {
        transform: scale(1);
        filter: brightness(1);
      }
      50% {
        transform: scale(1.05);
        filter: brightness(1.06);
      }
      100% {
        transform: scale(1);
        filter: brightness(1);
      }
    }

    @keyframes priceShimmer {
      0% {
        background-position: 0% 50%;
      }
      100% {
        background-position: 100% 50%;
      }
    }

    @keyframes priceZoomElegant {
      0% {
        transform: translateY(0) scale(1);
        filter: saturate(1) drop-shadow(0 10px 16px rgba(0, 0, 0, 0.14));
      }
      50% {
        transform: translateY(-1px) scale(1.06);
        filter: saturate(1.08) drop-shadow(0 14px 20px rgba(0, 0, 0, 0.18));
      }
      100% {
        transform: translateY(0) scale(1);
        filter: saturate(1) drop-shadow(0 10px 16px rgba(0, 0, 0, 0.14));
      }
    }

    .uc-iphone-notch {
      position: absolute;
      top: 12px;
      left: 50%;
      width: 112px;
      height: 24px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: #0b1020;
      border: 1px solid #1f2937;
      z-index: 4;
    }

    .uc-iphone-screen {
      border-radius: 34px;
      border: 1px solid rgba(15, 23, 42, 0.72);
      background:
        var(--uc-screen-glow),
        linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
      padding: 42px 12px 12px;
      min-height: 268px;
      overflow: hidden;
      position: relative;
    }

    .uc-iphone-screen.is-switching {
      animation: ucScreenSwap 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .uc-phone-status {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 10px;
      color: #a5b4cc;
      margin-bottom: 8px;
      letter-spacing: 0.02em;
    }

    .uc-mini-tag {
      display: inline-flex;
      padding: 4px 8px;
      border-radius: 999px;
      border: 1px solid var(--uc-tag-border);
      background: var(--uc-tag-bg);
      color: var(--uc-tag-text);
      font-size: 8px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .uc-iphone-screen h4 {
      margin: 10px 0 8px;
      font-size: 15px;
      color: #f8fafc;
      font-weight: 600;
    }

    .uc-preview-sub {
      margin: 0 0 10px;
      color: #9fb0c7;
      font-size: 11px;
      line-height: 1.45;
    }

    .uc-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 10px;
    }

    .uc-chip-row span {
      display: inline-flex;
      align-items: center;
      min-height: 21px;
      padding: 0 8px;
      border-radius: 999px;
      border: none;
      background: #1f2937;
      color: #cbd5e1;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .uc-iphone-screen ul {
      margin: 0 0 10px;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 7px;
    }

    .uc-iphone-screen li {
      display: block;
      font-size: 11px;
      color: #cbd5e1;
      border: none;
      background: #1e293b;
      border-radius: 9px;
      padding: 8px 9px;
    }

    .uc-iphone-screen li strong {
      display: block;
      color: #f8fafc;
      font-weight: 600;
      font-size: 11px;
      line-height: 1.35;
      margin-bottom: 2px;
    }

    .uc-iphone-screen li span {
      display: block;
      color: #9fb0c7;
      font-size: 10px;
      line-height: 1.45;
    }

    .uc-wa-btn {
      display: inline-flex;
      width: 100%;
      justify-content: center;
      align-items: center;
      min-height: 34px;
      border-radius: 8px;
      background: var(--uc-cta);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      transition: transform 0.2s ease, filter 0.2s ease;
    }

    .uc-wa-btn:hover {
      transform: translateY(-1px);
      filter: saturate(1.04);
    }

    .uc-phone-meta {
      margin-top: 8px;
      display: flex;
      justify-content: space-between;
      gap: 8px;
      color: #93a6c0;
      font-size: 10px;
    }

    .uc-phone-meta span:last-child {
      color: #dbeafe;
      font-weight: 600;
    }

    .uc-flow {
      margin-top: 10px;
      border: none;
      border-radius: 10px;
      background: #1e293b;
      padding: 8px;
    }

    .uc-flow-track {
      height: 4px;
      border-radius: 999px;
      background: #334155;
      overflow: hidden;
      margin-bottom: 7px;
    }

    .uc-flow-progress {
      display: block;
      height: 100%;
      width: 0;
      border-radius: 999px;
      background: var(--uc-cta);
      animation: ucFlowProgress 8s ease-in-out infinite;
    }

    .uc-flow-steps {
      display: grid;
      gap: 5px;
      margin-bottom: 6px;
    }

    .uc-flow-steps span {
      display: inline-flex;
      align-items: center;
      min-height: 20px;
      border-radius: 7px;
      padding: 0 8px;
      border: none;
      background: #0f172a;
      color: #a7b8d0;
      font-size: 10px;
      opacity: 0.42;
      transform: translateX(-3px);
      animation: ucStepPulse 8s linear infinite;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .uc-flow-steps span:nth-child(1) {
      animation-delay: 0s;
    }

    .uc-flow-steps span:nth-child(2) {
      animation-delay: 2s;
    }

    .uc-flow-steps span:nth-child(3) {
      animation-delay: 4s;
    }

    .uc-flow-steps span:nth-child(4) {
      animation-delay: 6s;
    }

    .uc-order-toast {
      display: inline-flex;
      width: 100%;
      min-height: 24px;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      border: none;
      background: linear-gradient(90deg, #166534 0%, #16a34a 100%);
      color: #dcfce7;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.02em;
      opacity: 0;
      transform: translateY(8px) scale(0.98);
      animation: none;
    }

    .uc-order-toast.is-on {
      animation: ucOrderToastIn 1.2s ease-in-out both;
    }

    .uc-metrics {
      display: none;
      margin-top: 10px;
      gap: 8px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .uc-metrics div {
      border: none;
      border-radius: 8px;
      padding: 8px;
      text-align: center;
      background: #1f2937;
    }

    .uc-metrics span {
      display: block;
      font-size: 10px;
      color: #94a3b8;
      margin-bottom: 3px;
    }

    .uc-metrics strong {
      font-size: 12px;
      color: #f8fafc;
      font-weight: 600;
    }

    .uc-showcase.theme-umkm {
      --uc-accent: #22c55e;
      --uc-accent-soft: rgba(34, 197, 94, 0.16);
      --uc-cta: linear-gradient(90deg, #ff8a00, #ff5d1d 45%, #ff2fa3);
      --uc-screen-glow: radial-gradient(85% 60% at 15% 0%, rgba(14, 165, 233, 0.18) 0%, rgba(14, 165, 233, 0) 70%);
    }

    .uc-showcase.theme-estate {
      --uc-accent: #38bdf8;
      --uc-accent-soft: rgba(56, 189, 248, 0.16);
      --uc-tag-border: rgba(125, 211, 252, 0.55);
      --uc-tag-bg: rgba(56, 189, 248, 0.18);
      --uc-tag-text: #bae6fd;
      --uc-cta: linear-gradient(90deg, #0ea5e9, #2563eb 52%, #38bdf8);
      --uc-screen-glow: radial-gradient(85% 60% at 15% 0%, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0) 70%);
    }

    .uc-showcase.theme-event {
      --uc-accent: #f472b6;
      --uc-accent-soft: rgba(244, 114, 182, 0.18);
      --uc-tag-border: rgba(251, 113, 133, 0.62);
      --uc-tag-bg: rgba(244, 63, 94, 0.14);
      --uc-tag-text: #fecdd3;
      --uc-cta: linear-gradient(90deg, #ec4899, #f43f5e 45%, #fb7185);
      --uc-screen-glow: radial-gradient(85% 60% at 15% 0%, rgba(244, 63, 94, 0.2) 0%, rgba(244, 63, 94, 0) 70%);
    }

    .uc-showcase.theme-b2b {
      --uc-accent: #60a5fa;
      --uc-accent-soft: rgba(96, 165, 250, 0.16);
      --uc-tag-border: rgba(147, 197, 253, 0.55);
      --uc-tag-bg: rgba(59, 130, 246, 0.18);
      --uc-tag-text: #dbeafe;
      --uc-cta: linear-gradient(90deg, #1d4ed8, #2563eb 52%, #0ea5e9);
      --uc-screen-glow: radial-gradient(85% 60% at 15% 0%, rgba(29, 78, 216, 0.2) 0%, rgba(29, 78, 216, 0) 70%);
    }

    .uc-showcase.theme-clinic {
      --uc-accent: #fb7185;
      --uc-accent-soft: rgba(251, 113, 133, 0.18);
      --uc-tag-border: rgba(251, 113, 133, 0.62);
      --uc-tag-bg: rgba(251, 113, 133, 0.14);
      --uc-tag-text: #ffe4e6;
      --uc-cta: linear-gradient(90deg, #f43f5e, #ec4899 48%, #f97316);
      --uc-screen-glow: radial-gradient(85% 60% at 15% 0%, rgba(244, 63, 94, 0.22) 0%, rgba(244, 63, 94, 0) 70%);
    }

    .uc-showcase.theme-otomotif {
      --uc-accent: #f59e0b;
      --uc-accent-soft: rgba(245, 158, 11, 0.2);
      --uc-tag-border: rgba(251, 191, 36, 0.62);
      --uc-tag-bg: rgba(245, 158, 11, 0.16);
      --uc-tag-text: #fef3c7;
      --uc-cta: linear-gradient(90deg, #f97316, #f59e0b 44%, #facc15);
      --uc-screen-glow: radial-gradient(85% 60% at 15% 0%, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0) 70%);
    }

    .uc-showcase.theme-edukasi {
      --uc-accent: #22c55e;
      --uc-accent-soft: rgba(34, 197, 94, 0.18);
      --uc-tag-border: rgba(74, 222, 128, 0.62);
      --uc-tag-bg: rgba(34, 197, 94, 0.15);
      --uc-tag-text: #dcfce7;
      --uc-cta: linear-gradient(90deg, #16a34a, #22c55e 48%, #84cc16);
      --uc-screen-glow: radial-gradient(85% 60% at 15% 0%, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0) 70%);
    }

    .uc-showcase.theme-travel {
      --uc-accent: #2dd4bf;
      --uc-accent-soft: rgba(45, 212, 191, 0.18);
      --uc-tag-border: rgba(45, 212, 191, 0.62);
      --uc-tag-bg: rgba(45, 212, 191, 0.14);
      --uc-tag-text: #ccfbf1;
      --uc-cta: linear-gradient(90deg, #0d9488, #14b8a6 46%, #06b6d4);
      --uc-screen-glow: radial-gradient(85% 60% at 15% 0%, rgba(20, 184, 166, 0.2) 0%, rgba(20, 184, 166, 0) 70%);
    }

    @keyframes ucScreenSwap {
      0% {
        opacity: 0.46;
        transform: translateX(7px);
      }
      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes ucWaPulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
      }
    }

    @keyframes ucTextFlow {
      0% {
        background-position: 0% 50%;
      }
      100% {
        background-position: 200% 50%;
      }
    }

    @keyframes ucFlowProgress {
      0% {
        width: 0%;
      }
      72% {
        width: 100%;
      }
      88% {
        width: 100%;
      }
      100% {
        width: 0%;
      }
    }

    @keyframes ucStepPulse {
      0%, 100% {
        opacity: 0.38;
        transform: translateX(-3px);
        border-color: #334155;
        color: #94a3b8;
      }
      12%, 30% {
        opacity: 1;
        transform: translateX(0);
        border-color: rgba(255, 160, 92, 0.72);
        color: #f8fafc;
        box-shadow: 0 0 0 1px rgba(255, 160, 92, 0.2) inset;
      }
    }

    @keyframes ucOrderIn {
      0%, 72% {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
      }
      78%, 92% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
      100% {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
      }
    }

    @keyframes ucOrderToastIn {
      0% {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
      }
      18% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
      72% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
      100% {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
      }
    }

    @keyframes riseIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes handwritingDraw {
      0% {
        stroke-dashoffset: 950;
        opacity: 0;
      }
      9% {
        opacity: 1;
      }
      56% {
        stroke-dashoffset: 0;
        opacity: 1;
      }
      76% {
        stroke-dashoffset: 0;
        opacity: 0;
      }
      100% {
        stroke-dashoffset: 950;
        opacity: 0;
      }
    }

    @keyframes handwritingFill {
      0%, 46% {
        opacity: 0;
      }
      60%, 74% {
        opacity: 1;
      }
      84%, 100% {
        opacity: 0;
      }
    }

    @keyframes handwritingRetrace {
      0%, 52% {
        stroke-dashoffset: 950;
        opacity: 0;
      }
      58% {
        opacity: 0.65;
      }
      76% {
        stroke-dashoffset: 0;
        opacity: 0.55;
      }
      86%, 100% {
        stroke-dashoffset: 0;
        opacity: 0;
      }
    }

    @keyframes ctaOrangeGlow {
      0%, 100% {
        box-shadow: 0 10px 24px rgba(255, 128, 0, 0.28), 0 0 0 rgba(255, 145, 35, 0);
      }
      50% {
        box-shadow: 0 14px 30px rgba(255, 128, 0, 0.42), 0 0 24px rgba(255, 153, 51, 0.32);
      }
    }

    @keyframes ctaShine {
      0%, 42% {
        transform: translateX(-120%);
      }
      62% {
        transform: translateX(130%);
      }
      100% {
        transform: translateX(130%);
      }
    }

    @keyframes softPulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.04);
      }
    }

    @keyframes badgeFlow {
      0%, 100% {
        background-position: 0% 50%;
        transform: translateY(0);
      }
      50% {
        background-position: 100% 50%;
        transform: translateY(-1px);
      }
    }

    @keyframes kenBurnsZoom {
      0% {
        transform: scale(1.01);
      }
      100% {
        transform: scale(1.06);
      }
    }

    @keyframes kenBurnsPanLeft {
      0% {
        transform: scale(1.01) translate(1%, 0.5%);
      }
      100% {
        transform: scale(1.06) translate(-1%, -0.5%);
      }
    }

    @keyframes kenBurnsPanRight {
      0% {
        transform: scale(1.01) translate(-1%, 0.5%);
      }
      100% {
        transform: scale(1.06) translate(1%, -0.5%);
      }
    }

    @keyframes howItemIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes howFloat {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-4px);
      }
    }

    @media (min-width: 1200px) and (max-width: 1499px) {
      :root {
        --header-h: 72px;
      }

      .container {
        width: min(1140px, calc(100% - 56px));
      }

      .nav {
        gap: 24px;
        font-size: 16px;
      }


      .title {
        font-size: clamp(34px, 4.5vw, 56px);
      }

      .desc {
        max-width: 760px;
        font-size: clamp(14px, 1.1vw, 17px);
      }

      .ps-title {
        font-size: clamp(21px, 2.4vw, 31px);
      }

      .uc-title {
        font-size: clamp(20px, 2.1vw, 27px);
      }
    }

    @media (min-width: 1600px) {
      :root {
        --header-h: 78px;
      }

      .container {
        width: min(1320px, calc(100% - 88px));
      }

      .brand {
        font-size: 30px;
      }

      .nav {
        gap: 30px;
        font-size: 18px;
      }


      .title {
        font-size: clamp(40px, 4.1vw, 68px);
      }

      .desc {
        max-width: 860px;
        font-size: clamp(15px, 1vw, 19px);
      }

      .omset-value {
        font-size: 31px;
      }

      .ps-item strong {
        font-size: 15px;
      }

      .uc-grid {
        gap: 18px;
      }
    }

    @media (max-width: 1300px) {
      .brand {
        font-size: 24px;
      }

      .nav {
        gap: 16px;
        font-size: 15px;
      }

      .btn-form {
        min-height: 46px;
        min-width: 138px;
        font-size: 16px;
      }


      .pill {
        min-height: 36px;
        font-size: 13px;
      }

      .desc {
        max-width: 680px;
      }

      .btn-primary,
      .btn-secondary {
        min-height: 50px;
        font-size: 15px;
      }

      .meta {
        font-size: 13px;
      }

      .problem-section {
        margin-top: 0;
      }

      .ps-compare {
        gap: 12px;
      }

      .ps-item strong {
        font-size: 13px;
      }
    }

    @media (max-width: 920px) {
      .container {
        width: min(1200px, calc(100% - 36px));
      }

      .header-inner {
        height: auto;
        padding-top: 10px;
        padding-bottom: 6px;
        flex-wrap: nowrap;
      }

      .brand {
        font-size: 21px;
      }

      .nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 6px);
        z-index: 30;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin: 0;
        padding: 14px;
        font-size: 14px;
        border: 1px solid #1d2637;
        border-radius: 12px;
        background: rgba(8, 12, 20, 0.68);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px) scale(0.99);
        transform-origin: top center;
        transition: opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1), transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
      }

      .header.is-open .nav {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
      }

      .nav a {
        width: 100%;
        display: block;
        border: 1px solid #273146;
        border-radius: 10px;
        padding: 10px 12px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 20;
        border: 0;
        background: rgba(3, 6, 11, 0.25);
        -webkit-backdrop-filter: blur(0px);
        backdrop-filter: blur(0px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.34s ease, backdrop-filter 0.34s ease, -webkit-backdrop-filter 0.34s ease;
      }

      .menu-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
        background: rgba(3, 6, 11, 0.18);
        -webkit-backdrop-filter: blur(1.5px);
        backdrop-filter: blur(1.5px);
      }

      .btn-form {
        display: none;
      }

      .nav-cta-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 999px;
        border: none;
        background: linear-gradient(90deg, var(--orange) 0%, #ff5d1d 45%, var(--pink) 100%);
        color: #fff;
        font-weight: 700;
      }

      .btn-form {
        min-height: 44px;
        min-width: 130px;
        font-size: 16px;
        padding: 0 18px;
      }

      .hero {
        margin-top: 0;
        min-height: calc(100svh - var(--header-h));
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 18px 0 22px;
      }

      .pill {
        min-height: 32px;
        font-size: 12px;
        padding: 0 12px;
      }

      .pill-dot {
        font-size: 13px;
      }

      .title {
        margin-top: 0;
      }
      .handwriting-word {
        width: min(8.6em, 96vw);
      }
      .hw-base {
        font-size: 158px;
      }

      .desc {
        margin-top: 0;
        font-size: 13px;
      }

      .cta-row {
        margin-top: 0;
        gap: 12px;
      }

      .btn-primary,
      .btn-secondary {
        min-height: 36px;
        font-size: 12px;
        padding: 0 16px;
        width: 100%;
        max-width: 270px;
      }

      .meta {
        margin-top: 0;
        gap: 12px;
        font-size: 12px;
      }

      .hero-more {
        min-height: 34px;
        font-size: 12px;
        padding: 0 13px;
      }

      .problem-section {
        margin-top: 0;
        padding: 28px 18px 22px;
      }

      .omset-strip {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
        padding: 12px;
      }

      .omset-arrow {
        display: none;
      }

      .omset-value {
        font-size: 24px;
      }

      .ps-head {
        margin-bottom: 16px;
      }

      .ps-badge-row {
        gap: 6px;
      }

      .ps-title {
        font-size: clamp(20px, 6.6vw, 26px);
      }

      .ps-desc {
        font-size: 13px;
      }

      .ps-compare {
        grid-template-columns: 1fr;
      }

      .ps-vs {
        width: 42px;
        height: 42px;
        font-size: 13px;
      }

      .ps-card {
        padding: 14px 13px;
      }

      .ps-cover img {
        height: 100%;
      }

      .ps-cover {
        height: clamp(220px, 66vw, 360px);
      }

      .ps-card h3 {
        font-size: clamp(18px, 7vw, 24px);
      }

      .ps-item {
        text-align: left;
      }

      .ps-total-value {
        font-size: 20px;
      }

      .ps-total-note {
        font-size: 10px;
      }

      .ps-total-badge {
        margin-top: 8px;
        font-size: 7px;
      }

      .uc-section {
        margin-top: 40px;
        padding: 24px 0 18px;
      }

      .uc-content .wa-contact-frame {
        padding-top: 14px;
      }

      .wa-contact-list {
        gap: 8px;
      }

      .wa-contact-btn {
        width: 100%;
      }

      .uc-tabs {
        justify-content: flex-start;
      }

      .uc-grid {
        grid-template-columns: 1fr;
      }

      .uc-main-split {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .uc-content {
        order: 2;
      }

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

      .how-section {
        margin-top: 34px;
      }

      .how-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .how-icon-wrap {
        width: 86px;
        height: 86px;
      }

      .price-section {
        margin-top: 38px;
      }

      .price-voucher {
        max-width: 340px;
        width: 100%;
      }

      .voucher-ticket {
        padding: 14px 14px 14px;
      }

      .voucher-offer {
        margin-top: 12px;
        margin-bottom: 2px;
      }

      .voucher-envelope {
        margin-top: 10px;
        border-radius: 16px;
        padding: 16px 14px 14px;
      }

      .voucher-envelope::before {
        display: none;
      }

      #voucherStatus {
        font-size: 16px;
        line-height: 1.3;
      }

      .price-grid {
        grid-template-columns: 1fr;
        width: min(340px, 100%);
        margin-left: auto;
        margin-right: auto;
        gap: 12px;
      }

      .custom-plan-wrap {
        width: min(340px, 100%);
        margin-left: auto;
        margin-right: auto;
      }

      .custom-plan-card {
        padding: 16px 14px 14px;
        text-align: left;
      }

      .custom-plan-actions {
        gap: 8px;
      }

      .custom-plan-actions .plan-btn,
      .custom-plan-wa {
        width: 100%;
        justify-content: center;
      }

      .plan-card.is-featured {
        transform: none;
      }

      .plan-copy {
        min-height: 0;
      }

      .plan-card {
        min-height: 520px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
      }

      .plan-copy {
        min-height: 42px;
      }

      .plan-price {
        min-height: 56px;
      }

      .plan-card ul {
        margin-top: 12px;
        flex-grow: 1;
      }
    }

    @media (max-width: 430px) {
      .plan-price strong {
        font-size: clamp(68px, 5.8vw, 101px);
      }

      .price-voucher {
        max-width: 320px;
      }

      .price-grid {
        width: min(320px, 100%);
      }

      .custom-plan-wrap {
        width: min(320px, 100%);
      }

      .plan-card {
        min-height: 500px;
      }
    }

    @media (max-width: 380px) {
      .price-voucher {
        max-width: 300px;
      }

      .price-grid {
        width: min(300px, 100%);
      }

      .custom-plan-wrap {
        width: min(300px, 100%);
      }

      .plan-card {
        min-height: 470px;
      }
    }

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

    .admin-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .admin-span {
      grid-column: 1 / -1;
    }

    .admin-toolbar-left,
    .admin-toolbar-right {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .admin-table-wrap {
      width: 100%;
      max-width: 100%;
      overflow: auto;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 14px;
      background: rgba(17, 17, 20, 0.7);
    }

    .admin-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 0;
      table-layout: fixed;
    }

    .admin-table--wide {
      min-width: 1050px;
    }

    .admin-table--mobile-fit th,
    .admin-table--mobile-fit td {
      word-break: break-word;
    }

    .admin-table thead th {
      position: sticky;
      top: 0;
      background: rgba(11, 12, 15, 0.92);
      backdrop-filter: blur(10px);
      z-index: 1;
    }

    .admin-table th,
    .admin-table td {
      padding: 12px 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      text-align: left;
      vertical-align: top;
      font-size: 13px;
      line-height: 1.4;
    }

    .admin-table th {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .admin-pagination {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      margin: 14px 0;
    }

    .admin-page-meta {
      font-size: 12px;
      color: var(--muted);
    }

    .admin-page-btn,
    .admin-action-btn,
    .admin-danger-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 36px;
      padding: 0 12px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(17, 17, 20, 0.92);
      color: var(--text);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform 0.2s ease, filter 0.2s ease;
    }

    .admin-page-btn:hover,
    .admin-action-btn:hover,
    .admin-danger-btn:hover {
      transform: translateY(-1px);
      filter: brightness(1.05);
    }

    .admin-danger-btn {
      border-color: rgba(239, 68, 68, 0.45);
      background: rgba(239, 68, 68, 0.15);
      color: #fecaca;
    }

    .admin-page-btn.is-disabled {
      pointer-events: none;
      opacity: 0.5;
    }

    .admin-inline-form {
      margin: 0;
    }

    .admin-inline-grid {
      display: grid;
      grid-template-columns: 86px 120px 180px 180px minmax(200px, 1fr) 96px;
      gap: 8px;
      align-items: center;
    }

    .admin-inline-grid input,
    .admin-inline-grid select {
      width: 100%;
      max-width: 100%;
      min-height: 38px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(17, 17, 20, 0.85);
      color: var(--text);
      padding: 0 10px;
      font-size: 13px;
      outline: none;
    }

    @media (max-width: 760px) {
      .admin-table--orders th:nth-child(2),
      .admin-table--orders td:nth-child(2),
      .admin-table--orders th:nth-child(4),
      .admin-table--orders td:nth-child(4),
      .admin-table--customers th:nth-child(3),
      .admin-table--customers td:nth-child(3),
      .admin-table--coupons th:nth-child(2),
      .admin-table--coupons td:nth-child(2),
      .admin-table--coupons th:nth-child(3),
      .admin-table--coupons td:nth-child(3),
      .admin-table--translate th:nth-child(2),
      .admin-table--translate td:nth-child(2) {
        display: none;
      }

      .admin-table--mobile-fit th,
      .admin-table--mobile-fit td {
        padding: 10px 8px;
        font-size: 12px;
      }

      .admin-table--mobile-fit .admin-page-btn,
      .admin-table--mobile-fit .admin-action-btn,
      .admin-table--mobile-fit .admin-danger-btn {
        min-height: 32px;
        padding: 0 10px;
      }
    }

    .client-body {
      background: #f4f6f9;
      color: #0f172a;
    }

    .client-topbar {
      background: linear-gradient(90deg, #16a34a 0%, #22c55e 55%, #0ea5a4 100%);
      color: #ffffff;
      position: sticky;
      top: 0;
      z-index: 50;
      box-shadow: 0 6px 24px rgba(2, 6, 23, 0.15);
    }

    .client-topbar-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .client-brand {
      display: inline-flex;
      align-items: baseline;
      gap: 8px;
      text-decoration: none;
      color: #ffffff;
      font-weight: 900;
      letter-spacing: 0.06em;
    }

    .client-brand-sub {
      font-weight: 700;
      letter-spacing: 0.02em;
      opacity: 0.9;
      font-size: 12px;
      text-transform: uppercase;
    }

    .client-topbar-right {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .client-user {
      font-size: 13px;
      font-weight: 700;
      opacity: 0.95;
    }

    .client-top-link {
      color: #ffffff;
      text-decoration: none;
      font-size: 13px;
      font-weight: 800;
      padding: 7px 10px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.25);
    }

    .client-top-link:hover {
      filter: brightness(1.06);
    }

    .client-shell {
      max-width: 1200px;
      margin: 0 auto;
      padding: 18px 16px 60px;
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
    }

    .client-main--center {
      grid-column: 1 / -1;
      max-width: 520px;
      margin: 30px auto 0;
      width: 100%;
    }

    .client-sidebar {
      position: sticky;
      top: 70px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .client-side-card,
    .client-card {
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 14px;
      box-shadow: 0 8px 30px rgba(2, 6, 23, 0.06);
    }

    .client-side-card {
      padding: 14px 14px;
    }

    .client-side-title {
      font-size: 11px;
      letter-spacing: 0.14em;
      font-weight: 900;
      color: #64748b;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .client-side-line {
      font-size: 13px;
      color: #0f172a;
      line-height: 1.35;
    }

    .client-side-muted {
      margin-top: 6px;
      font-size: 12px;
      color: #64748b;
      word-break: break-word;
    }

    .client-side-link {
      display: flex;
      padding: 10px 10px;
      border-radius: 10px;
      text-decoration: none;
      color: #0f172a;
      font-weight: 700;
      font-size: 13px;
      border: 1px solid transparent;
    }

    .client-side-link:hover {
      background: #f1f5f9;
    }

    .client-side-link.is-active {
      background: #ecfdf5;
      border-color: #bbf7d0;
      color: #166534;
    }

    .client-main {
      display: flex;
      flex-direction: column;
      gap: 14px;
      min-width: 0;
    }

    .client-breadcrumb {
      font-size: 12px;
      color: #64748b;
    }

    .client-breadcrumb-sep {
      margin: 0 6px;
      opacity: 0.7;
    }

    .client-heading {
      margin: 0;
      font-size: 30px;
      line-height: 1.15;
      color: #0f172a;
    }

    .client-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .client-metric {
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 14px;
      padding: 14px 14px;
      box-shadow: 0 8px 30px rgba(2, 6, 23, 0.06);
    }

    .client-metric-value {
      font-size: 26px;
      font-weight: 900;
      color: #0f172a;
      line-height: 1;
    }

    .client-metric-label {
      margin-top: 6px;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #64748b;
    }

    .client-card {
      padding: 14px 14px;
      min-width: 0;
    }

    .client-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 10px;
    }

    .client-card-title {
      margin: 0;
      font-size: 16px;
      font-weight: 900;
      color: #0f172a;
    }

    .client-title {
      margin: 0 0 6px;
      font-size: 22px;
      font-weight: 900;
      color: #0f172a;
    }

    .client-subtitle {
      margin: 0 0 14px;
      font-size: 13px;
      color: #64748b;
    }

    .client-body .admin-table-wrap {
      border-color: #e5e7eb;
      background: #ffffff;
    }

    .client-body .admin-table thead th {
      background: #f8fafc;
      color: #64748b;
    }

    .client-body .admin-table th,
    .client-body .admin-table td {
      border-bottom-color: #e5e7eb;
      color: #0f172a;
    }

    .client-body .admin-danger-btn {
      border-color: #fca5a5;
      background: #fee2e2;
      color: #991b1b;
    }

    .client-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border: 1px solid #e5e7eb;
      background: #f8fafc;
      color: #0f172a;
      width: max-content;
    }

    .client-pill--active {
      background: #ecfdf5;
      border-color: #bbf7d0;
      color: #166534;
    }

    .client-pill--suspended {
      background: #fff7ed;
      border-color: #fed7aa;
      color: #9a3412;
    }

    .client-pill--cancelled {
      background: #fef2f2;
      border-color: #fecaca;
      color: #991b1b;
    }

    .client-pill--pay-paid {
      background: #ecfdf5;
      border-color: #bbf7d0;
      color: #166534;
    }

    .client-pill--pay-unpaid {
      background: #fff7ed;
      border-color: #fed7aa;
      color: #9a3412;
    }

    .client-pill--pay-overdue {
      background: #fef2f2;
      border-color: #fecaca;
      color: #991b1b;
    }

    .client-footer {
      padding: 18px 16px 30px;
      text-align: center;
      color: #64748b;
      font-size: 12px;
    }

    .client-footer-inner {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .client-footer-link {
      color: #0f172a;
      text-decoration: none;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-size: 11px;
    }

    .client-footer-link:hover {
      text-decoration: underline;
    }

    @media (max-width: 920px) {
      .client-shell {
        grid-template-columns: 1fr;
      }

      .client-sidebar {
        position: static;
      }

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

    .client-body .content-grid {
      width: 100%;
      margin: 0;
    }

    .client-body .content-card {
      background: #ffffff;
      border-color: #e5e7eb;
      box-shadow: 0 8px 30px rgba(2, 6, 23, 0.06);
      color: #0f172a;
    }

    .client-body .content-card h2,
    .client-body .content-card h3 {
      color: #0f172a;
    }

    .client-body .content-card p,
    .client-body .content-card ul {
      color: #475569;
    }

    .client-body .plan-btn {
      border-color: rgba(22, 163, 74, 0.25);
      background: linear-gradient(90deg, #16a34a 0%, #22c55e 55%, #0ea5a4 100%);
      color: #ffffff;
      box-shadow: 0 10px 24px rgba(2, 6, 23, 0.12);
    }

    .client-body .plan-btn:hover {
      filter: brightness(1.05);
    }

    .client-body .order-form input,
    .client-body .order-form select,
    .client-body .order-form textarea {
      background: #ffffff;
      border-color: #e5e7eb;
      color: #0f172a;
    }

    .client-body .order-form label {
      color: #64748b;
    }
