/* Pinterest Nails PDF - page specific styles */
/* Reuse on any "inspiration to PDF" landing pages */

.pinterest-nails-hero {
    text-align: center;
    margin: 2rem 0;
}

.pinterest-nails-hero h1 {
    background: linear-gradient(135deg, #be185d, #7c2d12);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.pinterest-nails-hero p {
    font-size: 1.2rem;
    color: #4b4b5c;
    max-width: 650px;
    margin: 0 auto;
}

/* Trust bar */
.trust-bar {
    background: white;
    border-radius: 100px;
    padding: 0.8rem 1.5rem;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid #ffe2e6;
}

.trust-item {
    font-weight: 500;
    color: #2d1b4e;
}

/* Feature cards */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
}

.card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    flex: 1 1 240px;
    text-align: center;
    transition: all 0.2s;
    border: 1px solid #ffe4e6;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Steps */
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid #ffe4e6;
}

.step-number {
    background: #fce7f3;
    color: #be185d;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* Tip box */
.tip-box {
    background: #fef2e8;
    border-left: 5px solid #f97316;
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    margin: 2rem 0;
}

/* FAQ items */
.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    border: 1px solid #ffe4e6;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 0.8rem;
    color: #4b4b5c;
    display: block;
}

/* Related tools grid */
.related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.related-link {
    background: #f1f5f9;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.9rem;
    color: #1e293b;
    transition: 0.1s;
}

.related-link:hover {
    background: #e2e8f0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 100;
}

.sticky-cta .btn {
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    padding: 0.8rem 1.5rem;
}

/* Use case tags */
.use-case-tag {
    background: #fff0f3;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Gradient CTA section */
.gradient-cta {
    background: linear-gradient(105deg, #fff0f5 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 32px;
    text-align: center;
    margin: 3rem 0;
}

.gradient-cta h2 {
    border-left: none;
    padding-left: 0;
}

/* Responsive */
@media (max-width: 640px) {
    .trust-bar {
        border-radius: 20px;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
    .gradient-cta {
        padding: 1.5rem;
    }
}