/* StitcherNX Logo Builder Landing - Dark Glassmorphic Theme */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a2e;
    --bg-input: #2d2d3a;
    --accent: #00bcd4;
    --accent-secondary: #ffc107;
    --text: #ffffff;
    --text-muted: #a0a0b0;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg-primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.nav-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: white !important;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 188, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 188, 212, 0.15);
    border: 1px solid rgba(0, 188, 212, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.hero-price .currency {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
    vertical-align: super;
}

.hero-price .amount {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(0, 188, 212, 0.1);
}

/* Sample Logos Grid */
.sample-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 760px;
    margin: 0 auto;
}

.sample-logo {
    aspect-ratio: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sample-logo:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sample-logo img,
.sample-logo svg {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

/* How It Works */
.how-it-works {
    padding: 6rem 2rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 280px;
    margin: 0 auto;
}

/* Connector lines between steps */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -1rem;
    width: calc(100% - 60px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    opacity: 0.3;
    transform: translateX(50%);
}

/* What You Get */
.what-you-get {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.deliverable-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.deliverable-item:hover {
    border-color: var(--accent);
}

.deliverable-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.deliverable-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.deliverable-text p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Order Form */
.order-section {
    padding: 6rem 2rem;
}

.order-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.order-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
}

.order-card h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.order-card .price-tag {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.order-card .price-tag span {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0a0b0' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--bg-input);
    color: var(--text);
}

.form-error {
    color: var(--accent-secondary);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error .form-error {
    display: block;
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
    line-height: 1.5;
}

.form-group textarea::placeholder {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group.error textarea,
.form-group.error input,
.form-group.error select {
    border-color: var(--accent-secondary);
}

/* Style options grid - 4 columns for 8 items */
.style-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.style-option {
    padding: 0.75rem;
    background: var(--bg-input);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.style-option:hover {
    border-color: rgba(0, 188, 212, 0.5);
}

.style-option.selected {
    border-color: var(--accent);
    background: rgba(0, 188, 212, 0.15);
}

.style-option .style-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.style-option .style-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.palette-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.palette-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.palette-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--bg-input);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.palette-card:hover {
    border-color: rgba(0, 188, 212, 0.5);
}

.palette-card.selected {
    border-color: var(--accent);
    background: rgba(0, 188, 212, 0.15);
    color: var(--text);
}

.palette-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-submit {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    font-size: 1.15rem;
    position: relative;
}

.btn-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-submit .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.btn-submit.loading .spinner {
    display: inline-block;
}

.btn-submit.loading .btn-text {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 5-step layout */
.steps-5 {
    grid-template-columns: repeat(5, 1fr);
}

.steps-5 .step:not(:last-child)::after {
    width: calc(100% - 50px);
}

/* Logo Mode Toggle */
.mode-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mode-option {
    padding: 1.25rem 1rem;
    background: var(--bg-input);
    border: 2px solid var(--border);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mode-option:hover {
    border-color: rgba(0, 188, 212, 0.5);
}

.mode-option.selected {
    border-color: var(--accent);
    background: rgba(0, 188, 212, 0.12);
}

.mode-icon {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.mode-option.selected .mode-icon {
    color: var(--accent);
}

.mode-label {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.mode-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Toggle Switch */
.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.3s ease;
}

.toggle-row:hover {
    border-color: rgba(0, 188, 212, 0.4);
}

.toggle-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.toggle-text strong {
    font-size: 0.95rem;
}

.toggle-text small {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.toggle-switch {
    position: relative;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-track {
    display: block;
    width: 48px;
    height: 26px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 13px;
    position: relative;
    transition: all 0.3s ease;
}

.toggle-track::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-switch input:checked + .toggle-track {
    background: var(--accent);
    border-color: var(--accent);
}

.toggle-switch input:checked + .toggle-track::after {
    left: 24px;
    background: #ffffff;
}

/* Ideas Textarea */
#userIdeas {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    line-height: 1.5;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s ease;
    outline: none;
}

#userIdeas::placeholder {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

#userIdeas:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.15);
}

/* ---- Seed Gallery ---- */
.seed-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.seed-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.seed-card.rated {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.15);
}

.seed-card-img {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-input);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.seed-card-img .watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 2;
}

.seed-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.seed-card-body {
    padding: 1rem 1.25rem 1.25rem;
}

.seed-card-label {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.seed-card-label .seed-score {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.seed-profile-tag {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 3px;
    padding: 1px 6px;
    margin-left: 6px;
    white-space: nowrap;
}

.seed-card.rated .seed-score {
    opacity: 1;
}

/* 5D Slider Group */
.slider-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.slider-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.slider-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    width: 52px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.slider-row input[type="range"] {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--bg-input);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.slider-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--text-muted);
    border: 2px solid var(--bg-card);
    cursor: pointer;
    transition: background 0.2s ease;
}

.slider-row input[type="range"]::-webkit-slider-thumb:hover {
    background: var(--accent);
}

.seed-card.rated .slider-row input[type="range"]::-webkit-slider-thumb {
    background: var(--accent);
}

.slider-row input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--text-muted);
    border: 2px solid var(--bg-card);
    cursor: pointer;
}

.seed-card.rated .slider-row input[type="range"]::-moz-range-thumb {
    background: var(--accent);
}

.slider-val {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    width: 20px;
    text-align: right;
    flex-shrink: 0;
}

.seed-card.rated .slider-val {
    color: var(--accent);
}

/* Seed actions bar */
.seed-actions {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.seed-counter {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.seed-counter span:first-child {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.15rem;
}

.seed-counter-hint {
    font-size: 0.8rem;
    opacity: 0.6;
}

.seed-actions .btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ---- Responsive additions ---- */
@media (max-width: 900px) {
    .steps-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-5 {
        grid-template-columns: 1fr;
    }

    .steps-5 .step:not(:last-child)::after {
        display: none;
    }

    .mode-options {
        grid-template-columns: 1fr 1fr;
    }

    .seed-gallery {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .style-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--bg-card);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 188, 212, 0.05);
}

.faq-arrow {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 4rem 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-upsell {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    transition: border-color 0.3s ease;
}

.footer-upsell:hover {
    border-color: var(--accent);
}

.footer-upsell h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.footer-upsell p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-upsell .upsell-price {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-upsell .upsell-price span {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Selection Page */
.select-page {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
}

.select-header {
    text-align: center;
    margin-bottom: 3rem;
}

.select-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.select-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.logo-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.logo-option {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.logo-option:hover {
    border-color: rgba(0, 188, 212, 0.5);
    transform: translateY(-5px);
}

.logo-option.selected {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.2);
}

.logo-option .check-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
}

.logo-option.selected .check-badge {
    display: flex;
}

.logo-preview {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-input);
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.logo-preview img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.logo-preview .watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 3px;
}

.logo-option-label {
    font-size: 1rem;
    font-weight: 600;
}

.confirm-selection {
    text-align: center;
    margin-bottom: 4rem;
}

/* Brand DNA Summary */
.brand-dna-panel {
    max-width: 700px;
    margin: 0 auto 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    display: none;
}

.brand-dna-panel.visible {
    display: block;
}

.brand-dna-panel h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.dna-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.dna-item {
    background: var(--bg-input);
    border-radius: 12px;
    padding: 1rem;
}

.dna-item h5 {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.dna-item .value {
    font-size: 1rem;
    font-weight: 600;
}

.color-swatches {
    display: flex;
    gap: 0.5rem;
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 2px solid var(--border);
}

/* Upsell Panel */
.upsell-panel {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(255, 193, 7, 0.1));
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    display: none;
}

.upsell-panel.visible {
    display: block;
}

.upsell-panel h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.upsell-panel p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.upsell-panel .upsell-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.upsell-panel .upsell-price span {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.upsell-features {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.upsell-features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.upsell-features li::before {
    content: '\2713';
    color: var(--accent);
    font-weight: 700;
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.success-card {
    max-width: 500px;
    width: 100%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.success-card h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.success-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-input);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.5s infinite;
}

.status-dot.complete {
    background: #81c784;
    animation: none;
}

.status-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Loading State */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.loading-overlay.active {
    display: flex;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1.5rem;
}

.loading-content p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .sample-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
    }

    .order-card {
        padding: 2rem;
    }

    .style-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-options {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .style-options {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---- Animation Picker ---- */
.anim-picker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    max-width: 700px;
    margin: 0 auto;
}

.anim-card {
    padding: 1rem 0.75rem;
    background: var(--bg-input);
    border: 2px solid var(--border);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.anim-card:hover {
    border-color: rgba(0, 188, 212, 0.5);
    transform: translateY(-2px);
}

.anim-card.selected {
    border-color: var(--accent);
    background: rgba(0, 188, 212, 0.12);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.15);
}

.anim-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.anim-card-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.anim-card-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Live animation previews on picker cards */
.anim-icon-pulse { animation: ap-pulse 2s ease-in-out infinite; }
.anim-icon-glow { animation: ap-glow 3s ease-in-out infinite; }
.anim-icon-bounce { animation: ap-bounce 2s ease infinite; }
.anim-icon-fade-in { animation: ap-fade-in 2.5s ease infinite; }
.anim-icon-float { animation: ap-float 4s ease-in-out infinite; }
.anim-icon-breathe { animation: ap-breathe 4s ease-in-out infinite; }
.anim-shimmer-wrap { position: relative; overflow: hidden; display: inline-flex; }
.anim-shimmer-wrap::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: ap-shimmer 3s ease-in-out infinite;
}

@keyframes ap-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}
@keyframes ap-glow {
    0%, 100% { filter: drop-shadow(0 0 2px rgba(255,193,7,0.2)); }
    50% { filter: drop-shadow(0 0 10px rgba(255,193,7,0.6)); }
}
@keyframes ap-bounce {
    0%, 100% { transform: translateY(0); }
    20% { transform: translateY(-6px); }
    40% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    60% { transform: translateY(0); }
}
@keyframes ap-fade-in {
    0%, 40% { opacity: 0.3; transform: translateY(4px); }
    60%, 100% { opacity: 1; transform: translateY(0); }
}
@keyframes ap-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes ap-breathe {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
@keyframes ap-shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .anim-icon-pulse, .anim-icon-glow, .anim-icon-bounce,
    .anim-icon-fade-in, .anim-icon-float, .anim-icon-breathe,
    .anim-shimmer-wrap::after { animation: none !important; }
}

@media (max-width: 768px) {
    .anim-picker-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .anim-picker-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .anim-card { padding: 0.75rem 0.5rem; }
}
