/* ==========================================================================
   About & "How it works" (seller) — built on the .svc service-page design.
   Supplements seller-service.css; everything is scoped under .svc and reuses
   its design tokens (--primary, --ink, --line, --shadow, --ease, --radius).
   ========================================================================== */

/* --- Hero with image (about) --- */
.svc .svc-hero-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
@media (max-width: 880px) { .svc .svc-hero-split { grid-template-columns: 1fr; gap: 36px; } }
.svc .svc-hero-media {
    background: linear-gradient(160deg, #fff, #F2F1FF);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
}
.svc .svc-hero-media img { width: 100%; height: auto; display: block; border-radius: 12px; }

/* images inside a split media card */
.svc .split-media img { width: 100%; height: auto; display: block; border-radius: 12px; }

/* --- Stats --- */
.svc .stat {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 24px; text-align: center;
    transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.svc .stat:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.svc .stat img { width: 46px; height: 46px; object-fit: contain; margin-bottom: 14px; }
.svc .stat .n {
    font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 30px;
    color: var(--ink); line-height: 1; margin-bottom: 8px;
}
.svc .stat p { font-size: 14px; color: var(--ink-soft); }

/* --- Icon cards (digital diversity) --- */
.svc .icard {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
    transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.svc .icard:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.svc .icard .ic {
    width: 48px; height: 48px; border-radius: 13px;
    background: var(--primary-50); display: grid; place-items: center; margin-bottom: 16px;
}
.svc .icard .ic img { width: 26px; height: 26px; object-fit: contain; }
.svc .icard h3 { font-size: 17px; margin-bottom: 8px; }
.svc .icard p { font-size: 14px; color: var(--ink-soft); }

/* --- Tabs (how it works) --- */
.svc .svctabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 46px; }
.svc .svctab {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 12px 22px; border-radius: 999px;
    border: 1px solid var(--line); background: #fff; color: var(--ink-soft);
    font-weight: 600; font-size: 15px; font-family: "Inter", system-ui, sans-serif;
    cursor: pointer; transition: .15s var(--ease);
}
.svc .svctab .tn {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--primary-50); color: var(--primary);
    display: grid; place-items: center; font-size: 12px; font-weight: 700;
    transition: .15s var(--ease);
}
.svc .svctab:hover { border-color: #cfd3e2; color: var(--ink); }
.svc .svctab.active {
    background: linear-gradient(135deg, var(--primary), #6A5BFF);
    border-color: transparent; color: #fff;
    box-shadow: 0 12px 26px -12px rgba(79,70,229,.85);
}
.svc .svctab.active .tn { background: rgba(255,255,255,.25); color: #fff; }

.svc .svcpanel { display: none; }
.svc .svcpanel.active { display: block; animation: svcFade .3s var(--ease); }
@keyframes svcFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.svc .panel-cta { text-align: center; margin-top: 42px; }

/* --- Simple centered CTA band --- */
.svc .ctaband {
    background: linear-gradient(170deg, #171D33, var(--slate));
    border-radius: 24px; padding: 60px 40px; text-align: center; color: #fff;
}
.svc .ctaband h2 { font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 14px; }
.svc .ctaband p { color: #AEB6D4; font-size: 17px; max-width: 560px; margin: 0 auto 26px; line-height: 1.6; }
.svc .ctaband .btn-primary { background: #fff; color: var(--primary); }
.svc .ctaband .btn-primary:hover { background: #fff; opacity: .92; }

/* --- Team members (team page) --- */
.svc .tmember {
    background: #fff; border: 1px solid var(--line); border-radius: 6px;
    padding: 16px;
    transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.svc .tmember:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc .tmember .ph {
    width: 100%; aspect-ratio: 1 / 1;
    background: var(--primary-50); overflow: hidden;
}
.svc .tmember .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc .tmember .info { padding: 18px 6px 8px; text-align: center; }
.svc .tmember h3 { font-size: 20px; margin-bottom: 9px; }
.svc .tmember .role { display: inline-block; font-size: 14px; font-weight: 600; color: var(--primary); }

/* keep 2 members per row on mobile (overrides the generic .g3 single-column rule) */
@media (max-width: 620px) {
    .svc .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .svc .team-grid .tmember .info { padding: 16px 12px 18px; }
    .svc .team-grid .tmember h3 { font-size: 16px; margin-bottom: 6px; }
    .svc .team-grid .tmember .role { font-size: 12.5px; }
}

/* --- Testimonial cards (buyer how-it-works) --- */
.svc .tcard {
    background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px;
    display: flex; flex-direction: column; gap: 16px;
    transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.svc .tcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.svc .tcard .stars { color: #F5A623; letter-spacing: 2px; font-size: 15px; }
.svc .tcard p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; flex: 1; margin: 0; }
.svc .tcard .who { display: flex; align-items: center; gap: 12px; }
.svc .tcard .who .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #8b97f0); color: #fff; display: grid; place-items: center; font-weight: 700; flex-shrink: 0; }
.svc .tcard .who b { font-size: 14.5px; color: var(--ink); display: block; line-height: 1.2; }
.svc .tcard .who span { font-size: 12.5px; color: var(--ink-soft); }
