/* ============================================
   Kintact App Specific Styles
   ============================================ */

/* Color Variables */
:root {
    --kintact-primary: #4f46e5;
    --kintact-secondary: #7c3aed;
    --kintact-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

/* Hero Section */
.app-hero {
    background: var(--kintact-gradient);
}

/* Buttons */
.btn-white {
    color: var(--kintact-primary);
}

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

/* Feature Icons */
.feature-icon {
    background: var(--kintact-gradient);
}

/* Step Cards (How It Works) */
.how-it-works {
    padding: 80px 0;
    background: white;
}

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

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--kintact-gradient);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Screenshot Placeholder */
.screenshot-placeholder {
    background: var(--kintact-gradient);
}

/* Screenshots Section Background */
.screenshots-section {
    background: #f8fafc;
}

/* Stats */
.stat-number {
    color: var(--kintact-primary);
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Privacy Highlight */
.privacy-highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.privacy-highlight h3 {
    color: #0369a1;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.privacy-highlight p {
    color: #0369a1;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.privacy-highlight ul {
    color: #0369a1;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.privacy-highlight li {
    margin-bottom: 0.5rem;
}

