/* Process Page Styles */

/* General Layout */
.process-main {
    padding-top: 8rem;
    background-color: var(--color-bg-primary);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
}

/* Hero Section */
.process-hero {
    position: relative;
    padding: 4rem 1rem 6rem;
    background: transparent;
    overflow: hidden;
    isolation: isolate;
    /* Create new stacking context */
}

/* Gold Shadow Spotlight */
.process-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    /* Center statically if mouse not moved yet, or just ambient */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Dynamic cursor tracking variable with stronger ambient glow */
    background: radial-gradient(circle 800px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(187, 153, 84, 0.2), transparent 50%);
    z-index: -1;
    opacity: 1;
}

.process-hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #eee 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Process Steps (Horizontal Timeline) */
.process-steps {
    padding: 6rem 0;
    position: relative;
    overflow-x: hidden;
}

.steps-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    /* Horizontal */
    justify-content: space-between;
    gap: 2rem;
}

/* Connecting Line (Horizontal) */
.steps-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 25px;
    /* Center of marker */
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, transparent, #333 10%, #333 90%, transparent);
    transform: none;
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    text-align: center;
    flex: 1;
}

.step-marker {
    position: relative;
    /* In flow */
    width: 50px;
    height: 50px;
    background: #111;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #bb9954;
    z-index: 2;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    left: auto;
    transform: none;
}

.step-content {
    width: 100%;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-content:hover {
    transform: translateY(-10px);
    border-color: #bb9954;
}

/* Remove alternating logic */
.step-item:nth-child(odd),
.step-item:nth-child(even) {
    justify-content: center;
}

.step-item:nth-child(odd) .step-content,
.step-item:nth-child(even) .step-content {
    margin: 0;
}

.step-icon {
    width: 48px;
    height: 48px;
    color: #bb9954;
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
    min-height: 3rem;
    /* Align titles */
}

.step-content p {
    color: #aaa;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background-color: #050505;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.section-description {
    color: #888;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
    border: 1px solid #222;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #444;
}

.pricing-card.featured {
    border: 1px solid #bb9954;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    box-shadow: 0 0 30px rgba(187, 153, 84, 0.15);
    transform: scale(1.05);
    /* Slightly bigger */
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #bb9954;
    color: #000;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header h3 {
    font-size: 1.4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    border-top: 1px solid #222;
    padding-top: 2rem;
}

.features-list li {
    margin-bottom: 1rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.check {
    color: #bb9954;
    font-weight: bold;
}

.btn-primary {
    background: #bb9954;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    border: 1px solid #666;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    display: inline-block;
}

.btn-outline:hover {
    border-color: #fff;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: #000;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-radius: 12px;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-item.active {
    background: rgba(187, 153, 84, 0.05);
}

.faq-item details summary {
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2rem;
    color: #eee;
    transition: color 0.3s;
}

.faq-item details summary:hover {
    color: #bb9954;
}

/* FAQ Question Customization for shared css */
.faq-question {
    color: #eee;
    padding: 1.5rem 0;
    width: 100%;
}

.faq-question:hover {
    color: #bb9954;
}

.faq-item .faq-icon::before,
.faq-item .faq-icon::after {
    background-color: #666;
}

.faq-item:hover .faq-icon::before,
.faq-item:hover .faq-icon::after {
    background-color: #bb9954;
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background-color: #bb9954;
}

.faq-item details summary::-webkit-details-marker {
    display: none;
}

.faq-item details summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
}

.faq-item details[open] summary::after {
    content: '-';
    color: #bb9954;
}

.faq-item details p {
    margin-top: 1rem;
    color: #aaa;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {

    /* Stack Process Timeline on mobile */
    .steps-timeline {
        flex-direction: column;
        gap: 3rem;
    }

    .steps-timeline::before {
        left: 25px;
        /* Line to left (marker center) */
        width: 2px;
        height: 100%;
        top: 0;
        right: auto;
        background: linear-gradient(to bottom, transparent, #333, #333, transparent);
    }

    .step-item {
        flex-direction: row;
        /* Icon left, content right */
        text-align: left;
        align-items: flex-start;
        padding-left: 0;
    }

    .step-marker {
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 0;
        margin-right: 1.5rem;
        flex-shrink: 0;
        transform: none;
    }

    .step-content {
        width: 100%;
        margin: 0 !important;
        align-items: flex-start;
    }

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