/* ============================================
   PRODUCT LANDING PAGES — Shared Styles
   ============================================ */

/* Product Hero */
.product-hero {
    padding: 140px 0 80px;
    background: var(--bg-primary);
}

.product-hero-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.product-hero-content {
    flex: 1;
    max-width: 580px;
}

/* Stacked screenshots */
.product-hero-screens {
    flex: 1;
    display: flex;
    justify-content: center;
}

.screen-stack {
    position: relative;
    width: 500px;
    height: 400px;
}

.screen-back {
    width: 430px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: rotate(-3deg);
    display: block;
}

.screen-front {
    width: 400px;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    border: 2px solid var(--color-border);
    display: block;
}

.screen-zoom-hint {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    opacity: 0.6;
    transition: var(--transition);
    pointer-events: none;
}
.screen-wrap:hover .screen-zoom-hint {
    opacity: 1;
    background: var(--color-brand);
}

/* 3-image stack (like invoices + small popup) */
.screen-stack-3 {
    position: relative;
    width: 500px;
    height: 400px;
}

.screen-stack-3 .screen-wrap {
    position: absolute;
}

.screen-wrap-far {
    top: 0;
    right: 0;
    z-index: 1;
}
.screen-wrap-mid {
    bottom: 60px;
    left: 0;
    z-index: 2;
}
.screen-wrap-near {
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    z-index: 3;
}

.screen-far {
    width: 430px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: rotate(-3deg);
    display: block;
}
.screen-mid {
    width: 400px;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    border: 2px solid var(--color-border);
    display: block;
}
.screen-near {
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    transform: rotate(-2deg);
    border: 2px solid var(--color-border);
    display: block;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #1a1a2e;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: 0.2s ease;
}
.lightbox-close:hover {
    background: var(--color-brand);
    color: white;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    color: #1a1a2e;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: 0.2s ease;
}
.lightbox-nav:hover {
    background: var(--color-brand);
    color: white;
}
.lightbox-prev { right: -60px; }
.lightbox-next { left: -60px; }

.lightbox-counter {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 16px;
}

/* Screen wraps with zoom hint */
.screen-wrap {
    position: absolute;
}
.screen-wrap::after {
    content: 'התמונה להמחשה בלבד';
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.6rem;
    pointer-events: none;
    z-index: 3;
}
.screen-wrap-back {
    top: 0;
    right: 0;
    z-index: 1;
}
.screen-wrap-front {
    bottom: 0;
    left: 0;
    z-index: 2;
}

/* Magnifier */
.screen-stack img {
    cursor: pointer;
}
.screen-magnifier {
    position: fixed;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid var(--color-brand);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    z-index: 100;
    display: none;
    background-repeat: no-repeat;
    background-color: white;
}

/* Product Page Title */
.product-page-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--color-brand);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.product-page-subtitle {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Back home link */
.back-home-link {
    display: inline-block;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}
.back-home-link:hover {
    color: var(--color-brand);
}

.product-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.product-highlight {
    color: var(--product-color);
}

.product-hero > .container > .product-hero-content > p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-brand);
    margin-bottom: 24px;
}

.product-hero-cta {
    display: flex;
    gap: 16px;
}

.btn-product-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--product-color);
    color: white;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}
.btn-product-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

/* Pain Points */
.pain-points {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

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

.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}
.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.pain-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.pain-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pain-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* Product Flow (How it works) */
.product-flow {
    padding: var(--section-padding);
}

.flow-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
}

.flow-step {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    flex: 1;
    max-width: 260px;
    position: relative;
    transition: var(--transition);
}
.flow-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.flow-number {
    position: absolute;
    top: -14px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--product-color, var(--color-brand));
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-icon {
    font-size: 1.8rem;
    color: var(--product-color, var(--color-brand));
    margin-bottom: 16px;
}

.flow-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.flow-step p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}

.flow-connector {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 60px;
}

/* Capabilities Grid */
.product-capabilities {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cap-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: var(--transition);
}
.cap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.cap-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.08);
    color: var(--product-color, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.cap-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cap-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* Extracted Fields Section */
.fields-section {
    padding: var(--section-padding);
}

.fields-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.field-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: var(--transition);
}
.field-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.field-card-highlight {
    border-color: var(--color-brand);
    background: var(--color-brand-bg);
}

.field-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.08);
    color: var(--product-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
}
.field-card-highlight .field-icon {
    background: rgba(227, 65, 32, 0.12);
    color: var(--color-brand);
}

.field-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.law-badge {
    display: inline-block;
    background: var(--color-brand);
    color: white;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.field-checks {
    list-style: none;
}
.field-checks li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.82rem;
    color: var(--text-secondary);
}
.field-checks li i {
    color: var(--product-color);
    font-size: 0.65rem;
    flex-shrink: 0;
}
.field-card-highlight .field-checks li i {
    color: var(--color-brand);
}

/* Score Banner */
.score-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px 36px;
    border-right: 4px solid var(--product-color);
}

.score-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(59, 130, 246, 0.08);
    color: var(--product-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.score-text {
    flex: 1;
}
.score-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.score-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.score-stats {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
}
.score-stat {
    text-align: center;
    padding: 12px 20px;
    background: var(--bg-surface);
    border-radius: 12px;
}
.score-stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--product-color, var(--color-brand));
}
.score-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .fields-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .fields-grid { grid-template-columns: 1fr; }
    .score-banner { flex-direction: column; text-align: center; }
    .score-stats { justify-content: center; flex-wrap: wrap; }
}

/* Stock Formula — Bar Style */
.stock-formula {
    padding: 80px 0;
}

.stock-bar {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    margin-bottom: 28px;
}

.stock-bar-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 20px;
    border-left: 1px solid var(--color-border);
}
.stock-bar-item:last-child {
    border-left: none;
}

.stock-bar-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    flex-shrink: 0;
}

.stock-bar-in { background: var(--bg-card); }
.stock-bar-in .stock-bar-icon { background: rgba(16, 185, 129, 0.12); color: #10b981; }

.stock-bar-out { background: var(--bg-card); }
.stock-bar-out .stock-bar-icon { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.stock-bar-result { background: rgba(16, 185, 129, 0.05); }
.stock-bar-result .stock-bar-icon { background: #10b981; color: white; }

.stock-bar-content strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}
.stock-bar-content span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.formula-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding: 18px 24px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
}
.formula-note i {
    color: #10b981;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.formula-note p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .stock-bar { flex-direction: column; }
    .stock-bar-item { border-left: none; border-top: 1px solid var(--color-border); }
    .stock-bar-item:first-child { border-top: none; }
}

/* Dashboard Explainer */
.dashboard-explainer {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.metric-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.metric-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
}
.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.metric-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 12px;
}

.metric-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.metric-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Status Legend */
.status-legend {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
}

.status-legend h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.status-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.status-item {
    text-align: center;
    padding: 16px;
}

.status-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.status-instock {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}
.status-low {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
}
.status-out {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}
.status-tracking {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.status-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .metric-cards { grid-template-columns: repeat(3, 1fr); }
    .status-items { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .metric-cards { grid-template-columns: repeat(2, 1fr); }
    .status-items { grid-template-columns: 1fr; }
}

/* Product Actions Grid */
.product-actions {
    padding: var(--section-padding);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.action-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: var(--transition);
}
.action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.action-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
}
.action-icon-green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.action-icon-red { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.action-icon-gray { background: rgba(100, 116, 139, 0.1); color: #64748b; }
.action-icon-cyan { background: rgba(6, 182, 212, 0.1); color: #06b6d4; }
.action-icon-blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.action-icon-amber { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }

.action-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.action-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .actions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .actions-grid { grid-template-columns: 1fr; }
}

/* Discount Deep Dive */
.discount-section {
    padding: var(--section-padding);
}

.discount-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.discount-step {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    transition: var(--transition);
}
.discount-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.discount-step-num {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #f59e0b;
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.discount-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.discount-step p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Report Sample Thumbnail */
.report-sample {
    position: relative;
    max-width: 280px;
    margin: 0 auto 28px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}
.report-sample:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.report-sample img {
    width: 100%;
    display: block;
}
.report-sample-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    opacity: 0;
    transition: var(--transition);
}
.report-sample:hover .report-sample-overlay {
    opacity: 1;
}
.report-sample-overlay i {
    font-size: 1.5rem;
}
.report-sample-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
}

.discount-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    padding: 28px 36px;
    border-right: 4px solid #f59e0b;
}

.discount-highlight-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.discount-highlight-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.discount-highlight-text p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .discount-flow { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .discount-flow { grid-template-columns: 1fr; }
    .discount-highlight { flex-direction: column; text-align: center; }
}

/* Target Audience */
.target-audience {
    padding: var(--section-padding);
}

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

.audience-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}
.audience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.audience-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 14px;
}

.audience-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.audience-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .audience-grid { grid-template-columns: 1fr; }
}

/* Includes Full Section */
.includes-full {
    padding: var(--section-padding);
    background: rgba(16, 185, 129, 0.03);
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.includes-full-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #10b981;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.includes-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.includes-feature {
    background: var(--bg-card);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}
.includes-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: #10b981;
}

.includes-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 14px;
}

.includes-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.includes-feature p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .includes-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .includes-features-grid { grid-template-columns: 1fr; }
}

/* Document Types */
.doc-types-section {
    padding: var(--section-padding);
}

.doc-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.doc-type-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
}
.doc-type-card:hover {
    border-color: var(--product-color, var(--color-brand));
    transform: translateY(-2px);
}
.doc-type-card i {
    font-size: 1.5rem;
    color: var(--product-color, var(--color-brand));
    display: block;
    margin-bottom: 10px;
}
.doc-type-card span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Testimonials — TEMPORARILY HIDDEN */
.product-testimonial {
    display: none; /* Remove this line to show testimonials */
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.testimonials-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.testimonial-block {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.testimonial-block:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.testimonial-icon {
    font-size: 2rem;
    color: var(--product-color, var(--color-brand));
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-block > p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
    flex: 1;
}

.testimonial-block .testimonial-author {
    justify-content: center;
}

@media (max-width: 1024px) {
    .testimonials-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .testimonials-row { grid-template-columns: 1fr; }
}

/* Product CTA */
.product-cta {
    padding: 80px 0;
    text-align: center;
    position: relative;
}
.product-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
}
.product-cta > .container {
    position: relative;
    z-index: 1;
}

.product-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.product-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}
.product-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Active product in dropdown */
.dropdown-item.active-product {
    background: var(--bg-surface);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .pain-grid { grid-template-columns: repeat(2, 1fr); }
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
    .doc-types-grid { grid-template-columns: repeat(3, 1fr); }
    .flow-steps { flex-wrap: wrap; justify-content: center; }
    .flow-connector { display: none; }
}

@media (max-width: 768px) {
    .product-hero-layout { flex-direction: column; }
    .product-hero-screens { display: none; }
    .product-page-title { font-size: 2.4rem; }
    .product-page-subtitle { font-size: 1.5rem; }
    .product-hero-cta { flex-wrap: wrap; }
    .pain-grid { grid-template-columns: 1fr; }
    .capabilities-grid { grid-template-columns: 1fr; }
    .doc-types-grid { grid-template-columns: repeat(2, 1fr); }
    .flow-steps { flex-direction: column; align-items: center; }
    .product-cta h2 { font-size: 1.8rem; }
    .product-cta .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .product-page-title { font-size: 2rem; }
    .product-page-subtitle { font-size: 1.3rem; }
    .doc-types-grid { grid-template-columns: 1fr; }
}
