/* --- Tattoo Studios niche page --- */



body {
    background: #f8fafc url('/images/Tattoo-dragon-background.png') no-repeat fixed center;
    background-size: cover;

}



.niche-landing {
    padding: 40px 15px 70px;
    max-width: 1100px;
    margin: 0 auto;
    color: #e5e7eb;
    font-family: "Segoe UI", Arial, sans-serif;
}

    /* Hero */
    .niche-landing .hero-section {
        background: linear-gradient(135deg, #111827, #1e293b);
        border-radius: 18px;
        padding: 32px 26px 30px;
        margin-bottom: 32px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
    }

        .niche-landing .hero-section h1 {
            font-size: 32px;
            margin-bottom: 4px;
            color: #f9fafb;
        }

        .niche-landing .hero-section h2 {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 16px;
            color: #e5e7eb;
        }

        .niche-landing .hero-section .lead {
            font-size: 15px;
            max-width: 720px;
            margin-bottom: 18px;
            color: #d1d5db;
        }

        .niche-landing .hero-section .btn-lg {
            padding: 10px 26px;
            border-radius: 999px;
            font-weight: 600;
            border: none;
            background: linear-gradient(135deg, #111827, #1e293b);
            color: #111827;
        }

            .niche-landing .hero-section .btn-lg:hover {
                background: linear-gradient(135deg, #fb923c, #fde047);
                color: #020617;
            }

    /* Section headings */
    .niche-landing h3 {
        font-size: 22px;
        margin: 26px 0 14px;
        color: #f9fafb;
    }

    /* Simple copy sections */
    .niche-landing .how-it-works,
    .niche-landing .cta-bottom {
        margin-top: 26px;
        background: linear-gradient(135deg, #111827, #1e293b);
        border-radius: 14px;
        padding: 20px 22px;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
        border: 1px solid #111827;
    }

        .niche-landing .cta-bottom p {
            margin-bottom: 14px;
        }

        .niche-landing .cta-bottom .btn-xl {
            padding: 11px 30px;
            border-radius: 999px;
            font-weight: 600;
            border: none;
            background: linear-gradient(135deg, #f97316, #facc15);
            color: #111827;
        }

            .niche-landing .cta-bottom .btn-xl:hover {
                background: linear-gradient(135deg, #fb923c, #fde047);
                color: #020617;
            }

/* --- Card-style benefits like the Bookstore page --- */

.benefits-section {
    margin-top: 18px;
}

/* Wrapper row for cards */
.benefit-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 10px;
}

/* Individual card */
.benefit-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    padding: 18px 18px 16px;
    border: 1px solid #111827;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
    flex: 1 1 260px; /* 3 across on desktop, stack on mobile */
    min-width: 0;
    color: #111;
}

.option-a .start-trial {
    background: linear-gradient(135deg, #f97316, #facc15);
    border: none;
    box-shadow: 0 4px 14px rgba(0,0,0,.35);
    color: #111111;
}

.option-a .divider {
    border: none;
    height: 1px;
    background: #cbd5e1;
    margin: 28px 0;
}

.benefit-card:hover {
    border-color: #facc15;
    transform: translateY(-2px);
    transition: 0.25s;
}

    .benefit-card h4 {
        font-size: 16px;
        margin-bottom: 6px;
        color: #facc15; /* accent title */
    }

    .benefit-card p {
        font-size: 14px;
        color: #d1d5db;
        margin-bottom: 0;
    }

    /* Optional mini bullet styling inside a card */
    .benefit-card ul {
        padding-left: 18px;
        margin-bottom: 0;
    }

    .benefit-card li {
        font-size: 14px;
        margin-bottom: 4px;
    }

/* General text */
.niche-landing p,
.niche-landing li {
    font-size: 14px;
    line-height: 1.55;
}

/* Responsive tweaks */
@media (max-width: 767px) {
    .niche-landing .hero-section {
        padding: 22px 18px 20px;
    }

        .niche-landing .hero-section h1 {
            font-size: 26px;
        }

        .niche-landing .hero-section h2 {
            font-size: 18px;
        }
}
