/* Styles for content pages: training.html, pistol-shooting.html, get-started.html */

body {
    padding-bottom: 3rem;
}

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

.header {
    padding: 2rem 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at top left, #4b5563, #020617 55%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #f8fafc;
}

.hero p {
    font-size: 1.125rem;
    color: rgba(249, 250, 251, 0.85);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background-color: #f8fafc;
    color: #111827;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e5e7eb;
    transform: translateX(4px);
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 60px -25px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-image.small {
    aspect-ratio: 1;
    object-fit: cover;
}

.hero-image.tall {
    aspect-ratio: 3/4;
    object-fit: cover;
}

/* Key Features Section */
.key-features {
    padding: 80px 0;
    background: #0b1224;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
}

.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 16px;
    color: #f8fafc;
}

.feature-icon {
    font-size: 4rem;
    color: #e5e7eb;
    line-height: 1;
}

/* Walkthrough Section */
.walkthrough {
    padding: 80px 0;
    position: relative;
    background: #050816;
}

.walkthrough-header {
    text-align: center;
    margin-bottom: 64px;
}

.walkthrough-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #f8fafc;
}

.walkthrough-header p {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.walkthrough-carousel {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding: 16px 0 32px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #4b5563 #1f2937;
}

.walkthrough-carousel::-webkit-scrollbar {
    height: 8px;
}

.walkthrough-carousel::-webkit-scrollbar-track {
    background: #1f2937;
    border-radius: 4px;
}

.walkthrough-carousel::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

.step-card {
    min-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: #0b1224;
    border: 1px solid #1f2937;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px -25px rgba(0, 0, 0, 0.8);
    border-color: #374151;
}

.step-image {
    width: 100%;
    height: 240px;
    object-fit: contain;
    padding: 16px;
    background: #111827;
}

.step-content {
    padding: 24px;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8fafc;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f8fafc;
}

.scroll-hint {
    text-align: center;
    margin-top: 16px;
    color: #9ca3af;
    font-size: 0.875rem;
}

.walkthrough-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 64px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.walkthrough-step:first-of-type {
    border-top: none;
    padding-top: 0;
}

.walkthrough-step.reverse {
    direction: rtl;
}

.walkthrough-step.reverse > * {
    direction: ltr;
}

.step-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
}

.step-content p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 24px;
    line-height: 1.7;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: rgba(248, 250, 252, 0.1);
    color: #f8fafc;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
}

.step-image-wrapper {
    position: relative;
}

.step-image-wrapper::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f8fafc;
    z-index: 1;
}

.step-image-wrapper .step-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    height: auto;
}

.step-icon {
    position: absolute;
    top: 28px;
    left: 28px;
    width: 24px;
    height: 24px;
    z-index: 2;
    filter: brightness(0) invert(1);
}

/* Bottom Pitch Section */
.bottom-pitch {
    padding: 80px 0;
    background: #0b1224;
    text-align: center;
}

.bottom-pitch h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #f8fafc;
}

.bottom-pitch p {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-button.primary {
    background-color: #f8fafc;
    color: #111827;
    padding: 18px 40px;
    font-size: 1.125rem;
}

.cta-button.primary:hover {
    background-color: #e5e7eb;
    box-shadow: 0 8px 24px rgba(248, 250, 252, 0.2);
}

/* Explore Section */
.explore {
    padding: 80px 0;
    background: #050816;
}

.explore-header {
    text-align: center;
    margin-bottom: 48px;
}

.explore-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #f8fafc;
}

.explore-header p {
    font-size: 1.125rem;
    color: #cbd5e1;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.explore-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    border: 2px solid #1f2937;
    border-radius: 12px;
    text-decoration: none;
    color: #e5e7eb;
    background: #0b1224;
    transition: all 0.3s ease;
}

.explore-link:hover {
    border-color: #4b5563;
    background-color: #111827;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.explore-link span {
    font-weight: 600;
    margin-top: 12px;
    color: #f8fafc;
}

.explore-icon {
    font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content,
    .walkthrough-step {
        grid-template-columns: 1fr;
    }
    
    .hero-visual,
    .hero-images {
        order: -1;
    }
    
    .walkthrough-step.reverse {
        direction: ltr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .step-content {
        text-align: center;
    }
    
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .explore-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-images {
        grid-template-columns: 1fr;
    }
}

/* Pricing Page Styles */
.trial-banner {
    padding: 48px 0;
    background: #0b1224;
}

.trial-content {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.05) 0%, rgba(248, 250, 252, 0.02) 100%);
    border: 1px solid rgba(248, 250, 252, 0.1);
    border-radius: 16px;
    padding: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.trial-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.trial-text {
    flex: 1;
}

.trial-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 8px;
}

.trial-text p {
    font-size: 1rem;
    color: #cbd5e1;
    margin: 0;
}

.pricing-section {
    padding: 80px 0;
    background: #050816;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #0b1224;
    border: 1px solid #1f2937;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px -25px rgba(0, 0, 0, 0.8);
    border-color: #374151;
}

.pricing-card.featured {
    border-color: #f8fafc;
    border-width: 2px;
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f8fafc;
    color: #111827;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-top: 8px;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1;
}

.price-currency {
    font-size: 1rem;
    color: #9ca3af;
    font-weight: 500;
}

.pricing-description {
    font-size: 0.95rem;
    color: #9ca3af;
    margin: 0;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-card .feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(248, 250, 252, 0.03);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: background 0.2s ease;
}

.pricing-card .feature-item:hover {
    background: rgba(248, 250, 252, 0.06);
}

.pricing-card .feature-item:last-child {
    margin-bottom: 0;
}

.pricing-card .feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.pricing-card .feature-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pricing-card .feature-value {
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.2;
}

.pricing-card .feature-label {
    font-size: 0.875rem;
    color: #cbd5e1;
    margin-top: 4px;
}

.pricing-footer {
    text-align: center;
}

.pricing-button {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    background: rgba(248, 250, 252, 0.1);
    color: #f8fafc;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(248, 250, 252, 0.2);
}

.pricing-button:hover {
    background: rgba(248, 250, 252, 0.15);
    border-color: rgba(248, 250, 252, 0.3);
    transform: translateY(-2px);
}

.pricing-button.primary {
    background: #f8fafc;
    color: #111827;
    border-color: #f8fafc;
}

.pricing-button.primary:hover {
    background: #e5e7eb;
    border-color: #e5e7eb;
    box-shadow: 0 8px 24px rgba(248, 250, 252, 0.2);
}

.features-section {
    padding: 80px 0;
    background: #0b1224;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 48px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-box {
    text-align: center;
    padding: 32px 24px;
    background: rgba(248, 250, 252, 0.03);
    border: 1px solid rgba(248, 250, 252, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(248, 250, 252, 0.06);
    border-color: rgba(248, 250, 252, 0.1);
    transform: translateY(-4px);
}

.box-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.feature-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Pricing */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .trial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .trial-content {
        padding: 24px;
    }
    
    .trial-icon {
        font-size: 2.5rem;
    }
    
    .trial-text h2 {
        font-size: 1.25rem;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    .price-currency {
        font-size: 0.9rem;
    }
    
    .pricing-card .feature-value {
        font-size: 1.75rem;
    }
}

