:root {
      --bg: #0a0a0a;
      --panel: rgba(22, 22, 22, .92);
      --panel-2: rgba(14, 14, 14, .88);
      --text: #ffffff;
      --muted: #a0a0a0;
      --accent: #ffd700;
      --accent-2: #ffbf00;
      --line: rgba(255, 255, 255, .08);
      --ok: #0f9d58;
      --warn: #ff9800;
      --shadow: 0 24px 64px rgba(0, 0, 0, .45);
      font-family: "Inter", sans-serif;
      --safe-top: env(safe-area-inset-top, 0px);
      --safe-right: env(safe-area-inset-right, 0px);
      --safe-bottom: env(safe-area-inset-bottom, 0px);
      --safe-left: env(safe-area-inset-left, 0px);
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -2;
      background:
        radial-gradient(circle at 20% 0%, rgba(255, 215, 0, .12), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(255, 215, 0, .08), transparent 20%),
        linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    }
    .bg-lines {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      opacity: .42;
    }
    .line {
      position: absolute;
      left: -10%;
      width: 120%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,215,0,.9), transparent);
      animation: moveLines 9s linear infinite;
    }
    @keyframes moveLines {
      0% { transform: translateY(-110vh) translateX(-8%); opacity: 0; }
      50% { opacity: 1; }
      100% { transform: translateY(110vh) translateX(8%); opacity: 0; }
    }
    .app {
      max-width: 1120px;
      margin: 0 auto;
      padding:
        max(0px, var(--safe-top))
        calc(14px + var(--safe-right))
        calc(36px + var(--safe-bottom))
        calc(14px + var(--safe-left));
    }
    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: calc(20px + var(--safe-top)) 0 14px;
      background: rgba(10,10,10,.78);
      backdrop-filter: blur(14px);
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--accent);
      font-weight: 800;
      letter-spacing: -.04em;
      text-transform: uppercase;
      font-size: 24px;
    }
    .logo-mark {
      width: 48px;
      height: 48px;
      object-fit: contain;
      filter: drop-shadow(0 10px 20px rgba(255, 215, 0, .18));
      flex: 0 0 auto;
    }
    .logo-word {
      display: inline-flex;
      flex-direction: column;
      line-height: 1;
    }
    .logo-word small {
      color: var(--text);
      font-size: 11px;
      letter-spacing: .18em;
      margin-top: 4px;
    }
    .hero, .panel, .plan-card, .stat-card {
      background: var(--panel);
      border: 1px solid #222;
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }
    .hero {
      border-radius: 30px;
      padding: 72px 28px 40px;
      position: relative;
      overflow: hidden;
      min-height: 70vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      animation: heroRise .85s cubic-bezier(.2, .8, .2, 1);
    }
    .hero::after {
      content: "";
      position: absolute;
      right: -60px;
      top: -60px;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(255,215,0,.18), transparent 60%);
    }
    h1 {
      margin: 0 0 16px;
      font-size: clamp(40px, 8vw, 72px);
      line-height: 1.05;
      letter-spacing: -.05em;
      background: linear-gradient(180deg, #fff 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: glowShift 5s ease-in-out infinite alternate;
    }
    @keyframes heroRise {
      from {
        opacity: 0;
        transform: translateY(20px) scale(.985);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }
    @keyframes glowShift {
      from {
        filter: drop-shadow(0 0 0 rgba(255,215,0,0));
      }
      to {
        filter: drop-shadow(0 0 18px rgba(255,215,0,.12));
      }
    }
    h2, h3, h4, p { margin: 0; }
    p { color: var(--muted); }
    .hero-subtitle {
      max-width: 720px;
      font-size: clamp(16px, 2vw, 20px);
      line-height: 1.7;
    }
    .hero-brand {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 18px;
    }
    .hero-logo {
      width: clamp(92px, 18vw, 132px);
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 18px 42px rgba(255, 215, 0, .16));
      margin-bottom: 12px;
    }
    .hero-actions, .tabs, .grid, .stats, .inline-actions, .hero-features { display: flex; gap: 12px; flex-wrap: wrap; }
    .hero-actions { margin-top: 28px; justify-content: center; }
    .hero-features {
      margin-top: 54px;
      justify-content: center;
      gap: 26px;
    }
    .hero-feature {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
    }
    .hero-feature-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 16px rgba(255, 215, 0, .45);
      animation: pulseDot 2.6s ease-in-out infinite;
    }
    @keyframes pulseDot {
      0%, 100% { transform: scale(1); opacity: .9; }
      50% { transform: scale(1.18); opacity: 1; }
    }
    .tabs {
      margin: 22px 0 30px;
      justify-content: center;
    }
    .tab, button {
      border: 0;
      cursor: pointer;
      border-radius: 999px;
      padding: 13px 20px;
      font: inherit;
      transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
    }
    .btn-link {
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    button:hover, .tab:hover, .btn-link:hover { transform: translateY(-2px); }
    .tab.active, .btn-primary {
      background: var(--accent);
      color: #000;
      box-shadow: 0 14px 34px rgba(255, 215, 0, .22);
    }
    .tab, .btn-secondary {
      background: transparent;
      color: var(--accent);
      border: 1px solid var(--line);
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 22px;
    }
    .plan-card, .panel {
      border-radius: 24px;
      padding: 24px;
    }
    .plan-card {
      position: relative;
      overflow: hidden;
      transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
    }
    .plan-card:hover {
      transform: translateY(-8px);
      border-color: var(--accent);
      box-shadow: 0 28px 64px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 215, 0, .08);
    }
    .plan-card.popular {
      border-color: var(--accent);
      transform: translateY(-4px);
    }
    .plan-card.popular::after {
      content: "POPULAR";
      position: absolute;
      top: 22px;
      right: -34px;
      background: var(--accent);
      color: #000;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .14em;
      padding: 6px 38px;
      transform: rotate(45deg);
      box-shadow: 0 12px 24px rgba(255, 215, 0, .2);
    }
    .plan-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(255,215,0,.1), transparent 34%);
      pointer-events: none;
      transition: opacity .28s ease, transform .28s ease;
    }
    .plan-card:hover::before {
      opacity: 1;
      transform: scale(1.04);
    }
    .plan-card h3, .panel h3 { font-size: 21px; margin-bottom: 8px; }
    .section-head {
      text-align: center;
      margin-bottom: 22px;
    }
    .section-head h2 {
      font-size: 32px;
      margin-bottom: 10px;
    }
    .section-head span { color: var(--accent); }
    .eyebrow {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--accent);
      margin-bottom: 10px;
    }
    .price {
      font-size: 38px;
      font-weight: 800;
      margin: 18px 0 10px;
      letter-spacing: -.04em;
    }
    .kicker {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 14px;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255,215,0,.08);
      color: var(--accent);
      font-size: 12px;
      margin-bottom: 12px;
    }
    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
    }
    .feature-list li {
      display: flex;
      gap: 10px;
      align-items: center;
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 10px;
    }
    .check {
      color: var(--accent);
      font-weight: 700;
    }
    .panel-stack {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 28px;
    }
    .why-item {
      text-align: center;
      padding: 26px 22px;
      border-radius: 24px;
      background: var(--panel-2);
      border: 1px solid #202020;
      box-shadow: var(--shadow);
    }
    .why-icon {
      width: 62px;
      height: 62px;
      margin: 0 auto 18px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 215, 0, .08);
      color: var(--accent);
      font-size: 26px;
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 18px;
      margin-top: 28px;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: center;
      margin-top: 28px;
    }
    .gallery-block {
      min-height: 320px;
      border-radius: 30px;
      border: 1px dashed rgba(255,255,255,.14);
      background:
        radial-gradient(circle at top left, rgba(255,215,0,.1), transparent 30%),
        linear-gradient(45deg, #111, #1a1a1a);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .32em;
      font-size: 14px;
      transition: transform .35s ease, border-color .35s ease;
    }
    .gallery-block:hover {
      transform: translateY(-4px);
      border-color: rgba(255,215,0,.26);
    }
    .gallery-label {
      position: absolute;
      left: 20px;
      bottom: 20px;
      border-radius: 12px;
      background: rgba(0,0,0,.5);
      color: var(--muted);
      padding: 8px 14px;
      font-size: 11px;
      letter-spacing: .14em;
    }
    .about-copy h3 {
      font-size: 34px;
      margin-bottom: 16px;
    }
    .about-copy h3 span {
      color: var(--accent);
    }
    .about-copy p {
      margin-bottom: 16px;
      line-height: 1.75;
    }
    .review-card {
      background: var(--panel-2);
      border: 1px solid #202020;
      border-left: 3px solid var(--accent);
      border-radius: 22px;
      padding: 24px;
      box-shadow: var(--shadow);
      transition: transform .28s ease, border-color .28s ease;
    }
    .review-card:hover,
    .why-item:hover,
    .stat-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,215,0,.24);
    }
    .install-shell {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .install-app-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }
    .install-app-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      min-height: 88px;
      border-radius: 22px;
      padding: 18px 20px;
      border: 1px solid rgba(255,255,255,.08);
      background: linear-gradient(180deg, rgba(29, 37, 58, .96), rgba(20, 26, 43, .96));
      color: var(--text);
      box-shadow: var(--shadow);
      cursor: pointer;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .install-app-card:hover,
    .install-app-card.active {
      transform: translateY(-3px);
      border-color: rgba(96, 176, 255, .45);
      box-shadow: 0 18px 34px rgba(0, 0, 0, .36), 0 0 0 1px rgba(96, 176, 255, .14);
    }
    .install-app-card.active {
      background: linear-gradient(180deg, rgba(28, 62, 96, .98), rgba(24, 49, 80, .98));
    }
    .install-app-meta {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }
    .install-dot {
      width: 14px;
      height: 14px;
      border-radius: 999px;
      background: #ffc94d;
      box-shadow: 0 0 18px rgba(255, 201, 77, .48);
      flex: 0 0 auto;
    }
    .install-app-name {
      font-size: 18px;
      color: #d8e3f0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .install-app-icon {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      color: rgba(230, 238, 247, .42);
      font-size: 29px;
      font-weight: 800;
      letter-spacing: -.04em;
      flex: 0 0 auto;
    }
    .install-app-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 18px;
      display: block;
    }
    .install-app-card.active .install-app-icon {
      color: rgba(230, 238, 247, .76);
      border-color: rgba(96, 176, 255, .28);
    }
    .install-panel {
      border-radius: 28px;
      padding: 28px;
      background: linear-gradient(180deg, rgba(28, 35, 54, .98), rgba(20, 27, 43, .98));
      border: 1px solid rgba(255,255,255,.08);
      box-shadow: var(--shadow);
    }
    .install-panel-top {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 18px;
    }
    .install-badge {
      width: 68px;
      height: 68px;
      border-radius: 999px;
      border: 1px solid rgba(96, 176, 255, .32);
      background: rgba(26, 59, 89, .66);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #a8d1ff;
      font-size: 28px;
      flex: 0 0 auto;
      box-shadow: inset 0 0 0 1px rgba(96, 176, 255, .08);
    }
    .install-badge img {
      width: 42px;
      height: 42px;
      object-fit: cover;
      border-radius: 14px;
      display: block;
    }
    .install-panel h3 {
      font-size: 19px;
      margin-bottom: 10px;
      color: #dce8f6;
    }
    .install-panel p {
      color: #a9b7c7;
      line-height: 1.6;
    }
    .install-links {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      max-width: 360px;
      margin-left: 94px;
    }
    .install-link {
      min-height: 56px;
      border-radius: 20px;
      border: 1px solid rgba(74, 136, 199, .62);
      background: rgba(18, 34, 57, .26);
      color: #78bcff;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 20px;
      font-size: 18px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .install-link:hover {
      transform: translateY(-2px);
      border-color: rgba(120, 188, 255, .9);
      box-shadow: 0 14px 24px rgba(0, 0, 0, .22);
    }
    .review-card p {
      font-style: italic;
      margin-bottom: 18px;
    }
    .author {
      color: var(--text);
      font-weight: 600;
      font-size: 14px;
    }
    .order-item, .pending-item {
      padding: 18px 0;
      border-top: 1px solid var(--line);
    }
    .order-item:first-child, .pending-item:first-child { border-top: 0; padding-top: 0; }
    .status {
      display: inline-block;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      background: rgba(15,157,88,.12);
      color: var(--ok);
    }
    .status.pending {
      background: rgba(239,108,0,.12);
      color: var(--warn);
    }
    textarea, input, select {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 12px 14px;
      font: inherit;
      background: rgba(255,255,255,.03);
      color: var(--text);
    }
    label {
      display: block;
      margin-bottom: 8px;
      color: var(--text);
      font-size: 13px;
    }
    textarea { min-height: 110px; resize: vertical; }
    .form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 12px;
    }
    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 14px;
    }
    .stat-card {
      border-radius: 22px;
      padding: 22px;
    }
    .stat-card h3 {
      font-size: 34px;
      margin-top: 8px;
    }
    .small { font-size: 13px; color: var(--muted); }
    .delivery {
      white-space: pre-wrap;
      padding: 14px;
      border-radius: 16px;
      background: rgba(255, 215, 0, .06);
      margin-top: 12px;
      border: 1px solid rgba(255, 215, 0, .08);
    }
    .hidden { display: none; }
    .toast {
      position: fixed;
      left: 50%;
      bottom: calc(18px + var(--safe-bottom));
      transform: translateX(-50%);
      background: #161616;
      color: white;
      padding: 12px 16px;
      border-radius: 999px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s ease, transform .2s ease;
      border: 1px solid #2a2a2a;
    }
    .toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(-4px);
    }
    .cookie-banner {
      position: fixed;
      left: 50%;
      bottom: calc(18px + var(--safe-bottom));
      transform: translateX(-50%);
      width: min(720px, calc(100vw - 20px));
      z-index: 120;
      padding: 16px 18px;
      border-radius: 22px;
      border: 1px solid rgba(255, 215, 0, .16);
      background: rgba(15, 15, 15, .96);
      box-shadow: 0 24px 64px rgba(0, 0, 0, .45);
      backdrop-filter: blur(14px);
    }
    .cookie-banner.hidden {
      display: none;
    }
    .cookie-title {
      color: var(--text);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .cookie-copy {
      font-size: 14px;
      line-height: 1.55;
      color: var(--muted);
    }
    .cookie-copy a {
      color: var(--accent);
      text-decoration: none;
    }
    .cookie-copy a:hover {
      text-decoration: underline;
    }
    .cookie-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 14px;
    }
    .empty-state {
      text-align: center;
      padding: 40px 20px;
    }
    .site-footer {
      margin-top: 48px;
      border-top: 1px solid #202020;
      padding: 34px 0 calc(8px + var(--safe-bottom));
    }
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
      will-change: opacity, transform;
    }
    .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }
    .stagger-1 { transition-delay: .05s; }
    .stagger-2 { transition-delay: .12s; }
    .stagger-3 { transition-delay: .19s; }
    .stagger-4 { transition-delay: .26s; }
    @media (prefers-reduced-motion: reduce) {
      .hero,
      h1,
      .hero-feature-dot,
      .line,
      .reveal,
      .plan-card,
      .review-card,
      .why-item,
      .gallery-block,
      .stat-card {
        animation: none !important;
        transition: none !important;
      }
      .reveal {
        opacity: 1;
        transform: none;
      }
    }
    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 28px;
      flex-wrap: wrap;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 13px;
    }
    .footer-links a:hover {
      color: var(--accent);
    }
    .copyright {
      width: 100%;
      text-align: center;
      color: #4e4e4e;
      font-size: 12px;
      margin-top: 28px;
    }
    .mono {
      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      font-size: 12px;
      color: var(--muted);
    }
    @media (max-width: 860px) {
      .panel-stack { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .topbar { padding-top: calc(16px + var(--safe-top)); }
      h1 { font-size: 36px; }
      .hero { min-height: auto; padding: 54px 20px 30px; }
    }
    @media (max-width: 640px) {
      .app {
        padding:
          max(0px, var(--safe-top))
          calc(10px + var(--safe-right))
          calc(26px + var(--safe-bottom))
          calc(10px + var(--safe-left));
      }
      .topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: calc(14px + var(--safe-top)) 0 10px;
      }
      .logo {
        font-size: 20px;
        text-align: center;
        justify-content: center;
      }
      .logo-mark {
        width: 40px;
        height: 40px;
      }
      .topbar .inline-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
      .hero {
        border-radius: 24px;
        padding: 36px 16px 22px;
      }
      .hero::after {
        width: 140px;
        height: 140px;
        right: -24px;
        top: -24px;
      }
      h1 {
        font-size: 30px;
        margin-bottom: 12px;
      }
      .hero-logo {
        width: 88px;
        margin-bottom: 10px;
      }
      .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
      }
      .hero-actions {
        width: 100%;
        gap: 10px;
        margin-top: 20px;
      }
      .hero-actions button,
      .hero-actions .btn-secondary,
      .hero-actions .btn-primary {
        flex: 1 1 100%;
      }
      .hero-features {
        margin-top: 26px;
        gap: 12px;
        justify-content: flex-start;
      }
      .hero-feature {
        width: 100%;
        font-size: 13px;
      }
      .tabs {
        margin: 16px 0 22px;
        gap: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 4px;
        scrollbar-width: none;
      }
      .tabs::-webkit-scrollbar {
        display: none;
      }
      .tab,
      button {
        min-height: 46px;
        padding: 12px 16px;
        font-size: 14px;
      }
      .tabs .tab {
        white-space: nowrap;
        flex: 0 0 auto;
      }
      .section-head {
        margin-bottom: 16px;
      }
      .section-head h2 {
        font-size: 24px;
        line-height: 1.18;
      }
      .section-head p {
        font-size: 14px;
        line-height: 1.6;
      }
      .grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .plan-card,
      .panel,
      .stat-card,
      .review-card,
      .why-item {
        border-radius: 20px;
        padding: 18px;
      }
      .plan-card h3,
      .panel h3 {
        font-size: 18px;
      }
      .price {
        font-size: 30px;
        margin: 14px 0 8px;
      }
      .kicker,
      .feature-list li,
      .small,
      p {
        font-size: 13px;
      }
      .feature-list {
        margin-bottom: 16px;
      }
      .feature-list li {
        margin-bottom: 8px;
      }
      .plan-card.popular::after {
        top: 16px;
        right: -38px;
        font-size: 9px;
        padding: 5px 40px;
      }
      .badge {
        font-size: 11px;
        padding: 6px 10px;
      }
      .about-grid,
      .install-app-grid,
      .why-grid,
      .reviews-grid,
      .stats,
      .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .install-panel {
        padding: 20px;
        border-radius: 22px;
      }
      .install-panel-top {
        gap: 14px;
        margin-bottom: 14px;
      }
      .install-badge {
        width: 58px;
        height: 58px;
        font-size: 24px;
      }
      .install-app-card {
        min-height: 80px;
        padding: 16px;
      }
      .install-app-name {
        font-size: 16px;
      }
      .install-app-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
      }
      .install-links {
        max-width: none;
        margin-left: 0;
      }
      .install-link {
        min-height: 50px;
        font-size: 16px;
        border-radius: 18px;
      }
      .gallery-block {
        min-height: 210px;
        border-radius: 22px;
        letter-spacing: .2em;
        font-size: 12px;
      }
      .gallery-label {
        left: 14px;
        bottom: 14px;
        font-size: 10px;
        padding: 7px 10px;
      }
      .about-copy h3 {
        font-size: 24px;
        line-height: 1.2;
      }
      .about-copy p {
        font-size: 14px;
        line-height: 1.65;
      }
      .order-item,
      .pending-item {
        padding: 14px 0;
      }
      .delivery {
        padding: 12px;
        font-size: 13px;
      }
      .status {
        font-size: 11px;
      }
      textarea,
      input,
      select {
        min-height: 46px;
        padding: 11px 12px;
        font-size: 15px;
      }
      textarea {
        min-height: 96px;
      }
      .site-footer {
        margin-top: 32px;
        padding: 24px 0 calc(2px + var(--safe-bottom));
      }
      .footer-content {
        gap: 18px;
      }
      .footer-links {
        width: 100%;
        gap: 8px;
      }
      .footer-links a,
      .copyright {
        font-size: 12px;
      }
      .cookie-banner {
        width: calc(100vw - 16px);
        padding: 14px;
        border-radius: 18px;
      }
      .cookie-actions {
        display: grid;
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 390px) {
      .app {
        padding:
          max(0px, var(--safe-top))
          calc(8px + var(--safe-right))
          calc(22px + var(--safe-bottom))
          calc(8px + var(--safe-left));
      }
      .hero {
        padding: 30px 14px 18px;
      }
      h1 {
        font-size: 26px;
      }
      .logo-mark {
        width: 34px;
        height: 34px;
      }
      .hero-subtitle {
        font-size: 14px;
      }
      .install-app-card {
        min-height: 74px;
        padding: 14px;
      }
      .install-panel {
        padding: 18px;
      }
      .install-badge {
        width: 52px;
        height: 52px;
        font-size: 22px;
      }
      .install-link {
        font-size: 15px;
      }
      .tab,
      button {
        min-height: 44px;
        padding: 11px 14px;
        font-size: 13px;
      }
      .plan-card,
      .panel,
      .stat-card,
      .review-card,
      .why-item {
        padding: 16px;
      }
      .price {
        font-size: 28px;
      }
      .eyebrow {
        font-size: 11px;
        letter-spacing: .1em;
      }
      .section-head h2 {
        font-size: 22px;
      }
    }