/* Shared Products CSS */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --accent: #f43f5e;
    --bg-soft: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    background-color: #fff;
    color: var(--text-dark);
}

/* Common Hero */
.product-hero {
    background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.product-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #2563eb, #db2777);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* .hero-img {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(0,0,0,0.05);
} */

/* Feature Cards (Grid) */
.feature-box {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: #eff6ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 28px;
}

/* Steps / How it Works (QR Specific) */
.step-card {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Ecosystem / Apps (Mobile Specific) */
.ecosystem-section {
    background-color: var(--bg-soft);
    padding: 100px 0;
}

.app-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.app-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.app-content {
    padding: 24px;
}

.app-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.badge-blue { background: #dbeafe; color: #2563eb; }
.badge-pink { background: #fce7f3; color: #db2777; }
.badge-green { background: #dcfce7; color: #16a34a; }

/* Integrations Grid */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.integration-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all 0.2s;
    font-weight: 600;
    color: var(--text-muted);
}

.integration-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
}

/* Support Section */
.support-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    height: 100%;
    border: 1px solid #f1f5f9;
}

.support-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--accent);
}

/* Buttons */
.btn-gradient {
    background: var(--gradient-primary);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 20px -10px rgba(99, 102, 241, 0.5);
    transition: transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    background-color: #fff;
    box-shadow: none !important;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: #eff6ff;
}

.accordion-body {
    padding: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* trust-badges (Schema/SEO) */
.trust-badge-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-badge i {
    color: #16a34a; /* Green check */
    font-size: 1.2rem;
}

/* Related product cards hover */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
