  /* Upload box */
  .upload-box {
    background: #fff;
    border: 2px dashed rgba(36, 97, 232, 0.18);
    border-radius: 16px;
    padding: 56px 32px;
    text-align: center;
    transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 8px 24px -8px rgba(31, 41, 55, 0.06);
  }
  .upload-box:hover {
    border-color: rgba(36, 97, 232, 0.4);
    background: #FCFCFE;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -12px rgba(31, 41, 55, 0.10);
  }
  .upload-box.dragover {
    border-color: var(--brand);
    border-style: solid;
    background: var(--brand-soft);
  }
  .upload-box .btn {
    margin-bottom: 18px;
    box-shadow: 0 8px 20px -4px rgba(36, 97, 232, 0.4);
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .upload-box .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -4px rgba(36, 97, 232, 0.5);
  }
  .upload-info {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .upload-hint {
    font-size: 13px;
    color: var(--muted);
  }
  .upload-hint a { color: var(--brand); text-decoration: none; }
  .upload-hint a:hover { text-decoration: underline; }
  .upload-input { display: none; }

  .hero-samples-row {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  @media (max-width: 880px) { .hero-samples-row { justify-content: center; } }
  .hero-samples-label {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.3;
  }
  .hero-samples-label strong { display: block; color: var(--ink); font-weight: 600; }
  .samples {
    display: flex;
    gap: 8px;
  }
  .sample {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform .15s;
    position: relative;
    overflow: hidden;
  }
  .sample:hover { transform: scale(1.06); }
  .sample::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border: 2px solid var(--brand);
    border-radius: 50%;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
  }
  .sample-1 { background: linear-gradient(135deg, #FFB088 0%, #FF7A52 100%); }
  .sample-2 { background: linear-gradient(135deg, #88D8C8 0%, #4A9F8F 100%); }
  .sample-3 { background: linear-gradient(135deg, #B8B5FF 0%, #6B5BFF 100%); }
  .sample-4 { background: linear-gradient(135deg, #F5D547 0%, #C49A1A 100%); }

  .hero-disclaimer {
    margin-top: 14px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
  }
  .hero-disclaimer a { color: var(--ink-2); }

  /* Section base */
  section { position: relative; }
  .section-pad { padding: 96px 0; }
  .section-pad-sm { padding: 72px 0; }

  .section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
  }
  h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    color: var(--ink);
  }
  .section-sub {
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
  }

  /* Showcase / Demo */
  .quality-section { padding: 80px 0; }
  .quality-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }
  .tab {
    padding: 8px 18px;
    border-radius: 999px;
    background: transparent;
    border: none;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    cursor: pointer;
    transition: all .15s;
  }
  .tab.active { background: var(--bg-soft); color: var(--ink); font-weight: 600; }
  .tab:not(.active):hover { color: var(--ink); }

  .demo-stage {
    max-width: 880px;
    margin: 0 auto;
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #faf6ed 0%, #ede4cc 50%, #d4c5a0 100%);
    border: 1px solid var(--line);
    user-select: none;
  }

  /* Mock product scene inside demo */
  .demo-stage .scene-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28%;
    background: linear-gradient(180deg, #c4a17a 0%, #8a6a45 100%);
  }
  .demo-stage .scene-bag {
    position: absolute;
    bottom: 22%;
    left: 50%;
    transform: translateX(-50%);
    width: 24%;
    height: 36%;
    background: linear-gradient(180deg, #f5d547 0%, #e0a82a 100%);
    border-radius: 12% 12% 6% 6%;
  }
  .demo-stage .scene-bag::before {
    content: '';
    position: absolute;
    top: -28%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 38%;
    border: 6px solid #c08a18;
    border-bottom: none;
    border-radius: 50% 50% 0 0;
  }
  .demo-stage .scene-bag::after {
    content: '';
    position: absolute;
    top: 36%;
    left: 22%;
    width: 12px;
    height: 12px;
    background: #5a4218;
    border-radius: 50%;
    box-shadow: inset 0 0 0 3px #c08a18;
  }
  .demo-stage .scene-table {
    position: absolute;
    bottom: 14%;
    left: 8%;
    width: 22%;
    height: 8%;
    background: #6a4a2a;
    border-radius: 4px 4px 2px 2px;
  }
  .demo-stage .scene-cup {
    position: absolute;
    bottom: 22%;
    left: 14%;
    width: 8%;
    height: 12%;
    background: linear-gradient(180deg, #e8e3d4 0%, #c0b8a0 100%);
    border-radius: 4px 4px 8px 8px;
  }
  .demo-stage .scene-plant {
    position: absolute;
    bottom: 22%;
    right: 12%;
    width: 14%;
    height: 32%;
  }
  .demo-stage .scene-plant::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 35%;
    background: #b87838;
    border-radius: 4px 4px 0 0;
  }
  .demo-stage .scene-plant::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 70%;
    background:
      radial-gradient(ellipse at 30% 40%, #4a8a5a 0%, transparent 35%),
      radial-gradient(ellipse at 70% 30%, #5a9a6a 0%, transparent 35%),
      radial-gradient(ellipse at 50% 60%, #3a7a4a 0%, transparent 40%);
  }

  /* Hotspots in demo */
  .demo-hotspot {
    position: absolute;
    width: 28px;
    height: 28px;
    background: var(--brand);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    transition: transform .15s ease;
  }
  .demo-hotspot:hover { transform: scale(1.15); }
  .demo-hotspot::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--brand);
    opacity: 0;
    animation: pulse-ring 2s ease-out infinite;
    pointer-events: none;
  }
  .demo-hotspot.h-2 { background: #16a34a; }
  .demo-hotspot.h-2::before { border-color: #16a34a; animation-delay: 0.5s; }
  .demo-hotspot.h-3 { background: #f59e0b; }
  .demo-hotspot.h-3::before { border-color: #f59e0b; animation-delay: 1s; }
  .demo-hotspot.h-4 { background: #dc2626; }
  .demo-hotspot.h-4::before { border-color: #dc2626; animation-delay: 1.5s; }

  .demo-tooltip {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    min-width: 180px;
    max-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity .18s ease, transform .18s ease;
  }
  .demo-hotspot:hover + .demo-tooltip,
  .demo-tooltip:hover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .demo-tooltip h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .demo-tooltip p {
    font-size: 12px;
    color: var(--ink-2);
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .demo-tooltip .price {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand);
  }
  .demo-tooltip .link {
    font-size: 12px;
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
  }

  .see-more {
    text-align: center;
    margin-top: 28px;
  }
  .see-more a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
  }
  .see-more a:hover { text-decoration: underline; }

  /* Features Grid */
  .features-section {
    padding: 96px 0;
    background: var(--bg-soft);
  }
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
  }
  @media (max-width: 720px) {
    .features-grid { grid-template-columns: 1fr; }
  }
  .feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .15s, transform .15s;
  }
  .feature-card:hover { border-color: var(--ink); }
  .feature-visual {
    aspect-ratio: 16/9;
    position: relative;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .feature-body {
    padding: 22px 26px 28px;
  }
  .feature-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }
  .feature-body p {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.55;
  }

  /* Visual 1: Polygon Shapes & Pins */
  .fv-polygon {
    background: linear-gradient(135deg, #faf6ed 0%, #ede4cc 100%);
  }
  .fv-polygon .fv-image {
    position: absolute;
    inset: 12% 16%;
    background: linear-gradient(180deg, #c4a17a 0%, #8a6a45 100%);
    border-radius: 6px;
  }
  .fv-polygon .fv-pin {
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--brand);
    border: 2px solid #fff;
    border-radius: 50%;
    top: 32%;
    left: 26%;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }
  .fv-polygon .fv-pin::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--brand);
    opacity: 0.4;
    animation: pulse-ring 2s ease-out infinite;
  }
  .fv-polygon .fv-shape {
    position: absolute;
    top: 28%;
    right: 18%;
    width: 38%;
    height: 50%;
    z-index: 2;
  }

  /* Visual 2: Customise Styles */
  .fv-styles {
    background: linear-gradient(135deg, #ffffff 0%, #f0f1f3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px;
  }
  .fv-styles .style-pin {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    flex-shrink: 0;
  }
  .fv-styles .sp-1 { background: var(--brand); }
  .fv-styles .sp-2 { background: #16a34a; }
  .fv-styles .sp-3 {
    background: #f59e0b;
    border-radius: 8px;
  }
  .fv-styles .sp-4 { background: #dc2626; }
  .fv-styles .sp-5 {
    background: #7c3aed;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
  }
  .fv-styles .sp-5 svg { transform: rotate(45deg); }

  /* Visual 3: Rich Tooltips */
  .fv-tooltip {
    background: linear-gradient(135deg, #f3eee6 0%, #e0d4ba 100%);
  }
  .fv-tooltip .scene-block {
    position: absolute;
    inset: 10% 8% 10% 56%;
    background: linear-gradient(135deg, #d8a868 0%, #a87a45 100%);
    border-radius: 6px;
  }
  .fv-tooltip .scene-pin {
    position: absolute;
    top: 38%;
    left: 60%;
    width: 16px;
    height: 16px;
    background: var(--brand);
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  }
  .fv-tooltip .mock-tooltip {
    position: absolute;
    top: 12%;
    left: 8%;
    width: 44%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    z-index: 4;
  }
  .fv-tooltip .mt-img {
    height: 38px;
    background: linear-gradient(135deg, #b8d4f5 0%, #6ba3e0 100%);
    border-radius: 4px;
    margin-bottom: 8px;
    position: relative;
  }
  .fv-tooltip .mt-img::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  }
  .fv-tooltip .mt-title {
    height: 7px;
    background: var(--ink);
    border-radius: 2px;
    margin-bottom: 6px;
    width: 75%;
  }
  .fv-tooltip .mt-line {
    height: 4px;
    background: var(--line);
    border-radius: 2px;
    margin-bottom: 4px;
  }
  .fv-tooltip .mt-line.short { width: 60%; }
  .fv-tooltip .mt-button {
    height: 14px;
    width: 50%;
    background: var(--brand);
    border-radius: 3px;
    margin-top: 8px;
  }

  /* Visual 4: Vector Import */
  .fv-vector {
    background: linear-gradient(135deg, #ffffff 0%, #f0f1f3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 16px;
  }
  .fv-vector .vector-source {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  }
  .fv-vector .vector-source span {
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.06em;
  }
  .fv-vector .vector-arrow {
    color: var(--brand);
    flex-shrink: 0;
  }
  .fv-vector .vector-target {
    width: 100px;
    height: 80px;
    background: linear-gradient(180deg, #b8956a 0%, #8a6a45 100%);
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
  }
  .fv-vector .vector-target svg {
    position: absolute;
    color: var(--brand);
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }
  .fv-vector .vector-target svg:nth-child(1) { top: 18%; left: 20%; }
  .fv-vector .vector-target svg:nth-child(2) { top: 50%; right: 18%; color: #f59e0b; }
  .fv-vector .vector-target svg:nth-child(3) { bottom: 14%; left: 38%; color: #16a34a; }

  /* Info section */
  .info-section { padding: 80px 0; }
  .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
  }
  @media (max-width: 880px) { .info-grid { grid-template-columns: 1fr; gap: 40px; } }
  .info-grid h2 { text-align: left; font-size: clamp(24px, 2.6vw, 32px); }
  .info-grid p { font-size: 15px; color: var(--ink-2); margin-bottom: 14px; }
  .info-grid p strong { color: var(--ink); font-weight: 600; }
  .info-links { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
  .info-links a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
  }
  .info-links a:hover { text-decoration: underline; }

  /* Editor mockup */
  .editor-mock {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
  }
  .editor-bar {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .editor-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--line);
  }
  .editor-bar .label {
    margin-left: 8px;
    font-size: 11px;
    color: var(--muted);
  }
  .editor-canvas {
    flex: 1;
    position: relative;
    background:
      linear-gradient(45deg, #f8f8f5 25%, transparent 25%),
      linear-gradient(-45deg, #f8f8f5 25%, transparent 25%),
      linear-gradient(45deg, transparent 75%, #f8f8f5 75%),
      linear-gradient(-45deg, transparent 75%, #f8f8f5 75%);
    background-size: 16px 16px;
    background-position: 0 0, 0 8px, 8px -8px, 8px 0;
    background-color: #fff;
    overflow: hidden;
  }
  .editor-canvas .canvas-image {
    position: absolute;
    inset: 14%;
    background: linear-gradient(135deg, #f5d547 0%, #d4a317 60%, #b08008 100%);
    border-radius: 6px;
  }
  .editor-canvas .pin {
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--brand);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
  }
  .editor-canvas .pin-1 { top: 28%; left: 32%; }
  .editor-canvas .pin-2 { top: 48%; left: 58%; background: #16a34a; }
  .editor-canvas .pin-3 { top: 64%; left: 38%; background: #f59e0b; }
  .editor-toolbar {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    padding: 10px 12px;
    display: flex;
    gap: 8px;
  }
  .editor-toolbar .tool {
    width: 26px;
    height: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-2);
  }
  .editor-toolbar .tool.active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
  }

  /* Use cases */
  .uses-section { background: var(--bg-soft); }
  .uses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 760px;
    margin: 0 auto;
  }
  @media (max-width: 720px) { .uses-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 460px) { .uses-grid { grid-template-columns: 1fr; } }
  .use-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
    transition: border-color .15s;
  }
  .use-card:hover { border-color: var(--ink); }
  .use-card svg { flex-shrink: 0; color: var(--ink-2); }
  .use-card span.label {
    font-size: 14px;
    font-weight: 600;
    flex: 1;
  }
  .use-card .arrow {
    color: var(--ink-2);
    font-size: 14px;
  }

  /* Testimonials */
  .testi-section { background: var(--bg-soft); }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
  }
  @media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; max-width: 480px; } }
  .testi-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .testi-logo {
    height: 28px;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--ink-2);
    letter-spacing: -0.01em;
    font-size: 16px;
  }
  .testi-logo-1 { color: #c41e3a; font-style: italic; }
  .testi-logo-2 { color: #1a3a8a; font-family: serif; font-size: 18px; }
  .testi-logo-3 { color: #16a34a; }
  .testi-quote {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.55;
    flex: 1;
  }
  .testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
  }
  .testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mint);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }
  .testi-avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 80%;
    background: linear-gradient(180deg, #d4a888 0%, #6b4a30 100%);
    border-radius: 50% 50% 0 0;
  }
  .testi-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
  }
  .testi-role {
    font-size: 12px;
    color: var(--muted);
  }

  /* Steps showcase */
  .steps-grid {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  @media (max-width: 720px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
  .step-cell {
    aspect-ratio: 3/4;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid var(--line-soft);
    position: relative;
    background: var(--bg-soft);
  }
  .step-cell .step-num {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    z-index: 5;
  }
  .step-cell .mock-image {
    position: absolute;
    inset: 18%;
    border-radius: 6px;
  }
  .step-1 .mock-image { background: linear-gradient(135deg, #b8d4f5 0%, #6ba3e0 100%); }
  .step-2 .mock-image { background: linear-gradient(135deg, #b8d4f5 0%, #6ba3e0 100%); }
  .step-3 .mock-image { background: linear-gradient(135deg, #b8d4f5 0%, #6ba3e0 100%); }
  .step-4 .mock-image { background: linear-gradient(135deg, #b8d4f5 0%, #6ba3e0 100%); }
  .step-cell .mini-pin {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--brand);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  }
  .step-2 .mini-pin-1 { top: 30%; left: 38%; }
  .step-3 .mini-pin-1 { top: 30%; left: 38%; }
  .step-3 .mini-pin-2 { top: 50%; left: 60%; background: #16a34a; }
  .step-3 .mini-pin-3 { top: 65%; left: 30%; background: #f59e0b; }
  .step-4 .mini-pin-1 { top: 30%; left: 38%; }
  .step-4 .mini-pin-2 { top: 50%; left: 60%; background: #16a34a; }
  .step-4 .mini-pin-3 { top: 65%; left: 30%; background: #f59e0b; }
  .step-cell .share-icon {
    position: absolute;
    bottom: 14%;
    right: 14%;
    background: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    color: var(--brand);
  }

  .captions-row {
    max-width: 880px;
    margin: 12px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  @media (max-width: 720px) { .captions-row { grid-template-columns: repeat(2, 1fr); } }
  .step-caption {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
  }
  .step-caption strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 2px;
  }

  /* Final upload */
  .final-upload {
    padding: 80px 0;
    text-align: center;
  }
  .final-upload .upload-box {
    max-width: 520px;
    margin: 24px auto 0;
  }
  .final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 32px 0 24px;
  }
  .final-upload .hero-samples-row {
    justify-content: center;
    margin-top: 20px;
  }

  /* Blog & Newsletter */
  .blog-section { background: var(--bg-soft); padding: 64px 0; }
  .blog-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 0 auto 24px;
    max-width: 980px;
  }
  .blog-head h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
  }
  .blog-head a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 980px;
    margin: 0 auto 48px;
  }
  @media (max-width: 720px) { .blog-grid { grid-template-columns: 1fr; } }
  .blog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0;
    text-decoration: none;
    display: block;
    overflow: hidden;
    transition: border-color .15s, transform .15s;
  }
  .blog-card:hover { border-color: var(--ink); transform: translateY(-2px); }
  .blog-card-cover {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-soft);
  }
  .blog-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s;
  }
  .blog-card:hover .blog-card-cover img { transform: scale(1.03); }
  .blog-date {
    font-size: 12px;
    color: var(--muted);
    margin: 16px 20px 6px;
  }
  .blog-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    margin: 0 20px 18px;
  }

  .newsletter {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 720px) { .newsletter { grid-template-columns: 1fr; gap: 24px; } }
  .newsletter h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
  .newsletter p { font-size: 14px; color: var(--ink-2); }
  .newsletter-form {
    display: flex;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px;
    align-items: center;
  }
  .newsletter-form input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 18px;
    font-family: var(--font);
    font-size: 14px;
    color: var(--ink);
  }
  .newsletter-form input::placeholder { color: var(--muted); }
  .newsletter-form button {
    background: var(--brand);
    color: #fff;
    border: none;
    padding: 9px 22px;
    border-radius: 999px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
  }
  .newsletter-form button:hover { background: var(--brand-dark); }
  .newsletter-disclaimer {
    margin-top: 8px;
    font-size: 12px;
    color: var(--muted);
  }
  .newsletter-disclaimer a { color: var(--brand); }

  /* Reviews */
  .reviews {
    text-align: center;
    padding: 48px 0 32px;
    border-top: 1px solid var(--line);
  }
  .reviews-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .reviews-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .stars { color: var(--brand); font-size: 16px; letter-spacing: 2px; }
  .stars span { color: var(--line); }
  .reviews-rating {
    font-size: 12px;
    color: var(--ink-2);
  }

  /* Footer Links */
  .footer-links-section {
    padding: 56px 0 64px;
    background: #fff;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 980px;
    margin: 0 auto;
  }
  @media (max-width: 720px) { .footer-links { grid-template-columns: repeat(2, 1fr); } }
  .footer-links h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 14px;
  }
  .footer-links ul { list-style: none; }
  .footer-links ul li { padding: 4px 0; }
  .footer-links ul a {
    color: var(--ink-2);
    text-decoration: none;
    font-size: 13px;
  }
  .footer-links ul a:hover { color: var(--brand); text-decoration: underline; }

  /* Bottom Footer */
  footer.bottom {
    background: var(--footer-bg);
    color: rgba(255,255,255,0.75);
    padding: 48px 0 32px;
    position: relative;
  }
  footer.bottom .wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    width: 100%;
    height: 24px;
    display: block;
  }
  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .lang-pill {
    background: rgba(255,255,255,0.95);
    color: var(--ink);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
  }
  .footer-social {
    display: flex;
    gap: 14px;
  }
  .footer-social a {
    color: rgba(255,255,255,0.85);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-social a:hover { color: #fff; }
  .footer-bottom-row {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
  }
  .footer-bottom-row a { color: rgba(255,255,255,0.75); text-decoration: none; }
  .footer-bottom-row a:hover { color: #fff; }
  .footer-bottom-row .legal { display: flex; gap: 18px; flex-wrap: wrap; }

  /* Reveal */
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ===========================================
     Hero im RemoveBG-Stil: Bild oben, Text drunter
     =========================================== */
  .hero-rb {
    padding: 32px 0 48px;
  }
  .hero-rb .container {
    max-width: 720px;
  }

  /* Stage erbt fast alles von .demo-stage */
  .hero-stage {
    max-width: 100%;
    margin: 0 auto 40px;
    aspect-ratio: 16/10;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #faf6ed 0%, #ede4cc 50%, #d4c5a0 100%);
    border: 1px solid var(--line);
    user-select: none;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    /* Fallback fuer Browser ohne aspect-ratio (Safari < 15) */
    min-height: 200px;
  }
  /* Padding-Top-Trick als Fallback, wenn aspect-ratio nicht greift */
  @supports not (aspect-ratio: 16/10) {
    .hero-stage::before {
      content: '';
      display: block;
      padding-top: 62.5%; /* 10/16 = 0.625 */
    }
  }
  /* Szene-Elemente teilen sich die Klassen mit .demo-stage,
     definiert weiter oben in dieser Datei. Damit sie auch in
     der .hero-stage greifen, hier die Selektoren spiegeln: */
  .hero-stage .scene-floor,
  .hero-stage .scene-bag,
  .hero-stage .scene-table,
  .hero-stage .scene-cup,
  .hero-stage .scene-plant,
  .hero-stage .demo-hotspot,
  .hero-stage .demo-tooltip { /* nichts setzen, nur Selektor-Existenz fuer JS-Hover */ }

  /* Fallback: Falls die Szene-Styles nur an .demo-stage gebunden waren,
     hier noch einmal explizit fuer .hero-stage definieren. */
  .hero-stage .scene-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28%;
    background: linear-gradient(180deg, #c4a17a 0%, #8a6a45 100%);
  }
  .hero-stage .scene-bag {
    position: absolute;
    bottom: 22%;
    left: 50%;
    transform: translateX(-50%);
    width: 24%;
    height: 36%;
    background: linear-gradient(180deg, #f5d547 0%, #e0a82a 100%);
    border-radius: 12% 12% 6% 6%;
  }
  .hero-stage .scene-bag::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 22%;
    right: 22%;
    height: 20%;
    border: 4px solid #b8881e;
    border-bottom: none;
    border-radius: 50% 50% 0 0;
  }
  .hero-stage .scene-bag::after {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 10%;
    height: 6%;
    background: #b8881e;
    border-radius: 2px;
  }
  .hero-stage .scene-table {
    position: absolute;
    bottom: 28%;
    left: 8%;
    width: 32%;
    height: 8%;
    background: #5d4226;
    border-radius: 4px;
  }
  .hero-stage .scene-cup {
    position: absolute;
    bottom: 36%;
    left: 16%;
    width: 8%;
    height: 10%;
    background: #fff;
    border-radius: 0 0 50% 50%;
    border: 2px solid #d8d0c3;
    border-top: none;
  }
  .hero-stage .scene-plant {
    position: absolute;
    bottom: 28%;
    right: 10%;
    width: 16%;
    height: 30%;
  }
  .hero-stage .scene-plant::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 30%;
    background: #b56b3a;
    border-radius: 4px 4px 8px 8px;
  }
  .hero-stage .scene-plant::after {
    content: '';
    position: absolute;
    bottom: 24%;
    left: 0;
    right: 0;
    height: 76%;
    background: radial-gradient(ellipse at center, #4a7c59 0%, #2d5a3d 100%);
    border-radius: 50% 50% 30% 30%;
  }

  /* Hotspots in der Hero-Stage (kopiert aus .demo-hotspot weiter oben) */
  .hero-stage .demo-hotspot {
    position: absolute;
    width: 28px;
    height: 28px;
    background: var(--brand);
    color: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    animation: pulseHero 2.4s ease-in-out infinite;
    z-index: 2;
    transform: translate(-50%, -50%);
  }
  .hero-stage .demo-hotspot.h-2 { animation-delay: .6s; }
  .hero-stage .demo-hotspot.h-3 { animation-delay: 1.2s; }
  .hero-stage .demo-hotspot.h-4 { animation-delay: 1.8s; }
  @keyframes pulseHero {
    0%, 100% { box-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 0 0 0 rgba(255,63,65,0.4); }
    50% { box-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 0 0 12px rgba(255,63,65,0); }
  }

  .hero-stage .demo-tooltip {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    font-size: 13px;
    max-width: 200px;
    z-index: 1;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .hero-stage:hover .demo-tooltip,
  .hero-stage .demo-hotspot:hover + .demo-tooltip {
    opacity: 1;
    transform: translateY(0);
  }
  .hero-stage .demo-tooltip h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--ink);
  }
  .hero-stage .demo-tooltip p {
    font-size: 12px;
    color: var(--ink-2);
    line-height: 1.4;
    margin-bottom: 4px;
  }
  .hero-stage .demo-tooltip .price {
    font-weight: 700;
    color: var(--brand);
    font-size: 14px;
  }
  .hero-stage .demo-tooltip .link {
    color: var(--brand);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
  }

  /* Text- und CTA-Bereich unter der Stage */
  .hero-rb-text {
    text-align: center;
  }
  .hero-rb-text h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: 28px;
  }
  .hero-rb-lead {
    font-size: 22px;
    color: var(--ink-2);
    margin-bottom: 36px;
    line-height: 1.4;
    font-weight: 500;
  }
  .hero-rb-pill {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    padding: 6px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 20px;
    margin-left: 4px;
    vertical-align: 1px;
    white-space: nowrap;
  }

  .btn-hero-rb {
    display: block;
    width: 100%;
    max-width: 520px;
    margin: 0 auto 32px;
    padding: 20px 24px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 999px;
  }

  /* Plattform-Slideshow (ehemals Templates) */
  .hero-rb-platforms {
    margin-bottom: 24px;
  }
  .hero-rb-platforms-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 14px;
    text-align: center;
  }
  .hero-rb-platforms-track-wrap {
    overflow: hidden;
    position: relative;
    /* Soft-Fade an den Raendern */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
  .hero-rb-platforms-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: hero-platforms-scroll 38s linear infinite;
  }
  .hero-rb-platforms-track-wrap:hover .hero-rb-platforms-track {
    animation-play-state: paused;
  }
  .hero-rb-platform-logo {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .18s, box-shadow .18s, border-color .18s;
    text-decoration: none;
  }
  .hero-rb-platform-logo:hover {
    transform: translateY(-3px);
    border-color: var(--brand);
    box-shadow: 0 8px 18px -4px rgba(31, 41, 55, 0.14);
  }
  .hero-rb-platform-logo svg,
  .hero-rb-platform-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  @keyframes hero-platforms-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-rb-platforms-track {
      animation: none;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
    }
  }

  .hero-rb-disclaimer {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    max-width: 480px;
    margin: 0 auto;
  }
  .hero-rb-disclaimer a { color: var(--ink-2); text-decoration: underline; }
  .hero-rb-disclaimer a:hover { color: var(--brand); }

  @media (max-width: 540px) {
    .hero-rb-text h1 { font-size: 48px; letter-spacing: -0.035em; }
    .hero-rb-lead { font-size: 18px; }
    .hero-rb-pill { font-size: 17px; padding: 5px 14px; }
    .btn-hero-rb { font-size: 17px; padding: 18px 20px; }
    /* Tooltips auf Mobile ausblenden — sie wuerden ueber den Bildrand ragen
       und die Stage zerschiessen. Hotspots reichen als visuelle Andeutung. */
    .hero-stage .demo-tooltip { display: none; }
    .hero-stage .demo-hotspot { width: 24px; height: 24px; font-size: 11px; }
  }
