  /* RonVue 页面专用样式 */
  .rowcraft-page, .rowcraft-page body { background: var(--navy, #0a1628); }


  :root {
    --navy: #0a1628;
    --navy-mid: #132040;
    --navy-light: #1e3260;
    --gold: #c8a96e;
    --gold-light: #e8d4a8;
    --gold-dark: #8a6f42;
    --water: #1a4a6e;
    --water-light: #2d6fa8;
    --white: #f8f6f2;
    --off-white: #ede9e2;
    --gray: #a0a8b4;
    --red-accent: #c0392b;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ===================== HOMEPAGE ===================== */
  #homepage {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  /* ── HERO: Full-bleed photo ── */
  .hero {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
    overflow: hidden;
  }

  /* ── Hero image slider ── */
  .hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    transform: translateX(100%);  /* 默认右侧屏外 */
    transition: transform 1.6s ease;
  }
  .hero-slide:nth-child(1) { background-image: url('/wp-content/uploads/ronvue/pages/rowcraft/custom-hero-athlete-sunset.webp'); }
  @media (max-width: 900px) { .hero-slide:nth-child(1) { background-position: 70% 30%; } }


  .hero-slide:nth-child(2) { background-image: url('/wp-content/uploads/ronvue/pages/rowcraft/custom-hero-dock-v3.jpg'); }

  .hero-slide.active { transform: translateX(0); z-index: 1; }
  .hero-slide.exit   { transform: translateX(-100%); z-index: 0; }

  .hero-dots {
    position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; gap: .55rem;
  }
  .hero-dot {
    width: 12px; height: 12px; border-radius: 50%; padding: 0; cursor: pointer;
    border: 1.5px solid rgba(255,255,255,.85); background: transparent;
    transition: background .3s, transform .3s;
  }
  .hero-dot.active { background: #fff; transform: scale(1.15); }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,27,46,0.75) 0%, transparent 100%);
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4rem 6rem;
    max-width: 680px;
    animation: fadeInUp 1.2s ease both;
  }

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

  .hero-eyebrow {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: var(--font-cn-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--white);
    text-shadow: 0 2px 16px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.6), 0 0 40px rgba(13,27,46,0.7);
  }

  .hero-desc {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(248,246,242,0.78);
    letter-spacing: 0.04em;
    line-height: 1.9;
    max-width: 32em;
    margin: 0 0 2rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(248,246,242,0.78);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 500px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(248,246,242,0.35);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    margin-left: 1rem;
  }

  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* Stats strip */
  .stats-strip {
    position: relative;
    background: rgba(200,169,110,0.08);
    border-top: 1px solid rgba(200,169,110,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding: 2rem 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .stat-item { text-align: center; }

  .stat-number {
    font-family: var(--font-cn-serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .stat-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
  }

  /* ── BRAND QUOTE (emotion section) ── */
  .brand-quote-section {
    position: relative;
    overflow: hidden;
    padding: 0;
  }

  .brand-quote-photo {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1600&q=80&fit=crop&crop=faces,center');
    background-size: cover;
    background-position: center;
    filter: grayscale(30%) brightness(0.35);
  }

  .brand-quote-inner {
    position: relative;
    z-index: 2;
    padding: 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .brand-quote-text {
    font-family: var(--font-cn-serif);
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.45;
    color: var(--white);
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
  }

  .brand-quote-text em {
    font-style: normal;
    color: var(--gold);
    border-bottom: 1px solid rgba(200,169,110,0.4);
    padding-bottom: 2px;
  }

  .quote-attr {
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(200,169,110,0.7);
  }

  /* ── PRODUCT SHOWCASE (real scene photos) ── */
  .products-section {
    padding: 6rem 4rem;
  }

  .products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }

  .section-tag {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: var(--font-cn-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 0;
  }

  .section-title em { font-style: italic; color: var(--gold); }

  .section-body {
    color: var(--gray);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 2rem;
  }

  .product-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5px;
    background: rgba(200,169,110,0.12);
  }

  .product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--navy-mid);
  }

  .product-card:first-child {
    grid-row: span 2;
  }

  .product-card-photo {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
    filter: brightness(0.75);
  }

  .product-card:first-child .product-card-photo {
    min-height: 560px;
  }

  /* 团队标识配件 — 更宽展示，独占 row2 col2+3 */
  .product-card:nth-child(4) {
    grid-column: 2 / 4;
  }
  .product-card:nth-child(4) .product-card-photo {
    min-height: 420px;
  }

  .product-card:hover .product-card-photo {
    transform: scale(1.06);
    filter: brightness(0.85);
  }

  .product-card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 1.75rem 1.75rem;
    background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 100%);
    transform: translateY(8px);
    transition: transform 0.4s ease;
  }

  .product-card:hover .product-card-info { transform: translateY(0); }

  .product-card-tag {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
  }

  .product-card-name {
    font-family: var(--font-cn-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.3rem;
  }

  .product-card:first-child .product-card-name {
    font-size: 2.2rem;
  }

  .product-card-desc {
    font-size: 0.78rem;
    color: rgba(248,246,242,0.65);
    line-height: 1.6;
    max-width: 340px;
  }

  .product-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease 0.05s;
    cursor: pointer;
    background: none;
    border: none;
  }

  .product-card:hover .product-card-cta {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── WHY US: split photo + features ── */
  .why-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
  }

  .why-photo-col {
    position: relative;
    overflow: hidden;
  }

  .why-photo {
    position: absolute;
    inset: 0;
    background-image: url('/wp-content/uploads/ronvue/pages/rowcraft/custom-why-rower.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
  }

  .why-photo-col:hover .why-photo { transform: scale(1.03); }

  .why-photo-caption {
    position: absolute;
    bottom: 2rem; left: 2rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(248,246,242,0.45);
  }

  .why-content-col {
    background: var(--navy-mid);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .feature-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,169,110,0.15);
    padding: 1.5rem;
    transition: all var(--transition);
    cursor: default;
  }

  .feature-card:hover {
    background: rgba(200,169,110,0.07);
    border-color: rgba(200,169,110,0.35);
    transform: translateY(-2px);
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: var(--gold);
  }

  .feature-card h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--white);
  }

  .feature-card p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.7;
  }

  /* ── PROCESS ── */
  .process-section {
    padding: 5rem 4rem;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(200,169,110,0.1);
  }

  .process-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  /* ===== 定制流程 — 新版五步卡片 ===== */
  .flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 0 auto;
  }
  .flow .step {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(200,169,110,0.03) 100%);
    border: 1px solid rgba(200,169,110,0.15);
    border-radius: 12px;
    padding: 32px 24px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
  }
  .flow .step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
  }
  .flow .step:hover {
    border-color: rgba(200,169,110,0.4);
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(200,169,110,0.06) 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }
  .flow .step:hover::before {
    opacity: 1;
  }
  .flow .step-num {
    font-family: var(--font-cn-serif);
    font-size: 48px;
    font-weight: 300;
    background: linear-gradient(180deg, rgba(200,169,110,0.4) 0%, rgba(200,169,110,0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 18px;
  }
  .flow .step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
  }
  .flow .copy {
    background: rgba(200,169,110,0.08);
    border-left: 3px solid rgba(200,169,110,0.4);
    border-radius: 0 8px 8px 0;
    padding: 14px 16px;
    margin-bottom: 14px;
  }
  .flow .copy p {
    font-size: 14px;
    color: var(--gray);
    line-height: 2;
  }
  .flow .tag {
    display: inline-block;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
  }
  .flow .t-ok { background: rgba(34,197,94,0.15); color: #4ade80; }
  .flow .t-warn { background: rgba(234,179,8,0.15); color: #fbbf24; }
  .flow .t-info { background: rgba(96,165,250,0.15); color: #93c5fd; }
  .flow .note { font-size: 13px; color: var(--gray); line-height: 1.8; margin-top: 10px; }
  .flow .note-warn { font-size: 13px; color: #fbbf24; line-height: 1.8; margin-top: 10px; }

  /* ── TRUST SECTION ── */
  .trust-section {
    padding: 5rem 4rem;
    border-top: 1px solid rgba(200,169,110,0.1);
  }

  .trust-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,169,110,0.15);
    padding: 3rem;
    position: relative;
  }

  .testimonial-card::before {
    content: '"';
    font-family: var(--font-cn-serif);
    font-size: 5rem;
    line-height: 0.8;
    color: rgba(200,169,110,0.18);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
    color: rgba(248,246,242,0.8);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    font-family: var(--font-cn-serif);
    font-size: 1.05rem;
    font-weight: 300;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--navy-light);
    border: 1px solid rgba(200,169,110,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-cn-serif);
    font-size: 1rem;
    color: var(--gold);
    overflow: hidden;
  }

  .author-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
  }

  .author-name {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
  }

  .author-role {
    font-size: 0.72rem;
    color: var(--gray);
    margin-top: 0.15rem;
  }

  .trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(200,169,110,0.1);
    flex-wrap: wrap;
  }

  .trust-badge {
    text-align: center;
    opacity: 0.6;
    transition: opacity 0.3s;
  }

  .trust-badge:hover { opacity: 1; }

  .trust-badge-icon {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    color: var(--gold);
  }

  .trust-badge-text {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
  }

  /* CTA Section */
  .cta-section {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .cta-bg-photo {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1528543606781-2f6e8ac5f83d?w=1600&q=80&fit=crop&crop=center');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(0.7);
  }

  .cta-inner {
    position: relative;
    z-index: 2;
    padding: 5rem 4rem;
  }

  .cta-section h2 {
    font-family: var(--font-cn-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .cta-section h2 em { font-style: italic; color: var(--gold); }

  .cta-section p {
    color: rgba(248,246,242,0.72);
    max-width: 500px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  /* footer styles removed — now using shared parts/ronvue-footer.php */
  }

  /* ===================== CUSTOMIZER ===================== */
  #customizer {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
  }
  #customizer.active {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    min-height: 100vh !important;
    overflow: visible !important;
    opacity: 1 !important;
    position: relative !important;
    pointer-events: auto !important;
  }

  .customizer-header {
    padding: 1rem 3rem;
    background: rgba(10,22,40,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
  }

  .customizer-logo {
    font-family: var(--font-cn-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.12em;
  }

  .back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid rgba(200,169,110,0.3);
    color: var(--gold);
    padding: 0.5rem 1.2rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
  }

  .back-btn:hover { background: rgba(200,169,110,0.1); }

  .step-indicator {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .step-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(200,169,110,0.25);
    transition: all 0.3s;
    cursor: pointer;
  }

  .step-dot.active { background: var(--gold); transform: scale(1.4); }
  .step-dot.done { background: rgba(200,169,110,0.6); }

  /* Customizer layout */
  .customizer-body {
    display: grid;
    grid-template-columns: 1fr;
    height: calc(100vh - 64px);
    overflow: hidden;
  }

  /* Left panel */
  .config-panel {
    overflow-y: auto;
    padding: 3rem;
    border-right: 1px solid rgba(200,169,110,0.12);
    scrollbar-width: thin;
    scrollbar-color: rgba(200,169,110,0.3) transparent;
  }

  .config-panel::-webkit-scrollbar { width: 4px; }
  .config-panel::-webkit-scrollbar-thumb { background: rgba(200,169,110,0.3); border-radius: 2px; }

  .step-panel { display: none; }
  .step-panel.active { display: block; animation: stepIn 0.4s ease both; }

  @keyframes stepIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .panel-title {
    font-family: var(--font-cn-serif);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.25rem;
    color: var(--white);
  }

  .panel-subtitle {
    font-size: 0.83rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 300;
  }


  .step4-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .step4-left { min-width: 0; }
  .step4-right { min-width: 0; padding-right: 2.5rem; }
  @media (max-width: 768px) {
    .step4-layout { grid-template-columns: 1fr; }
  }

  /* TYPE SELECTION */
  .type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .type-card {
    border: 1px solid rgba(200,169,110,0.2);
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    background: rgba(255,255,255,0.02);
  }

  .type-card:hover {
    border-color: rgba(200,169,110,0.5);
    background: rgba(200,169,110,0.05);
  }

  .type-card.selected {
    border-color: var(--gold);
    background: rgba(200,169,110,0.1);
  }

  .type-card.selected::after {
    content: '✓';
    position: absolute;
    top: 8px; right: 10px;
    font-size: 0.75rem;
    color: var(--gold);
  }

  .type-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 0.75rem;
    display: block;
  }

  .type-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.25rem;
  }

  .type-desc {
    font-size: 0.72rem;
    color: var(--gray);
  }

  /* COLOR SELECTION — Step 2 redesigned */
  .color-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
  }

  .color-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  .color-section-header .color-section-label {
    margin-bottom: 0;
  }

  .color-section { margin-bottom: 1.5rem; }

  .color-section-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
  }

  /* Tabs */
  .color-tabs {
    display: flex;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    padding: 3px;
    gap: 2px;
  }
  .color-tab {
    padding: 0.35rem 0.9rem;
    border: none;
    background: transparent;
    color: var(--gray);
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .color-tab.active {
    background: rgba(200,169,110,0.15);
    color: var(--gold);
  }
  .color-tab:hover:not(.active) { color: var(--white); }

  /* Custom Color Picker */
  .custom-picker { margin-bottom: 1.25rem; }
  .picker-area {
    position: relative;
    width: 280px;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    cursor: crosshair;
    margin-bottom: 0.5rem;
  }
  .picker-area canvas { display: block; border-radius: 6px; }
  .picker-cursor {
    position: absolute;
    width: 20px; height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.3), 0 2px 6px rgba(0,0,0,0.4);
    transition: none;
  }
  .picker-slider-wrap {
    position: relative;
    width: 280px;
    height: 18px;
    border-radius: 9px;
    overflow: hidden;
    cursor: pointer;
  }
  .picker-slider-wrap canvas { display: block; border-radius: 9px; }
  .slider-thumb {
    position: absolute;
    top: -3px;
    width: 14px; height: 24px;
    background: #fff;
    border-radius: 3px;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }

  /* Quick Color Swatches */
  .quick-colors-section { margin-bottom: 1.25rem; }
  .quick-colors-label {
    font-size: 0.7rem;
    color: var(--gray);
    margin-bottom: 0.6rem;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .quick-colors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .q-swatch {
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  }
  .q-swatch:hover { transform: scale(1.15); }
  .q-swatch.selected {
    border-color: var(--white);
    box-shadow: 0 0 0 2px var(--gold), inset 0 0 0 1px rgba(255,255,255,0.08);
  }

  /* HEX Input */
  .hex-input-row { margin-bottom: 0.5rem; }
  .current-color-display {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .hex-label {
    font-size: 0.72rem;
    color: var(--gray);
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
  .hex-swatch {
    width: 24px; height: 24px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.15);
    flex-shrink: 0;
  }
  .hex-input {
    width: 100px;
    height: 30px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,169,110,0.2);
    border-radius: 4px;
    color: var(--white);
    font-family: monospace;
    font-size: 0.82rem;
    padding: 0 0.5rem;
    letter-spacing: 0.04em;
  }
  .hex-input:focus {
    border-color: var(--gold);
    outline: none;
  }

  /* Right column */
  .optional-hint {
    font-size: 0.72rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
    opacity: 0.8;
  }

  .sub-section { margin-bottom: 1.25rem; }
  .sub-section-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.6rem;
  }

  /* Accent swatches */
  .accent-swatches-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
  }
  .a-swatch {
    width: 28px; height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  }
  .a-swatch:hover { transform: scale(1.18); }
  .a-swatch.selected {
    border-color: var(--white);
    box-shadow: 0 0 0 2px var(--gold), inset 0 0 0 1px rgba(255,255,255,0.08);
  }
  .accent-none {
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .accent-none svg { opacity: 0.5; }

  /* Pattern Grid — updated */
  .pattern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
  }
  .pattern-card {
    border: 1px solid rgba(200,169,110,0.15);
    padding: 0.5rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s;
    font-size: 0.62rem;
    color: var(--gray);
    font-family: var(--font-display);
    letter-spacing: 0.06em;
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
    position: relative;
  }
  .pattern-card:hover { border-color: rgba(200,169,110,0.4); }
  .pattern-card.selected {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200,169,110,0.08);
  }
  .pattern-card.selected::after {
    content: '✓';
    position: absolute;
    top: 3px;
    right: 5px;
    font-size: 0.55rem;
    color: var(--gold);
    font-weight: 700;
  }
  .pattern-card-preview {
    height: 30px;
    margin-bottom: 0.35rem;
    border-radius: 3px;
  }

  /* Effects checkboxes */
  .effects-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .effect-check {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-size: 0.72rem;
    color: var(--gray);
    font-family: var(--font-display);
    letter-spacing: 0.06em;
    user-select: none;
  }
  .effect-box {
    width: 16px; height: 16px;
    border: 1px solid rgba(200,169,110,0.3);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: transparent;
    transition: all 0.2s;
  }
  .effect-box.checked {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
  }
  .effect-preview-box {
    width: 18px; height: 18px;
    border-radius: 3px;
    flex-shrink: 0;
  }
  .effect-info {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.25);
    cursor: help;
  }




  /* Responsive: stack columns on small screens */
  @media (max-width: 900px) {
    .color-layout {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }
  /* UPLOAD — Step 3 redesigned */
  .step3-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
  }
  .step3-header-left { flex: 1; }
  .step3-header-left .panel-title { margin-bottom: 0.25rem; }
  .step3-header-left .panel-subtitle { margin-bottom: 0; }
  .step3-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    flex-shrink: 0;
  }
  .step3-progress-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--gray);
  }
  .step3-progress-bar {
    width: 120px;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
  }
  .step3-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #e8d4a8);
    border-radius: 2px;
    transition: width 0.4s;
  }

  /* Upload Layout: main zone left + specific cards right */
  .upload-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* Main Upload Zone */
  .upload-main { display: flex; flex-direction: column; }
  .upload-main-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    border: 2px dashed rgba(200,169,110,0.25);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255,255,255,0.015);
    text-align: center;
  }
  .upload-main-zone:hover {
    border-color: var(--gold);
    background: rgba(200,169,110,0.04);
  }
  .upload-main-icon {
    width: 44px; height: 44px;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 1rem;
  }
  .upload-main-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .upload-main-formats, .upload-main-dpi {
    font-size: 0.72rem;
    color: var(--gray);
    line-height: 1.6;
  }
  .upload-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.55rem 1.5rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,169,110,0.25);
    border-radius: 6px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.2s;
  }
  .upload-main-btn:hover {
    background: rgba(200,169,110,0.1);
    border-color: var(--gold);
  }
  .upload-main-limit {
    margin-top: 0.75rem;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
  }
  .limit-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px; height: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 0.55rem;
    cursor: help;
    margin-left: 2px;
  }

  /* Right: Specific Upload Cards */
  .upload-specific { display: flex; flex-direction: column; gap: 0.75rem; }
  .upload-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(200,169,110,0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255,255,255,0.015);
  }
  .upload-card:hover {
    border-color: rgba(200,169,110,0.4);
    background: rgba(200,169,110,0.04);
  }
  .upload-card-icon {
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(200,169,110,0.6);
    flex-shrink: 0;
  }
  .upload-card-icon svg { width: 30px; height: 30px; }
  .sponsor-icon svg { width: 36px; height: 36px; }
  .upload-card-content { flex: 1; min-width: 0; }
  .upload-card-title {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 0.25rem;
  }
  .upload-card-desc {
    font-size: 0.68rem;
    color: var(--gray);
    line-height: 1.5;
  }
  .optional-tag {
    font-size: 0.62rem;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 0;
    text-transform: none;
    margin-left: 0.3rem;
  }

  /* Upload form row */
  .upload-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* Uploaded preview (shared) */
  .uploaded-preview {
    display: none;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(200,169,110,0.07);
    border: 1px solid rgba(200,169,110,0.25);
    border-radius: 6px;
  }
  .uploaded-preview img {
    width: 48px; height: 48px;
    object-fit: contain;
    background: white;
    padding: 3px;
    border-radius: 3px;
  }
  .uploaded-preview .file-info { flex: 1; }
  .uploaded-preview .file-name { font-size: 0.8rem; color: var(--white); margin-bottom: 0.15rem; }
  .uploaded-preview .file-size { font-size: 0.68rem; color: var(--gray); }
  .remove-file {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s;
    padding: 0.25rem;
  }
  .remove-file:hover { color: var(--red-accent); }

  /* Responsive */
  @media (max-width: 768px) {
    .upload-layout { grid-template-columns: 1fr; }
    .upload-form-row { grid-template-columns: 1fr; }
    .step3-header { flex-direction: column; gap: 1rem; }
  }

  /* QUANTITY */
  .qty-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .form-group { margin-bottom: 1.25rem; }

  .form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.5rem;
  }

  .form-input, .form-select {
    width: 100%;
    max-width: 100%;
    background: #0d1a30 !important;
    border: 1px solid rgba(200,169,110,0.35);
    color: var(--white);
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
  }

  .form-input:focus, .form-select:focus { border-color: var(--gold); }
  .form-input::placeholder, .form-select::placeholder { color: rgba(255,255,255,0.4); }
  .form-select option { background: #0d1a30; color: var(--white); }

  .size-table {
    width: 100%;
    margin: 0 0 1.5rem 2.5rem;
    border-collapse: collapse;
    border: 1px solid rgba(255,255,255,0.2);
  }

  .size-table th {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    padding: 0.4rem 0.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    text-align: center;
  }
  .size-table th:first-child { padding-left: 0.6rem; text-align: center; }
  .size-table th:last-child { padding-right: 0.6rem; text-align: center; }

  .size-table td {
    padding: 0.4rem 0.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-size: 0.82rem;
    color: var(--white);
    text-align: center;
  }
  .size-table td:first-child { padding-left: 0.6rem; }
  .size-table td:last-child { padding-right: 0.6rem; text-align: center; }

  .size-table input {
    width: 56px;
    background: #0d1a30 !important;
    border: 1px solid rgba(200,169,110,0.35);
    color: var(--white);
    padding: 0.35rem 0.5rem;
    text-align: center;
    outline: none;
    font-size: 0.85rem;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: textfield;
  }

  .size-table input:focus { border-color: var(--gold); }

  .price-breakdown {
    background: rgba(200,169,110,0.06);
    border: 1px solid rgba(200,169,110,0.2);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--gray);
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .price-row:last-child {
    border-bottom: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
  }

  .price-row:last-child .price-val { color: var(--gold); font-size: 1.3rem; font-family: var(--font-cn-serif); }

  /* Step nav buttons */
  .step-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(200,169,110,0.15);
  }

  .btn-next {
    flex: 1;
    padding: 0.9rem;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
  }

  .btn-next:hover { background: var(--gold-light); }

  .btn-prev {
    padding: 0.9rem 1.5rem;
    background: transparent;
    color: var(--gray);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all 0.3s;
  }

  .btn-prev:hover { border-color: var(--gray); color: var(--white); }

  .btn-submit {
    flex: 1;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
  }

  .btn-submit:hover { opacity: 0.9; transform: translateY(-1px); }

  /* SUCCESS OVERLAY */
  .success-screen {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10,22,40,0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
  }
  .success-screen.show {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    animation: fadeIn 0.4s ease;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  .success-screen h2 {
    font-family: var(--font-cn-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
  }
  .success-screen h2 em {
    color: var(--gold);
    font-style: normal;
  }
  .success-screen p {
    font-size: 0.9rem;
    color: var(--gray);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  .order-id {
    font-size: 0.85rem;
    color: var(--gold);
    font-family: var(--font-display);
    letter-spacing: 0.12em;
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(200,169,110,0.3);
    border-radius: 4px;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.5rem;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
  }
  .btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

  /* RIGHT PREVIEW PANEL */

  @media (max-width: 768px) {
    .product-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .product-card:first-child { grid-row: auto; }
    .product-card:nth-child(4) { grid-column: auto; }
    .product-card-photo { min-height: 240px; }
    .product-card-name { font-size: 1.2rem; }
    .why-section { grid-template-columns: 1fr; min-height: auto; }
    .why-photo-col { min-height: 280px; }
    .products-section { padding: 3rem 1.2rem; }
  }

/* ==================== CUSTOM PROCESS MODULE (v6 - expanding panels) ==================== */
.proc-module {
  position: relative;
  padding: 64px clamp(20px,5vw,64px) 72px;
  background:
    radial-gradient(1200px 520px at 12% -10%, rgba(200,169,110,.08), transparent 60%),
    radial-gradient(900px 500px at 100% 110%, rgba(200,169,110,.05), transparent 55%);
  overflow: hidden;
}
.proc-module::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.02) 0 1px, transparent 1px 26px);
  pointer-events: none;
}
.proc-module .proc-inner { max-width: 1360px; margin: 0 auto; position: relative; z-index: 1; }

/* ── heading ── */
.proc-module .proc-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 56px;
}
.proc-module .proc-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.16em;
  color: var(--gold); font-weight: 600; margin: 0 0 18px;
}
.proc-module .proc-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--gold); }
.proc-module .proc-title-group h2 {
  font-family: var(--font-cn-serif); font-size: clamp(2rem, 3.6vw, 2.6rem);
  font-weight: 800; line-height: 1.3; margin: 0; color: var(--white);
  letter-spacing: .01em;
}
.proc-module .proc-title-group h2 em {
  font-style: normal; color: var(--gold-light); position: relative;
}
.proc-module .proc-title-group h2 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 9px;
  background: linear-gradient(90deg, rgba(200,169,110,.22), transparent); z-index: -1;
}

/* ── tag badge ── */
.proc-module .proc-tag {
  flex-shrink: 0; padding: 14px 24px 16px 20px;
  border: 1px solid rgba(200,169,110,.22); border-left: 3px solid var(--gold);
  background: linear-gradient(180deg, rgba(200,169,110,.09), transparent); text-align: right;
}
.proc-module .proc-tag .cnum {
  display: block; font-family: var(--font-cn-serif); font-size: 1.5rem;
  font-weight: 700; color: var(--gold-light);
}
.proc-module .proc-tag .clabel {
  display: block; margin-top: 4px; font-family: var(--font-display);
  font-size: 0.68rem; color: var(--gray); letter-spacing: .08em;
}

/* ── ruler track ── */
.proc-module .proc-ruler { position: relative; margin: 0 6px 0; }
.proc-module .proc-track {
  position: relative; height: 2px; background: rgba(255,255,255,.07); border-radius: 2px;
}
.proc-module .proc-track-fill {
  position: absolute; left: 0; top: 0; height: 100%; width: 0%;
  background: linear-gradient(90deg, rgba(200,169,110,.15), var(--gold-light));
  transition: width .5s cubic-bezier(.4,0,.2,1); border-radius: 2px;
}
.proc-module .proc-ticks { position: relative; height: 14px; margin-bottom: 44px; }
.proc-module .proc-tick {
  position: absolute; top: 0; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.proc-module .proc-tick .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--navy-mid);
  border: 1.5px solid var(--gray); margin-top: -4px;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.proc-module .proc-tick.active .dot {
  background: var(--gold-light); border-color: var(--gold-light);
  box-shadow: 0 0 0 5px rgba(200,169,110,.22), 0 0 16px rgba(232,212,168,.45);
}
.proc-module .proc-tick .val {
  font-family: var(--font-cn-serif); font-size: 0.65rem; color: var(--gray);
  transition: color .4s; white-space: nowrap;
}
.proc-module .proc-tick.active .val { color: var(--gold-light); }

/* ── panels ── */
.proc-module .proc-panels { display: flex; gap: 12px; align-items: flex-start; height: 340px; }
.proc-module .proc-panel {
  position: relative; flex: 0 0 15.5%;
  height: 340px; overflow: hidden;
  background: var(--navy-mid); border: 1px solid rgba(255,255,255,.07);
  border-radius: 2px; padding: 24px 20px; cursor: pointer;
  opacity: .62;
  transition: flex-basis .5s cubic-bezier(.4,0,.2,1), background .4s, border-color .4s, box-shadow .4s, opacity .4s;
}
.proc-module .proc-panel::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); opacity: 0; transition: opacity .4s;
}
.proc-module .proc-panel.active {
  flex-basis: 36%;
  background: var(--navy-light);
  border-color: rgba(200,169,110,.22); opacity: 1;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(200,169,110,.06) inset;
}
.proc-module .proc-panel.active::before { opacity: 1; }

.proc-module .p-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.proc-module .p-num {
  font-family: var(--font-cn-serif); width: 30px; height: 30px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray); color: var(--gray); font-size: 0.78rem; font-weight: 500;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 20% 100%, 0 50%);
  padding-left: 4px; transition: all .4s;
}
.proc-module .proc-panel.active .p-num {
  border-color: var(--gold-light); color: var(--gold-light);
  background: rgba(200,169,110,.08);
}
.proc-module .p-icon { color: var(--gray); flex-shrink: 0; transition: color .4s; }
.proc-module .proc-panel.active .p-icon { color: var(--gold-light); }
.proc-module .p-name {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white);
  margin: 0 0 3px; white-space: nowrap; transition: color .4s;
}
.proc-module .p-metric {
  font-family: var(--font-cn-serif); font-size: 0.65rem; color: var(--gray); letter-spacing: .05em;
}
.proc-module .p-detail {
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.proc-module .proc-panel.active .p-detail { opacity: 1; visibility: visible; }
.proc-module .p-desc {
  font-size: 0.85rem; line-height: 1.7; color: var(--gray);
  margin: 16px 0 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.07);
}
.proc-module .p-chips { display: flex; flex-direction: column; gap: 7px; }
.proc-module .p-chip {
  display: flex; align-items: center; gap: 9px; font-size: 0.76rem; color: var(--white);
  white-space: nowrap;
}
.proc-module .p-chip::before {
  content: ""; width: 5px; height: 5px; background: var(--gold-light);
  flex-shrink: 0; transform: rotate(45deg);
}

@media (max-width: 900px) {
  .proc-module { padding: 48px 22px 56px; }
  .proc-module .proc-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .proc-module .proc-title-group h2 { font-size: 1.8rem; }
  .proc-module .proc-ruler { display: none; }
  .proc-module .proc-panels { flex-direction: column; gap: 8px; }
  .proc-module .proc-panel { flex-basis: auto !important; }
  .proc-module .p-name { white-space: normal; }
}
/* ── 定制流程:5 张翻转卡(替代尺子组件) ── */
.proc-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.flip-card { perspective: 1200px; min-height: 260px; cursor: pointer; outline: none; }
.flip-inner {
  position: relative; width: 100%; height: 100%; min-height: 260px;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.flip-card:hover .flip-inner,
.flip-card:focus .flip-inner,
.flip-card.flipped .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
  position: absolute; inset: 0;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: 10px;
  display: flex; flex-direction: column;
  padding: 22px 18px;
}
/* 正面:主色深蓝 + 金序号 */
.flip-front {
  background: var(--navy-deep, #080C16);
  border: 1px solid rgba(200,169,110,0.22);
  align-items: flex-start; justify-content: space-between;
}
.fc-num {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 800; line-height: 1;
  color: var(--gold, #A88E6A); letter-spacing: 0.02em;
}
.fc-name {
  font-family: var(--font-cn-serif);
  font-size: 1.15rem; color: var(--white);
  margin-top: auto; margin-bottom: 10px; line-height: 1.4;
}
.fc-hint {
  font-size: 0.68rem; letter-spacing: 0.18em;
  color: rgba(248,246,242,0.35);
}
/* 背面:稍亮一档的藏蓝,金标题,底部时间徽章 */
.flip-back {
  background: var(--navy-mid, #15244a);
  border: 1px solid rgba(200,169,110,0.45);
  transform: rotateY(180deg);
}
.fc-num-sm {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--gold, #A88E6A); margin-bottom: 8px;
}
.fc-desc {
  font-size: 0.78rem; line-height: 1.75;
  color: rgba(248,246,242,0.82); margin: 0 0 10px;
}
.fc-chips { list-style: none; margin: 0 0 12px; padding: 0; }
.fc-chips li {
  font-size: 0.72rem; color: rgba(248,246,242,0.65);
  padding-left: 14px; position: relative; line-height: 1.9;
}
.fc-chips li::before {
  content: ''; position: absolute; left: 0; top: 0.75em;
  width: 5px; height: 5px; background: var(--gold, #A88E6A);
  transform: rotate(45deg);
}
.fc-time {
  margin-top: auto; align-self: flex-start;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--navy-deep, #080C16);
  background: var(--gold, #A88E6A);
  padding: 4px 10px; border-radius: 4px;
}
@media (max-width: 1100px) {
  .proc-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .proc-cards { grid-template-columns: 1fr; }
  .flip-card, .flip-inner { min-height: 220px; }
}


/* ═══ 流程区·白底高级版(覆盖前面深底版) ═══ */
.proc-module {
  background: var(--ivory, #F5F3EE);
}
.proc-module::before { display: none; }
.proc-module .proc-title-group h2 { color: var(--navy); }
.proc-module .proc-tag {
  background: #fff;
  border-color: #E6E2D8; border-left: 3px solid var(--gold);
}
.proc-module .proc-tag .cnum { color: var(--navy); }

/* 卡片排:浮标线贯穿(赛艇航道浮标绳) */
.proc-cards { position: relative; gap: 20px; }
.proc-cards::before {
  content: ''; position: absolute; left: 0; right: 0; top: 74px;
  border-top: 1px dashed rgba(168,142,106,0.45);
  pointer-events: none;
}

.flip-card, .flip-inner { min-height: 250px; }
.flip-front, .flip-back { border-radius: 6px; }

/* 正面:白卡 + 幽灵序号 + 浮标 */
.flip-front {
  background: #fff;
  border: 1px solid #E6E2D8;
  box-shadow: 0 1px 3px rgba(14,30,58,0.04);
  transition: box-shadow 0.4s ease;
  padding: 20px 20px 18px;
}
.flip-card:hover .flip-front { box-shadow: 0 8px 24px rgba(14,30,58,0.08); }
/* 浮标(卡片左缘金点,卡在浮标线上) */
.flip-front::before {
  content: ''; position: absolute; left: -5px; top: 68px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(168,142,106,0.2);
}
.fc-num {
  font-size: 3rem; font-weight: 800;
  color: rgba(168,142,106,0.3);
  letter-spacing: 0;
}
.fc-name {
  color: var(--navy);
  font-size: 1.08rem; font-weight: 600;
}
.fc-name::before {
  content: ''; display: block; width: 22px; height: 2px;
  background: var(--gold); margin-bottom: 12px;
}
.fc-hint { color: rgba(14,30,58,0.35); }

/* 背面:品牌藏蓝(白底上的对比时刻) */
.flip-back {
  background: var(--navy);
  border: 1px solid var(--navy);
}
.fc-desc { color: rgba(248,246,242,0.85); }
.fc-chips li { color: rgba(248,246,242,0.68); }
.fc-time {
  background: transparent;
  color: var(--gold-light, #D6C7B7);
  border: 1px solid rgba(214,199,183,0.5);
  padding: 4px 10px;
}

@media (max-width: 900px) {
  .proc-cards::before { display: none; }
  .flip-front::before { display: none; }
}


/* ═══ 流程卡微调:放大字级/去圆角 ═══ */
.flip-front, .flip-back { border-radius: 0; }
.fc-num { font-size: 4.2rem; }
.fc-name { font-size: 1.3rem; }
.fc-num-sm { font-size: 0.92rem; }
.fc-desc { font-size: 0.9rem; line-height: 1.8; }
.fc-chips li { font-size: 0.82rem; }
.fc-time { font-size: 0.8rem; }

/* 卡片加高,背面大字版更从容 */
.flip-card, .flip-inner { min-height: 290px; }
@media (max-width: 700px) { .flip-card, .flip-inner { min-height: 240px; } }


/* ═══ 为什么选择我们·合并区(暖墨底,无蓝) ═══ */
.why-merge {
  background: #161210;
  padding: 88px clamp(20px, 5vw, 64px) 96px;
  color: #F5F3EE;
}
.wm-head { max-width: 1200px; margin: 0 auto 48px; }
.wm-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-size: 0.78rem;
  letter-spacing: 0.2em; color: var(--gold); font-weight: 600;
  margin-bottom: 20px;
}
/* 缝线(签名元素):双虚线,像衣服绷缝线 */
.wm-stitch {
  flex: 0 0 120px; height: 6px;
  background:
    repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 14px),
    repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 14px);
  background-size: 100% 1px, 100% 1px;
  background-position: 0 1px, 0 5px;
  background-repeat: no-repeat;
  opacity: 0.7;
}
.wm-title {
  font-family: var(--font-cn-serif);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700; line-height: 1.3; margin: 0;
  color: #F5F3EE;
}
.wm-title em { font-style: normal; color: var(--gold-light, #D6C7B7); }

.wm-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 5fr 6fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.wm-photo { position: relative; margin: 0; overflow: hidden; }
.wm-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.92) contrast(1.02);
}
.wm-photo figcaption {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 28px 18px 12px;
  font-size: 0.72rem; letter-spacing: 0.22em;
  color: rgba(245,243,238,0.85);
  background: linear-gradient(transparent, rgba(22,18,16,0.75));
}
.wm-body { display: flex; flex-direction: column; justify-content: center; }
.wm-lede {
  font-size: 1.02rem; line-height: 2;
  color: rgba(245,243,238,0.78);
  margin: 0 0 36px;
}
.wm-feats { display: flex; flex-direction: column; }
.wm-feat {
  padding: 22px 0 22px 26px;
  border-top: 1px solid rgba(200,169,110,0.18);
  position: relative;
}
.wm-feat:last-child { border-bottom: 1px solid rgba(200,169,110,0.18); }
.wm-feat::before {
  content: ''; position: absolute; left: 0; top: 30px;
  width: 7px; height: 7px; background: var(--gold);
  transform: rotate(45deg);
}
.wm-feat h4 {
  font-family: var(--font-cn-serif);
  font-size: 1.08rem; font-weight: 600;
  color: var(--gold-light, #D6C7B7); margin: 0 0 6px;
}
.wm-feat p { font-size: 0.88rem; line-height: 1.8; color: rgba(245,243,238,0.62); margin: 0; }

/* 产品胶片条 */
.wm-strip-head {
  max-width: 1200px; margin: 64px auto 20px;
  display: flex; align-items: baseline; gap: 16px;
  border-top: 1px solid rgba(200,169,110,0.18);
  padding-top: 28px;
}
.wm-strip-label {
  font-family: var(--font-display); font-size: 0.78rem;
  letter-spacing: 0.2em; color: var(--gold); font-weight: 600;
}
.wm-strip-sub { font-size: 0.82rem; color: rgba(245,243,238,0.45); }
.wm-strip {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.wm-item {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  background: #1F1A15;
  border: 1px solid rgba(200,169,110,0.14);
  transition: border-color 0.35s ease;
}
.wm-item:hover { border-color: rgba(200,169,110,0.5); }
.wm-item-photo {
  display: block; height: 200px;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.wm-item:hover .wm-item-photo { transform: scale(1.04); }
.wm-item { overflow: hidden; }
.wm-item-info { display: flex; flex-direction: column; padding: 16px 16px 18px; }
.wm-item-tag {
  font-size: 0.68rem; letter-spacing: 0.18em;
  color: var(--gold); font-weight: 600; margin-bottom: 6px;
}
.wm-item-name {
  font-family: var(--font-cn-serif); font-size: 1.05rem;
  color: #F5F3EE; margin-bottom: 6px;
}
.wm-item-desc { font-size: 0.78rem; line-height: 1.7; color: rgba(245,243,238,0.55); }

@media (max-width: 1000px) {
  .wm-grid { grid-template-columns: 1fr; }
  .wm-photo { max-height: 420px; }
  .wm-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .wm-strip { grid-template-columns: 1fr; }
  .why-merge { padding: 64px 20px 72px; }
}


/* ═══ 合并区 v2:回归主色 navy-deep + 去盒化 ═══ */
.why-merge { background: var(--navy-deep, #080C16); }
.wm-title { font-size: clamp(2.2rem, 4vw, 3rem); }
.wm-item {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(200,169,110,0.22);
  padding-top: 14px;
}
.wm-item:hover { border-top-color: var(--gold); }
.wm-item-photo { height: 240px; }
.wm-item-info { padding: 14px 2px 0; }


/* ═══ v3:眉标破折线/产品区去线/CTA 重设计 ═══ */
.wm-eyebrow { gap: 12px; }
.wm-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.wm-stitch { display: none; }
.wm-strip-head { border-top: none; padding-top: 48px; }
.wm-item { border-top: none; padding-top: 0; }

/* CTA:品牌实拍 + 左对齐编辑式 */
.cta-section { min-height: 520px; justify-content: flex-start; text-align: left; }
.cta-bg-photo {
  background-image: url('/wp-content/uploads/ronvue/pages/rowcraft/custom-hero-dock-gold.jpg');
  filter: none;
}
.cta-section::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(8,12,22,0.88) 0%, rgba(8,12,22,0.55) 45%, rgba(8,12,22,0.1) 100%);
}
.cta-inner { padding: 5rem clamp(20px, 6vw, 6rem); max-width: 640px; }
.cta-section h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 600; line-height: 1.25;
  margin-bottom: 1rem;
}
.cta-section h2 em { font-style: normal; color: var(--gold); }
.cta-section p {
  margin: 0 0 2.5rem;
  font-size: 0.92rem; letter-spacing: 0.04em;
  color: rgba(248,246,242,0.7);
}
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 700px) {
  .cta-section::after { background: linear-gradient(180deg, rgba(8,12,22,0.85) 0%, rgba(8,12,22,0.6) 100%); }
}

.cta-section h2 { color: #F5F3EE; }


/* ═══ v4:标本卡 + 图标化卖点 ═══ */
.wm-lede { margin-bottom: 28px; font-size: 0.98rem; }
.wm-specimen {
  position: relative;
  background: #E9E4DA;
  padding: 18px 24px 34px;
  margin-bottom: 28px;
}
.wm-specimen img {
  display: block; width: 62%; max-width: 260px;
  margin: 0 auto;
  mix-blend-mode: multiply;
}
.wm-specimen-cap {
  position: absolute; left: 16px; bottom: 10px;
  font-size: 0.7rem; letter-spacing: 0.14em;
  color: rgba(14,30,58,0.55);
}
.wm-feats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wm-feat {
  border: none; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.wm-feat:last-child { border: none; }
.wm-feat::before { display: none; }
.wm-feat svg { color: var(--gold); }
.wm-feat h4 { font-size: 0.95rem; margin: 0; }
.wm-feat p { font-size: 0.8rem; line-height: 1.7; }
@media (max-width: 560px) {
  .wm-feats { grid-template-columns: 1fr; gap: 18px; }
  .wm-feat { display: grid; grid-template-columns: 28px 1fr; align-items: start; }
  .wm-feat svg { grid-row: span 2; }
}


/* ═══ v5:卖点卡片化(深色面板,替代标本卡版) ═══ */
.wm-feats { display: flex; flex-direction: column; gap: 14px; }
.wm-feat {
  background: #101a30;
  border: 1px solid rgba(200,169,110,0.16);
  padding: 20px 22px;
  display: grid; grid-template-columns: 30px 1fr; grid-template-rows: auto auto;
  column-gap: 14px; align-items: start;
  transition: border-color 0.3s ease;
}
.wm-feat:hover { border-color: rgba(200,169,110,0.5); }
.wm-feat svg { grid-row: span 2; margin-top: 2px; }
.wm-feat h4 { font-size: 1.02rem; }
.wm-feat p { font-size: 0.82rem; color: rgba(245,243,238,0.6); }


/* ═══ v6:卖点白卡 + CTA 纯色居中 ═══ */
.wm-feat {
  background: #fff;
  border: 1px solid #E6E2D8;
}
.wm-feat:hover { border-color: #E6E2D8; }
.wm-feat h4 { color: var(--navy); }
.wm-feat p { color: rgba(14,30,58,0.6); }

.cta-section { background: var(--navy-deep); min-height: 0; justify-content: center; text-align: center; }
.cta-bg-photo, .cta-section::after { display: none; }
.cta-inner { padding: 6rem 2rem; margin: 0 auto; max-width: 720px; }
.cta-section p { margin: 0 auto 2.5rem; }
.cta-buttons { justify-content: center; }


/* ═══ v7:流程区 ↔ 为什么选我们 背景互换 ═══ */
/* 流程区 → 深藏蓝 */
.proc-module { background: var(--navy-deep, #080C16); }
.proc-module .proc-title-group h2 { color: #F5F3EE; }
.proc-module .proc-tag { background: transparent; border-color: rgba(200,169,110,0.3); }
.proc-module .proc-tag .cnum { color: var(--gold-light, #D6C7B7); }
.proc-cards::before { border-top-color: rgba(200,169,110,0.35); }
/* 白卡正面不动,翻背面提亮一档与底色拉开 */
.flip-back { background: var(--navy-light, #1a2c4d); }

/* 为什么选我们 → 暖白 */
.why-merge { background: var(--ivory, #F5F3EE); color: var(--navy); }
.wm-title { color: var(--navy); }
.wm-title em { color: var(--gold); }
.wm-lede { color: rgba(14,30,58,0.7); }
.wm-feat h4 { color: var(--navy); }
.wm-strip-sub { color: rgba(14,30,58,0.45); }
.wm-item-name { color: var(--navy); }
.wm-item-desc { color: rgba(14,30,58,0.55); }


/* ═══ v8:翻转背面与正面一致(白卡) ═══ */
.flip-back { background: #fff; border: 1px solid #E6E2D8; }
.fc-desc { color: rgba(14,30,58,0.7); }
.fc-chips li { color: rgba(14,30,58,0.6); }
.fc-chips li::before { background: var(--gold); }
.fc-time { color: var(--gold); border-color: rgba(168,142,106,0.55); }

/* 背面正文改黑色 */
.fc-desc { color: #111; }
.fc-chips li { color: #333; }

/* 背面正文改碳色 */
.fc-desc { color: #3A3A3A; }
.fc-chips li { color: #4F4F4F; }
