*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0f1117;
    color: #e1e4e8;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #21262d;
    background: #0f1117;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: #58a6ff;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 0.75rem;
}

.nav-links a {
    color: #8b949e;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: all 0.15s;
}

.nav-links a:hover { color: #f0f6fc; }
.nav-links a.nav-active { color: #58a6ff; }

.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tier-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.25);
    border-radius: 20px;
    padding: 0.2rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #58a6ff;
}

.tier-credits {
    color: #8b949e;
    font-weight: 400;
}

.lang-toggle {
    display: flex;
    gap: 2px;
    background: #21262d;
    border-radius: 6px;
    padding: 2px;
    flex-shrink: 0;
}

.lang-btn {
    background: none;
    border: none;
    color: #8b949e;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.15s;
}

.lang-btn.active {
    background: #58a6ff;
    color: #0f1117;
}

.lang-btn:hover:not(.active) {
    color: #f0f6fc;
}

.trust-banner {
    background: rgba(35, 134, 54, 0.08);
    border-bottom: 1px solid rgba(35, 134, 54, 0.2);
    cursor: pointer;
    transition: background 0.15s;
    user-select: none;
}

.trust-banner:hover {
    background: rgba(35, 134, 54, 0.12);
}

.trust-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #3fb950;
}

.trust-banner-inner svg:first-child {
    flex-shrink: 0;
    color: #3fb950;
}

.trust-chevron {
    flex-shrink: 0;
    color: #3fb950;
    transition: transform 0.3s ease;
}

.trust-banner.open .trust-chevron {
    transform: rotate(180deg);
}

.trust-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    background: rgba(35, 134, 54, 0.04);
    border-bottom: 1px solid transparent;
}

.trust-panel.open {
    max-height: 300px;
    opacity: 1;
    border-bottom-color: rgba(35, 134, 54, 0.15);
}

.trust-panel-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.25rem 1rem;
    text-align: center;
}

.trust-steps {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.trust-step {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
}

.trust-step-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(88, 166, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-step-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.trust-step-text strong {
    font-size: 0.8rem;
    color: #f0f6fc;
}

.trust-step-text span {
    font-size: 0.7rem;
    color: #8b949e;
}

.trust-note {
    font-size: 0.7rem;
    color: #8b949e;
    margin-bottom: 0.5rem;
}

.trust-link {
    font-size: 0.75rem;
    color: #58a6ff;
    text-decoration: none;
}

.trust-link:hover { text-decoration: underline; }

.hero-section {
    text-align: center;
    padding: 2rem 1rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f0f6fc;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.hero-sub {
    font-size: 0.95rem;
    color: #8b949e;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.hero-benefits {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #c9d1d9;
}

.hero-trust-row {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: #3fb950;
}

.hero-cta {
    background: linear-gradient(135deg, #238636, #2ea043);
    color: #fff;
    border: none;
    padding: 0.75rem 2.5rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(35, 134, 54, 0.3);
}

.hero-cta:hover {
    background: linear-gradient(135deg, #2ea043, #3fb950);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(35, 134, 54, 0.4);
}

.hero-social-proof {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #484f58;
}

.pro-badge {
    display: inline-block;
    background: linear-gradient(135deg, #58a6ff, #388bfd);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    letter-spacing: 0.05em;
    vertical-align: middle;
    margin-left: 0.3rem;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 1.25rem;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: #161b22;
    border: 1px solid #21262d;
    opacity: 0.5;
    transition: all 0.2s;
}

.step.active {
    opacity: 1;
    border-color: #58a6ff;
    background: rgba(88, 166, 255, 0.08);
}

.step.done {
    opacity: 0.8;
    border-color: #238636;
    background: rgba(35, 134, 54, 0.08);
}

.step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #30363d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #8b949e;
}

.step.active .step-num { background: #58a6ff; color: #0f1117; }
.step.done .step-num { background: #238636; color: #fff; }

.step-label { font-size: 0.8rem; color: #8b949e; }
.step.active .step-label { color: #f0f6fc; }

.step-arrow { width: 20px; height: 2px; background: #30363d; }

.step-section { animation: fadeIn 0.3s ease; }

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

.selector-panel { margin-bottom: 1.5rem; }
.selector-panel h2 { font-size: 1rem; color: #f0f6fc; margin-bottom: 0.75rem; }

.card-grid { display: grid; gap: 0.75rem; }
.laser-grid { grid-template-columns: repeat(3, 1fr); }
.material-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

.selector-card {
    background: #161b22;
    border: 2px solid #21262d;
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
}

.selector-card:hover { border-color: #58a6ff; background: rgba(88, 166, 255, 0.05); }
.selector-card.selected { border-color: #58a6ff; background: rgba(88, 166, 255, 0.1); }
.selector-card .card-icon { font-size: 1.75rem; margin-bottom: 0.4rem; }
.selector-card .card-title { font-size: 0.85rem; font-weight: 600; color: #f0f6fc; }
.selector-card .card-subtitle { font-size: 0.75rem; color: #8b949e; margin-top: 0.15rem; }

.preset-info {
    background: #161b22;
    border: 1px solid #238636;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
}

.preset-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.preset-tag {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(88, 166, 255, 0.15);
    color: #58a6ff;
    margin-right: 0.4rem;
}

.preset-tag.small { padding: 0.2rem 0.6rem; font-size: 0.75rem; }
.preset-hint { color: #8b949e; font-size: 0.85rem; margin-bottom: 1rem; }

.step-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0.75rem;
    background: #161b22;
    border: 1px solid #21262d;
    border-radius: 8px;
}

.active-preset-tags { display: flex; gap: 0.4rem; }

.btn-back {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: 1px solid #30363d;
    color: #c9d1d9;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.15s;
    white-space: nowrap;
}

.btn-back:hover { background: #21262d; border-color: #58a6ff; color: #58a6ff; }
.btn-back svg { flex-shrink: 0; }

.btn-primary {
    background: #238636;
    color: #fff;
    border: none;
    padding: 0.55rem 1.25rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.15s;
}

.btn-primary:hover { background: #2ea043; }
.btn-large { padding: 0.7rem 2rem; font-size: 1rem; }

.btn-secondary {
    background: #21262d;
    color: #c9d1d9;
    border: 1px solid #30363d;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.15s;
}

.btn-secondary:hover { background: #30363d; }

.btn-lock {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #21262d;
    color: #c9d1d9;
    border: 1px solid #30363d;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.15s;
}

.btn-lock:hover { background: #30363d; }

.btn-lock.locked {
    background: rgba(88, 166, 255, 0.15);
    border-color: #58a6ff;
    color: #58a6ff;
}

.locked-banner {
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.3);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    color: #58a6ff;
    margin-bottom: 1rem;
    text-align: center;
}

.dropzone {
    border: 2px dashed #30363d;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.dropzone:hover, .dropzone.dragover {
    border-color: #58a6ff;
    background: rgba(88, 166, 255, 0.05);
}

.dropzone-content svg { color: #8b949e; margin-bottom: 0.75rem; }
.dropzone-content p { font-size: 1rem; margin-bottom: 0.4rem; }
.dropzone-content span { color: #8b949e; display: block; margin-bottom: 0.4rem; font-size: 0.85rem; }

#browse-btn {
    background: #21262d;
    color: #c9d1d9;
    border: 1px solid #30363d;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.15s;
}

#browse-btn:hover { background: #30363d; }

.upload-list { margin-top: 1rem; }

.upload-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.upload-list-header h3 { font-size: 0.9rem; color: #f0f6fc; }

.upload-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.upload-thumb {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #21262d;
    position: relative;
}

.upload-thumb img { width: 100%; height: 100%; object-fit: cover; }

.upload-thumb .remove-thumb {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: rgba(0,0,0,0.7);
    border: none;
    border-radius: 50%;
    color: #e1e4e8;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.settings-section {
    background: #161b22;
    border: 1px solid #21262d;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.settings-header h2 { font-size: 1rem; color: #f0f6fc; }
.settings-header-actions { display: flex; gap: 0.5rem; }

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.75rem;
}

.settings-grid.disabled { opacity: 0.5; pointer-events: none; }

.settings-group-label {
    grid-column: 1 / -1;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #58a6ff;
    border-bottom: 1px solid #21262d;
    padding-bottom: 0.3rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.settings-group-label:first-child { margin-top: 0; }

.setting-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.setting-group label {
    font-size: 0.8rem;
    color: #8b949e;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.setting-group input[type="range"] { width: 100%; accent-color: #58a6ff; }

.setting-group input[type="color"] {
    width: 100%;
    height: 32px;
    border: 1px solid #30363d;
    border-radius: 6px;
    background: #0d1117;
    cursor: pointer;
    padding: 2px;
}

.setting-group select {
    background: #0d1117;
    color: #c9d1d9;
    border: 1px solid #30363d;
    border-radius: 6px;
    padding: 0.35rem 0.5rem;
    font-size: 0.85rem;
}

.size-hint {
    grid-column: 1 / -1;
}

.size-hint small {
    color: #8b949e;
    font-size: 0.75rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: #c9d1d9;
    height: 100%;
}

.checkbox-group input[type="checkbox"] {
    accent-color: #58a6ff;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.info-btn {
    background: none;
    border: none;
    color: #484f58;
    width: 14px;
    height: 14px;
    font-size: 12px;
    cursor: help;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    padding: 0;
    margin-left: 2px;
    position: relative;
}

.info-btn:hover {
    color: #58a6ff;
}

.info-btn .tip-bubble {
    display: none;
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #1c2129;
    border: 1px solid #30363d;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 400;
    color: #c9d1d9;
    white-space: normal;
    width: max-content;
    max-width: 240px;
    line-height: 1.4;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.info-btn .tip-bubble::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #30363d;
}

.info-btn:hover .tip-bubble,
.info-btn:focus .tip-bubble,
.info-btn.active .tip-bubble {
    display: block;
}

.preview-section { margin-bottom: 2rem; }

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.preview-header h2 { font-size: 1rem; color: #f0f6fc; }

.download-btn {
    background: #1f6feb;
    color: #fff;
    border: none;
    padding: 0.55rem 1.25rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.15s;
}

.download-btn:hover { background: #388bfd; }

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 1rem;
}

.preview-card {
    background: #161b22;
    border: 1px solid #21262d;
    border-radius: 10px;
    overflow: hidden;
}

.preview-card-header {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #21262d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.preview-card-name {
    font-size: 0.8rem;
    color: #8b949e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.preview-card-actions {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.pca-btn {
    background: #21262d;
    border: 1px solid #30363d;
    color: #c9d1d9;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    padding: 0;
}

.pca-btn:hover { background: #30363d; border-color: #58a6ff; color: #58a6ff; }
.pca-delete:hover { border-color: #f85149; color: #f85149; }

.preview-card-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #21262d;
}

.preview-col {
    background: #0d1117;
    display: flex;
    flex-direction: column;
}

.preview-col-processed {
    position: relative;
}

.preview-col-processed img {
    mix-blend-mode: multiply;
}

.preview-col-label {
    text-align: center;
    font-size: 0.7rem;
    color: #8b949e;
    padding: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #21262d;
}

.preview-col img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: pixelated;
}

.upgrade-prompt {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.upgrade-prompt-inner {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    max-width: 360px;
    width: 90%;
    position: relative;
}

.upgrade-prompt-inner svg {
    margin-bottom: 0.75rem;
}

.upgrade-prompt-inner h3 {
    font-size: 1.1rem;
    color: #f0f6fc;
    margin-bottom: 0.5rem;
}

.upgrade-prompt-inner p {
    font-size: 0.85rem;
    color: #8b949e;
    margin-bottom: 1rem;
}

.upgrade-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: #8b949e;
    font-size: 1.2rem;
    cursor: pointer;
}

.upgrade-close:hover { color: #f0f6fc; }

.upgrade-btn {
    display: inline-block;
    background: linear-gradient(135deg, #58a6ff, #388bfd);
    color: #fff;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.15s;
}

.upgrade-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(88, 166, 255, 0.3);
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    gap: 1rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #30363d;
    border-top-color: #58a6ff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-overlay p { color: #c9d1d9; font-size: 0.9rem; }

.page-footer {
    text-align: center;
    padding: 1.5rem 1rem;
    border-top: 1px solid #21262d;
    margin-top: 2rem;
}

.page-footer p {
    font-size: 0.75rem;
    color: #484f58;
}

.privacy-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.privacy-hero {
    text-align: center;
    padding: 2rem 0;
}

.privacy-shield {
    margin-bottom: 0.75rem;
}

.privacy-hero h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f0f6fc;
    margin-bottom: 0.5rem;
}

.privacy-hero-sub {
    color: #8b949e;
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
}

.privacy-sections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.privacy-card {
    background: #161b22;
    border: 1px solid #21262d;
    border-radius: 10px;
    padding: 1.25rem;
}

.privacy-card-icon {
    margin-bottom: 0.75rem;
}

.privacy-card h2 {
    font-size: 0.95rem;
    color: #f0f6fc;
    margin-bottom: 0.5rem;
}

.privacy-card p {
    font-size: 0.8rem;
    color: #8b949e;
    line-height: 1.5;
}

.privacy-summary {
    background: #161b22;
    border: 1px solid #238636;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.privacy-summary h2 {
    font-size: 1.1rem;
    color: #f0f6fc;
    margin-bottom: 1rem;
}

.privacy-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.privacy-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #c9d1d9;
}

.check-icon {
    color: #3fb950;
    font-weight: 700;
}

.pricing-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.pricing-hero {
    text-align: center;
    padding: 2rem 0 1.5rem;
}

.pricing-hero h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f0f6fc;
    margin-bottom: 0.5rem;
}

.pricing-hero-sub {
    color: #8b949e;
    font-size: 0.95rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: #161b22;
    border: 1px solid #21262d;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card-popular {
    border-color: #58a6ff;
    box-shadow: 0 0 20px rgba(88, 166, 255, 0.15);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #58a6ff, #388bfd);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #21262d;
}

.pricing-card-header h3 {
    font-size: 1rem;
    color: #f0f6fc;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 800;
    color: #f0f6fc;
}

.price-mo {
    font-size: 0.9rem;
    font-weight: 400;
    color: #8b949e;
}

.pricing-period {
    font-size: 0.75rem;
    color: #8b949e;
    margin-top: 0.25rem;
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    padding: 0.3rem 0;
}

.feat-yes { color: #c9d1d9; }
.feat-yes span:first-child { color: #3fb950; }
.feat-no { color: #484f58; }
.feat-no span:first-child { color: #484f58; }

.pricing-cta {
    display: block;
    text-align: center;
    padding: 0.65rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.15s;
    text-decoration: none;
    width: 100%;
}

.pricing-cta-secondary {
    background: #21262d;
    color: #c9d1d9;
    border: 1px solid #30363d;
}

.pricing-cta-secondary:hover { background: #30363d; }

.pricing-cta-primary {
    background: #238636;
    color: #fff;
}

.pricing-cta-primary:hover { background: #2ea043; }

.pricing-cta-popular {
    background: linear-gradient(135deg, #58a6ff, #388bfd);
    color: #fff;
}

.pricing-cta-popular:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(88, 166, 255, 0.3);
}

.pricing-cta-disabled {
    background: #21262d;
    color: #8b949e;
    border: 1px solid #30363d;
    cursor: not-allowed;
    opacity: 0.7;
}

.pricing-cta-disabled:hover {
    transform: none;
    box-shadow: none;
}

.pricing-faq {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 1.2rem;
    color: #f0f6fc;
    margin-bottom: 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.faq-item {
    background: #161b22;
    border: 1px solid #21262d;
    border-radius: 10px;
    padding: 1rem;
}

.faq-item h3 {
    font-size: 0.85rem;
    color: #f0f6fc;
    margin-bottom: 0.4rem;
}

.faq-item p {
    font-size: 0.8rem;
    color: #8b949e;
    line-height: 1.5;
}

.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #8b949e;
}

.rating-section {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
}

.rating-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f0f6fc;
}

.rating-avg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.rating-avg-stars {
    font-size: 1.6rem;
    color: #f0c040;
    letter-spacing: 2px;
}

.rating-avg-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f0f6fc;
}

.rating-avg-count {
    color: #8b949e;
    font-size: 0.9rem;
}

.rating-form {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.rating-form-label {
    color: #c9d1d9;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.rating-stars-input {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.star-input {
    font-size: 2.2rem;
    color: #30363d;
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
}

.star-input.star-hover,
.star-input.star-active {
    color: #f0c040;
}

.star-input:hover {
    transform: scale(1.15);
}

.rating-form textarea {
    width: 100%;
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 6px;
    color: #c9d1d9;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 0.75rem;
}

.rating-form textarea:focus {
    outline: none;
    border-color: #58a6ff;
}

.rating-submit {
    background: linear-gradient(135deg, #58a6ff, #388bfd);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}

.rating-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(88, 166, 255, 0.3);
}

.rating-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.rating-submit.shake {
    animation: shake 0.3s ease;
}

.rating-thanks {
    background: #161b22;
    border: 1px solid #3fb950;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.rating-thanks p {
    color: #3fb950;
    font-size: 1.1rem;
    font-weight: 600;
}

.rating-reviews {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.no-reviews {
    color: #8b949e;
    font-size: 0.9rem;
}

.review-card {
    background: #161b22;
    border: 1px solid #21262d;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    text-align: left;
}

.review-stars {
    color: #f0c040;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.review-comment {
    color: #c9d1d9;
    font-size: 0.9rem;
    margin: 0.3rem 0;
    line-height: 1.4;
}

.review-time {
    color: #484f58;
    font-size: 0.75rem;
}

@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
    .laser-grid { grid-template-columns: 1fr; }
    .preview-grid { grid-template-columns: 1fr; }
    .settings-grid { grid-template-columns: 1fr; }
    .workflow-steps { flex-wrap: wrap; }
    .header-top { flex-wrap: wrap; gap: 0.5rem; }
    .header-nav { gap: 0.75rem; }
    .nav-links { gap: 0.4rem; }
    .preview-card-actions { gap: 2px; }
    .pca-btn { width: 24px; height: 24px; }
    .hero-title { font-size: 1.3rem; }
    .hero-benefits { flex-direction: column; gap: 0.5rem; align-items: center; }
    .hero-trust-row { flex-direction: column; gap: 0.4rem; align-items: center; }
    .trust-steps { flex-direction: column; gap: 0.75rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .privacy-sections { grid-template-columns: 1fr; }
}
