/* =============================================
   Product landing page (Zilver / Goud)
   ============================================= */

.product-page { padding-top: 110px; background: var(--bg-primary); }

/* Breadcrumb */
.product-page .breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }
.product-page .breadcrumb a { color: var(--text-gray); transition: color var(--transition); }
.product-page .breadcrumb a:hover { color: var(--text-white); }
.product-page .breadcrumb span { margin: 0 8px; color: var(--text-muted); }

/* Hero */
.hero-product { padding: 20px 0 90px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-copy h1 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    margin: 18px 0 20px;
    color: var(--text-white);
}
.hero-sub {
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-gray);
    margin-bottom: 28px;
    max-width: 560px;
}

/* Tier badge */
.tier-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.tier-silver { background: linear-gradient(135deg, #e5e7eb 0%, #9ca3af 100%); color: #111; }
.tier-gold   { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); color: #111; }

/* Price block */
.price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 28px;
}
.price-current {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #7C3AED 0%, #FD4766 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.price-period { font-size: 16px; color: var(--text-gray); font-weight: 500; }

/* CTAs — scope .btn-primary to product page so it renders as button without needing .btn */
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.product-page .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition);
}
.product-page .btn-primary:hover { transform: translateY(-2px); }
.product-page .btn-primary.btn-lg,
.product-page .btn-lg { padding: 16px 32px; font-size: 15px; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--text-white);
    border: 1.5px solid rgba(255,255,255,0.18);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition);
}
.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}

/* Trust badges */
.trust-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 0;
}
.trust-inline li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
}
.trust-inline li i { color: #FD4766; font-size: 14px; }

/* Hero media */
.hero-media img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}

/* Section wrappers */
.section-features, .section-compare, .section-faq, .section-cta { padding: 80px 0; }
.section-features { background: var(--bg-secondary); }
.section-compare  { background: var(--bg-primary); }
.section-faq      { background: var(--bg-secondary); }
.section-cta      { background: var(--bg-primary); text-align: center; }

.section-features h2,
.section-compare h2,
.section-faq h2,
.section-cta h2 {
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-white);
    line-height: 1.2;
}
.section-features h2,
.section-compare h2,
.section-faq h2 { text-align: center; }

.section-lead {
    text-align: center;
    color: var(--text-gray);
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* Features grid: override site default (4 cols) → 3 cols to fit 6 cards nicely */
.product-page .features-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
}
.product-page .feature-card > i:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(253, 71, 102, 0.12);
    color: #FD4766;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Compare */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}
.compare-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}
.compare-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
.compare-current {
    border: 1px solid rgba(253, 71, 102, 0.4);
    box-shadow: 0 0 0 1px rgba(253, 71, 102, 0.2), 0 20px 40px rgba(0,0,0,0.4);
}
.compare-head { margin-bottom: 24px; }
.compare-head .tier-badge { margin-bottom: 14px; }
.compare-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    margin: 4px 0 8px;
}
.compare-price {
    font-size: 30px;
    font-weight: 900;
    background: linear-gradient(135deg, #7C3AED 0%, #FD4766 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.compare-card ul {
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.compare-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
}
.compare-card ul li i.fa-check { color: #22c55e; }
.compare-card ul li i.strong   { color: #FD4766; }
.compare-card ul li i.muted    { color: var(--text-muted); }
.compare-card .btn-primary,
.compare-card .btn-secondary {
    justify-content: center;
    text-align: center;
    width: 100%;
}

/* FAQ */
.section-faq .container { max-width: 820px; }
.section-faq h2 { margin-bottom: 40px; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(253, 71, 102, 0.35); }
.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 24px;
    color: #FD4766;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
    padding: 0 24px 20px;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}
.faq-item a { color: #FD4766; text-decoration: underline; }

/* CTA section */
.section-cta h2 { margin-bottom: 12px; }
.section-cta > .container > p { color: var(--text-gray); font-size: 16px; margin-bottom: 30px; }
.section-cta .btn-primary { margin: 0 auto; }
.cta-sub { font-size: 13px; color: var(--text-muted); margin-top: 18px; }
.cta-sub i { color: #FD4766; margin: 0 4px; }

/* Responsive */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-media { order: -1; max-width: 520px; margin: 0 auto; }
    .product-page .features-grid { grid-template-columns: repeat(2, 1fr); }
    .compare-grid { grid-template-columns: 1fr; }
    .hero-product { padding: 10px 0 60px; }
    .section-features, .section-compare, .section-faq, .section-cta { padding: 60px 0; }
}
@media (max-width: 600px) {
    .product-page { padding-top: 90px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta > a { justify-content: center; }
    .product-page .features-grid { grid-template-columns: 1fr; }
    .trust-inline { gap: 12px; }
    .price-current { font-size: 40px; }
    .compare-card { padding: 28px 22px; }
}
