/* Product Page Styles — TG Grabber Pro */
/* Harmonized with Code Aeternum copper/bronze palette */

/* Hero */
.product-hero {
    padding: 6rem 5% 4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-icon-wrap {
    margin-bottom: 2rem;
}

.hero-app-icon {
    border-radius: 28px;
    box-shadow: 0 0 60px rgba(201, 149, 107, 0.25),
        0 0 120px rgba(90, 122, 138, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: icon-float 4s ease-in-out infinite;
}

.hero-app-icon:hover {
    transform: scale(1.08);
    box-shadow: 0 0 80px rgba(201, 149, 107, 0.4),
        0 0 160px rgba(90, 122, 138, 0.2);
}

@keyframes icon-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.product-badge {
    display: inline-block;
    background: rgba(201, 149, 107, 0.12);
    border: 1px solid rgba(201, 149, 107, 0.25);
    color: var(--primary-light);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.product-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.product-tagline {
    color: var(--text-muted);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.5;
}

.hero-actions {
    margin-bottom: 1.5rem;
}

.hero-actions .cta-button {
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
}

.hero-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Promo Screenshot */
.promo-screenshot {
    text-align: center;
    padding: 0 5% 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.promo-screenshot img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 48px rgba(201, 149, 107, 0.15),
        0 0 0 1px rgba(201, 149, 107, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.promo-screenshot img:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 64px rgba(201, 149, 107, 0.25),
        0 0 0 1px rgba(201, 149, 107, 0.15);
}

/* Features */
.features {
    padding: 5rem 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 149, 107, 0.3);
    box-shadow: 0 8px 32px rgba(201, 149, 107, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* How It Works */
.how-it-works {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

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

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 auto 1.2rem;
    box-shadow: 0 0 24px var(--primary-glow);
}

.step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    color: #fff;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Support Section */
.support-section {
    text-align: center;
    padding: 4rem 5%;
    max-width: 700px;
    margin: 0 auto;
}

.support-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #fff;
}

.support-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.support-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

/* Downloads Section */
.downloads-section {
    text-align: center;
    padding: 5rem 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.downloads-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.download-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.download-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 149, 107, 0.4);
    box-shadow: 0 12px 40px rgba(201, 149, 107, 0.15),
        0 0 60px rgba(201, 149, 107, 0.08);
}

.download-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.download-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

.download-file {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

.download-btn {
    display: inline-block;
    margin-top: 0.8rem;
    background: var(--gradient);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.8rem;
    border-radius: 50px;
    transition: box-shadow 0.3s, transform 0.2s;
}

.download-card:hover .download-btn {
    box-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1.05);
}

.downloads-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Bottom CTA */
.bottom-cta {
    text-align: center;
    padding: 5rem 5%;
    max-width: 700px;
    margin: 0 auto;
}

.bottom-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bottom-cta p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 2.2rem;
    }

    .product-tagline {
        font-size: 1.05rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-actions .cta-button {
        font-size: 0.95rem;
        padding: 0.9rem 2rem;
    }

    .hero-app-icon {
        width: 80px;
        height: 80px;
    }

    .support-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .product-hero h1 {
        font-size: 1.8rem;
    }

    .bottom-cta h2 {
        font-size: 1.6rem;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
    }
}