/* Products Section Styles */

/* ── Hero ──────────────────────────────────────────────── */
.product-hero {
    padding: 12rem 2rem 6rem;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.product-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.product-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.product-hero .subhead {
    font-size: 1.25rem;
    opacity: 0.92;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* ── Section helpers ───────────────────────────────────── */
.section-light {
    padding: 6rem 2rem;
    background: #ffffff;
}

.section-muted {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.section-dark {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    text-align: center;
}

.section-dark h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-dark p  { font-size: 1.2rem; opacity: 0.92; margin-bottom: 2rem; }

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

.section-heading {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.section-heading p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Two-column problem/solution ───────────────────────── */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.problem-box, .solution-box {
    padding: 2.5rem;
    border-radius: 12px;
}

.problem-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-left: 4px solid #f97316;
}

.solution-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #2563eb;
}

.problem-box h3, .solution-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.problem-box h3 { color: #c2410c; }
.solution-box h3 { color: #1e40af; }

.problem-box p, .solution-box p,
.problem-box ul, .solution-box ul {
    color: #475569;
    line-height: 1.7;
}

.problem-box ul, .solution-box ul {
    list-style: none;
    padding: 0;
    margin-top: 0.75rem;
}

.problem-box ul li, .solution-box ul li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
}

.problem-box ul li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: bold;
    font-size: 0.85rem;
}

.solution-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* ── Feature cards grid ────────────────────────────────── */
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.product-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(15,23,42,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(15,23,42,0.1);
    border-color: #2563eb;
}

.product-feature-card .card-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #2563eb;
}

.product-feature-card h3 {
    color: #1e40af;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.product-feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── Feature list (checkmark style) ───────────────────── */
.feature-checklist {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
}

.feature-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-checklist li i {
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Steps / How it works ──────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    position: relative;
}

.step-number {
    width: 52px;
    height: 52px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
}

.step-card h3 {
    color: #1e40af;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── Shipment mode badges ──────────────────────────────── */
.ship-mode-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 auto 1.25rem;
}

.badge-parcel  { background: #eff6ff; color: #1e40af; }
.badge-carton  { background: #f0fdf4; color: #166534; }
.badge-pallet  { background: #fff7ed; color: #9a3412; }

/* ── Flow diagram ──────────────────────────────────────── */
.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 2rem 0;
}

.flow-node {
    background: #eff6ff;
    border: 2px solid #2563eb;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 160px;
    color: #1e40af;
    font-weight: 600;
    font-size: 0.95rem;
}

.flow-node span {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: #64748b;
    margin-top: 0.25rem;
}

.flow-node--highlight {
    background: #1e40af;
    color: white;
    border-color: #1e40af;
}

.flow-node--highlight span {
    color: rgba(255,255,255,0.75);
}

.flow-diagram--spaced {
    margin-top: 1.5rem;
}

.flow-arrow {
    color: #2563eb;
    font-size: 1.5rem;
    padding: 0 0.5rem;
    flex-shrink: 0;
}

/* ── Two-mode cards ────────────────────────────────────── */
.mode-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mode-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: border-color 0.25s ease;
}

.mode-card:hover { border-color: #2563eb; }

.mode-card h3 {
    color: #1e40af;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.mode-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.mode-card ul {
    list-style: none;
    padding: 0;
    color: #475569;
}

.mode-card ul li {
    padding: 0.35rem 0 0.35rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.mode-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* ── Tag pills (document types, etc.) ─────────────────── */
.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #bfdbfe;
}

/* ── Retailer / partner logo row ───────────────────────── */
.logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.logo-row img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s ease;
    object-fit: contain;
}

.logo-row img:hover {
    filter: grayscale(0%) opacity(1);
}

/* ── Who it's for callout ──────────────────────────────── */
.audience-callout {
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 0 12px 12px 0;
    padding: 2rem 2.5rem;
    margin: 2rem 0;
}

.audience-callout h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.audience-callout p {
    color: #475569;
    line-height: 1.7;
}

.audience-callout--spaced {
    margin-top: 3rem;
}

/* ── Section heading modifiers ──────────────────────────── */
.section-heading--spaced-sm {
    margin-top: 3rem;
}

.section-heading--spaced {
    margin-top: 4rem;
}

/* ── Tag group modifiers ────────────────────────────────── */
.tag-group--center {
    justify-content: center;
}

/* ── Grid column modifiers ──────────────────────────────── */
.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ── Products group background modifiers ────────────────── */
.products-group--white {
    background: #ffffff;
}

.products-group--muted {
    background: #f8fafc;
}

/* ── Dual-benefits inner padding ────────────────────────── */
.dual-benefits-body {
    padding: 1.25rem 1.5rem;
}

.dual-benefits-body p {
    margin: 0 0 1rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
}

.dual-benefits-body p:last-child {
    margin-bottom: 0;
}

.dual-benefits-body .dual-benefits-list {
    padding: 0;
    margin: 0;
}

/* ── Dual-benefits grid with narrow max-width ───────────── */
.dual-benefits-grid--narrow {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Centered block ─────────────────────────────────────── */
.block-center {
    text-align: center;
}

/* ── Who-its-for grid with top spacing ──────────────────── */
.who-its-for-grid--spaced {
    margin-top: 1.5rem;
}

/* ── Products card grid narrow ──────────────────────────── */
.products-card-grid--narrow {
    max-width: 400px;
}

/* ── Products group bottom padding ─────────────────────── */
.products-group--pb-lg {
    padding-bottom: 6rem;
}

/* ── ERP card link ──────────────────────────────────────── */
.erp-card-link {
    text-decoration: none;
}

.erp-card-link-label {
    color: #2563eb;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ── Inline text link ───────────────────────────────────── */
.text-link {
    color: #2563eb;
}

/* ── Narrow prose block ─────────────────────────────────── */
.prose-narrow {
    max-width: 860px;
    margin: 0 auto;
}

/* ── Inline CTA button group ────────────────────────────── */
.cta-button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ── cta-button secondary (light) variant ───────────────── */
.cta-button--secondary {
    background: #f1f5f9;
    color: #1e293b;
}

/* ── cta-button primary (dark blue) variant ─────────────── */
.cta-button--primary {
    background: #1e40af;
    color: white;
}

/* ── Tiered pricing / setup options ───────────────────── */
.tier-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tier-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
}

.tier-card.featured {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px #2563eb;
}

.tier-label {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.tier-card.featured .tier-label {
    background: #2563eb;
    color: white;
}

.tier-card h3 {
    color: #1e40af;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.tier-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.tier-card ul {
    list-style: none;
    padding: 0;
}

.tier-card ul li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: #475569;
    font-size: 0.95rem;
}

.tier-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* ── Contact / HubSpot form embed ─────────────────────── */
.product-contact-section {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.product-contact-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.product-contact-inner h2 {
    font-size: 2.25rem;
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.product-contact-inner p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hs-form-wrap {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(15,23,42,0.08);
    border: 1px solid #e2e8f0;
    text-align: left;
}

/* ── Products Index ────────────────────────────────────── */
.products-index-hero {
    padding: 12rem 2rem 6rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-index-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.products-index-hero-content {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.products-index-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.products-index-hero .subhead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.products-group {
    padding: 5rem 2rem 3rem;
}

.products-group + .products-group {
    padding-top: 3rem;
}

.products-group-header {
    max-width: 1200px;
    margin: 0 auto 2.5rem;
}

.products-group-label {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.products-group-header h2 {
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.products-group-header p {
    color: #64748b;
    font-size: 1rem;
    max-width: 600px;
}

.products-card-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

.product-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15,23,42,0.1);
    border-color: #2563eb;
}

.product-card-icon {
    width: 52px;
    height: 52px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.product-card-icon i {
    font-size: 1.5rem;
}

.product-card h3 {
    font-size: 1.15rem;
    color: #1e40af;
    margin: 0;
}

.product-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
}

.product-card-link {
    font-size: 0.9rem;
    color: #2563eb;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
}

.product-card.external {
    border-style: dashed;
    background: #fafafa;
}

.product-card.external .product-card-icon {
    background: #f1f5f9;
    color: #64748b;
}

/* ── Resource cards ────────────────────────────────────── */
a.resource-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

a.resource-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.resource-card-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 2px;
}

.resource-card-body h3 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
}

.resource-card-body p {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

.resource-card-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2563eb;
}

/* ── EDI document reference grid ───────────────────────── */
.edi-doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.edi-doc-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.edi-doc-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.edi-doc-number {
    flex-shrink: 0;
    min-width: 48px;
    height: 48px;
    background: #eff6ff;
    color: #1e40af;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.edi-doc-number.edifact {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    min-width: 64px;
    border-radius: 8px;
    background: #f0fdf4;
    color: #166534;
}

.edi-gs-chip.edifact-chip {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}

.edi-gs-chip {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    font-family: monospace;
    margin-bottom: 0.35rem;
}

.edi-doc-body h3 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
}

.edi-doc-body p {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

/* ── Accordion list ────────────────────────────────────── */
.accordion-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accordion-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.accordion-item[open] {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.accordion-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

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

.accordion-summary::after {
    content: '+';
    margin-left: auto;
    font-size: 1.25rem;
    font-weight: 400;
    color: #94a3b8;
    transition: transform 0.2s ease;
    line-height: 1;
}

.accordion-item[open] .accordion-summary::after {
    content: '\2212';
    color: #2563eb;
}

.accordion-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.accordion-item p {
    margin: 0;
    padding: 0 1.25rem 1rem 3.5rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── Dual benefits grid (vendor portal) ────────────────── */
.dual-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.dual-benefits-group {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.dual-benefits-label {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.retailer-label {
    background: #eff6ff;
    color: #1e40af;
    border-bottom: 1px solid #bfdbfe;
}

.vendor-label {
    background: #f0fdf4;
    color: #166534;
    border-bottom: 1px solid #bbf7d0;
}

.store-label {
    background: #fdf4ff;
    color: #6b21a8;
    border-bottom: 1px solid #e9d5ff;
}

.dc-label {
    background: #fff7ed;
    color: #9a3412;
    border-bottom: 1px solid #fed7aa;
}

.dual-benefits-list {
    list-style: none;
    padding: 1.25rem 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.dual-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.dual-benefits-list li span {
    flex-shrink: 0;
    margin-top: 2px;
    color: #2563eb;
    font-weight: 700;
}

@media (max-width: 640px) {
    .dual-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Retailer network section ──────────────────────────── */
.retailer-network {
    max-width: 900px;
    margin: 0 auto;
}

.retailer-network-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.retailer-network-logos img {
    height: 32px;
    width: auto;
    filter: grayscale(100%) opacity(0.55);
    transition: filter 0.3s ease;
    object-fit: contain;
}

.retailer-network-logos img:hover {
    filter: grayscale(0%) opacity(1);
}

.retailer-network-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1rem;
    background: #1e40af;
    color: white;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.retailer-network-note {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 1.25rem;
}

.retailer-network-note a {
    color: #2563eb;
    font-weight: 600;
}

/* ── Who It's For card grid ────────────────────────────── */
.who-its-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.who-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.who-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.who-card-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.who-card p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
    padding-top: 2px;
}

/* ── Nav dropdown group labels ─────────────────────────── */
.dropdown-group-label {
    display: block;
    padding: 0.5rem 1.5rem 0.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #94a3b8;
    cursor: default;
    pointer-events: none;
}

.dropdown-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 0.4rem 0.75rem;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
    .product-hero {
        padding: 9rem 1.25rem 3.5rem;
    }

    .product-hero h1,
    .products-index-hero h1 {
        font-size: 2rem;
    }

    .product-hero .subhead,
    .products-index-hero .subhead {
        font-size: 1rem;
    }

    .section-light,
    .section-muted,
    .section-dark {
        padding: 3rem 1.25rem;
    }

    .section-heading h2 {
        font-size: 1.75rem;
    }

    .problem-solution,
    .mode-cards,
    .tier-cards {
        grid-template-columns: 1fr;
    }

    .flow-diagram {
        flex-direction: column;
        align-items: center;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .flow-node {
        min-width: 0;
        width: 100%;
        max-width: 260px;
    }

    .feature-checklist {
        grid-template-columns: 1fr;
    }

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

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

    .products-group {
        padding: 3rem 1.25rem 2rem;
    }

    .products-card-grid {
        grid-template-columns: 1fr;
    }

    .products-index-hero {
        padding: 9rem 1.25rem 3.5rem;
    }

    .product-contact-section {
        padding: 3rem 1.25rem;
    }

    .hs-form-wrap {
        padding: 1.5rem;
    }

    .contact-layout {
        grid-template-columns: 1fr !important;
    }

    .grid-cols-2,
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }

    .who-its-for-grid {
        grid-template-columns: 1fr;
    }
}
