/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --storelink-color: #ec4899;
    --printstore-color: #8b5cf6;
    --orderdesk-color: #10b981;
    --apidirect-color: #f59e0b;
    --dark-bg: #1e293b;
    --light-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tagline {
    font-size: 0.85rem;
    opacity: 0.85;
    font-weight: 300;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-pill {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1e3a8a 60%, var(--primary-color) 100%);
    color: white;
    padding: 4rem 0 5rem;
    overflow: hidden;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--light-bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.hero-btn.primary {
    background: white;
    color: var(--primary-color);
}

.hero-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hero-btn.secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-btn.secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.75;
    font-weight: 400;
}

/* Page Sections */
.page-section {
    padding: 5rem 0;
}

.page-section.alt-bg {
    background: var(--card-bg);
}

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

.section-label {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0.75rem auto 0;
    line-height: 1.7;
}

/* Section title used in solution selection */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card-select {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.solution-card-select:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.solution-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
}

.storelink-color {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.printstore-color {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.orderdesk-color {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.apidirect-color {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.solution-card-select h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.solution-card-select p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.select-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.select-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Guide Container */
.guide-container {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Progress Section */
.progress-section {
    background: var(--card-bg);
    padding: 2rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 76px;
    z-index: 90;
}

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

.progress-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.back-btn {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-btn:hover {
    background: var(--border-color);
}

.progress-bar-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.progress-bar {
    flex: 1;
    height: 12px;
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    transition: width 0.4s ease;
}

.progress-text {
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.progress-step {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-step.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.progress-step.completed {
    background: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

.progress-step-number {
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.25rem;
}

.progress-step-title {
    font-size: 0.8rem;
    font-weight: 500;
    display: block;
}

/* Step Section */
.step-section {
    padding: 3rem 0 4rem;
}

.step-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    min-height: 400px;
}

.step-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.step-number {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-body {
    margin-top: 2rem;
}

.step-body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.step-body h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--primary-color);
}

.step-body p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-body ul, .step-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.step-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.step-body code {
    background: var(--light-bg);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--danger-color);
}

.step-body pre {
    background: var(--dark-bg);
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.step-body pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Info Boxes */
.info-box {
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid;
}

.info-box.info {
    background: #eff6ff;
    border-color: var(--primary-color);
}

.info-box.success {
    background: #f0fdf4;
    border-color: var(--success-color);
}

.info-box.warning {
    background: #fffbeb;
    border-color: var(--warning-color);
}

.info-box.danger {
    background: #fef2f2;
    border-color: var(--danger-color);
}

.info-box-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box-title i {
    font-size: 1.2rem;
}

/* Checklist */
.checklist {
    list-style: none;
    margin: 1.5rem 0;
}

.checklist li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checklist li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--success-color);
    flex-shrink: 0;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.nav-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prev-btn {
    background: var(--light-bg);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.prev-btn:hover:not(:disabled) {
    background: var(--border-color);
    transform: translateX(-4px);
}

.prev-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.next-btn {
    background: var(--primary-color);
    color: white;
    margin-left: auto;
}

.next-btn:hover {
    background: var(--secondary-color);
    transform: translateX(4px);
}

.complete-btn {
    background: var(--success-color);
    color: white;
    margin-left: auto;
}

.complete-btn:hover {
    background: #059669;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.poc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Marketplace Icons in Solution Card */
.marketplace-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 1rem 0;
    font-size: 1.5rem;
}

.marketplace-icons i {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.marketplace-icons i:hover {
    opacity: 1;
}

.marketplace-icons .fa-shopify {
    color: #95BF47;
}

.marketplace-icons .fa-etsy {
    color: #F56400;
}

.marketplace-icons .fa-amazon {
    color: #FF9900;
}

.marketplace-icons .fa-tiktok {
    color: #000000;
}

/* Platform Cards with Logos */
.platform-card {
    display: block;
    text-decoration: none;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.platform-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.platform-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.platform-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    padding: 0.75rem;
}

.platform-logo img,
.platform-logo svg {
    max-width: 100%;
    max-height: 100%;
}

.platform-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.platform-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.platform-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.platform-cta i {
    transition: transform 0.3s ease;
}

.platform-card:hover .platform-cta i {
    transform: translateX(4px);
}

/* Contact Box */
.contact-box {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.contact-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
}

.contact-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.contact-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: var(--danger-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.contact-content {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-height: 600px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

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

.contact-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-header h3 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: opacity 0.3s ease;
}

.contact-close:hover {
    opacity: 0.8;
}

.contact-body {
    padding: 1.5rem;
    max-height: 500px;
    overflow-y: auto;
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-submit {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-success {
    background: var(--success-color);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════ */
/* ONBOARDING / POINT OF SALE SECTION            */
/* ═══════════════════════════════════════════════ */

.onboarding-track {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.onboarding-step {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.onboarding-step:hover {
    border-color: var(--primary-color);
    transform: translateX(6px);
    box-shadow: var(--shadow-lg);
}

.onboarding-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--border-color);
    min-width: 40px;
    font-variant-numeric: tabular-nums;
    letter-spacing: -1px;
}

.onboarding-step:hover .onboarding-number {
    color: var(--primary-color);
}

.onboarding-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.nda-color       { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.app-color       { background: linear-gradient(135deg, #0ea5e9, #2563eb); }
.pricing-color   { background: linear-gradient(135deg, #f59e0b, #d97706); }
.credit-color    { background: linear-gradient(135deg, #10b981, #059669); }
.agreement-color { background: linear-gradient(135deg, #ec4899, #db2777); }

.onboarding-body {
    flex: 1;
}

.onboarding-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.onboarding-body p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.onboarding-tag {
    display: inline-block;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.onboarding-arrow {
    color: var(--border-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.onboarding-step:hover .onboarding-arrow {
    color: var(--primary-color);
    transform: translateX(4px);
}

.onboarding-connector {
    display: flex;
    justify-content: flex-start;
    padding-left: 4.75rem;
    color: var(--border-color);
    font-size: 0.85rem;
    margin: 0.4rem 0;
}

.onboarding-note {
    max-width: 800px;
    margin: 2rem auto 0;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #1e40af;
    font-size: 0.9rem;
}

.onboarding-note i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════ */
/* SALES & MARKETING TOOLS                        */
/* ═══════════════════════════════════════════════ */

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

.tool-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tool-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}

.tool-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.tool-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.tool-link {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s ease;
}

.tool-card:hover .tool-link {
    gap: 0.65rem;
}

/* ═══════════════════════════════════════════════ */
/* USEFUL INFORMATION                              */
/* ═══════════════════════════════════════════════ */

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--border-color);
}

.info-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.info-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.info-list li > i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    width: 18px;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.info-list li > div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.info-list li strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.info-list li span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.poc-note {
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.25);
    border-radius: 8px;
    font-size: 0.8rem;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ═══════════════════════════════════════════════ */
/* MODALS                                          */
/* ═══════════════════════════════════════════════ */

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 500;
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.open {
    display: flex;
    animation: fadeIn 0.25s ease;
}

.modal-box {
    background: var(--card-bg);
    border-radius: 16px;
    width: 100%;
    max-width: 640px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: slideIn 0.3s ease;
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: var(--danger-color);
    color: white;
    border-color: var(--danger-color);
}

.modal-hero {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.modal-hero-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
}

.modal-hero-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.modal-hero-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-body {
    padding: 2rem 2.5rem 2.5rem;
}

.modal-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.modal-body ul {
    list-style: none;
    margin-bottom: 1.25rem;
}

.modal-body ul li {
    padding: 0.45rem 0;
    padding-left: 1.4rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.modal-body ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.modal-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.modal-btn.primary {
    background: var(--primary-color);
    color: white;
}

.modal-btn.primary:hover {
    background: var(--secondary-color);
}

.modal-btn.outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.modal-btn.outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .solution-cards {
        grid-template-columns: 1fr;
    }

    .progress-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .progress-steps {
        flex-wrap: wrap;
    }

    .step-content {
        padding: 2rem 1.5rem;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .step-navigation {
        flex-direction: column;
    }

    .next-btn, .complete-btn {
        margin-left: 0;
    }

    .contact-content {
        width: calc(100vw - 40px);
        right: -10px;
    }

    .contact-box {
        right: 20px;
        bottom: 20px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .onboarding-step {
        padding: 1.25rem;
        gap: 1rem;
    }

    .onboarding-number {
        display: none;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }



    .info-grid {
        grid-template-columns: 1fr;
    }

    .nav-pill {
        display: none;
    }

    .modal-hero {
        padding: 2rem 1.5rem 1.25rem;
    }

    .modal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .step-content {
        padding: 1.5rem 1rem;
    }
}
