/* ============================================
   Demak Corporate - Personal Service Card page
   Extends asset/css/about.css (nav & footer)
   ============================================ */

.card-page-main {
    background: var(--slate-50);
}

/* ---------- Breadcrumb hero ---------- */
.card-page-hero {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

@media (min-width: 992px) {
    .card-page-hero {
        min-height: 300px;
    }
}

.card-page-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(8, 14, 30, 0.72), rgba(8, 14, 30, 0.55)),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.card-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(15, 23, 42, 0.88) 0%,
        rgba(30, 41, 59, 0.55) 50%,
        rgba(15, 23, 42, 0.42) 100%
    );
    pointer-events: none;
}

.card-page-hero-inner {
    position: relative;
    z-index: 1;
    padding: 48px 1rem 40px;
}

.card-page-title {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.15;
}

.card-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
}

.card-breadcrumb a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}
.card-breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}
.card-breadcrumb .sep {
    opacity: 0.55;
    user-select: none;
}
.card-breadcrumb span.current {
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- Two-column section ---------- */
.card-feature-section {
    padding: 48px 0 64px;
}

.card-visual-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px -24px rgba(15, 23, 42, 0.35);
    aspect-ratio: 4 / 5;
    max-height: 520px;
    background: var(--slate-200);
}

.card-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

@media (max-width: 991.98px) {
    .card-visual-wrap {
        max-height: 420px;
        margin-bottom: 2rem;
    }
}

.card-content-title {
    font-size: clamp(1.65rem, 3.8vw, 2.125rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    line-height: 1.2;
}

.card-content-lead {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--slate-600);
    margin-bottom: 12px;
    font-weight: 500;
}

.card-content-lead:last-of-type {
    margin-bottom: 28px;
}

.card-feature-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.card-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--slate-700);
}

.card-feature-list .check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-top: 2px;
}

.card-price-strike {
    text-decoration: line-through;
    color: var(--slate-400);
    font-weight: 500;
    margin-right: 4px;
}

.card-price-now {
    color: var(--brand);
    font-weight: 800;
}

.card-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f172a;
    color: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.card-pill i {
    font-size: 15px;
    opacity: 0.9;
}

.btn-card-buy {
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 24px -8px rgba(37, 99, 235, 0.55);
    transition: all 0.25s ease;
}

.btn-card-buy:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -8px rgba(37, 99, 235, 0.6);
}

.btn-card-buy i {
    font-size: 17px;
    line-height: 1;
}

/* ============================================
   Business Subscriptions Card — premium layout
   (universal_membership_card.blade.php)
   ============================================ */

.bsc-page {
    background: #fff;
    overflow-x: hidden;
}

/* ---------- Hero ---------- */
.bsc-hero {
    position: relative;
    padding: 17px 0 32px;
}

@media (min-width: 992px) {
    .bsc-hero {
        padding: 56px 0 48px;
    }
}

.bsc-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    background: linear-gradient(180deg, #e8f1ff 0%, #f4f8ff 38%, #ffffff 72%);
}

.bsc-hero-dots {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: min(520px, 90vw);
    height: 220px;
    opacity: 0.35;
    background-image: radial-gradient(circle, #94a3b8 1.2px, transparent 1.2px);
    background-size: 18px 18px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 72%);
}

.bsc-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.45;
}

.bsc-hero-blob-1 {
    width: 280px;
    height: 280px;
    background: #bfdbfe;
    top: -40px;
    right: -60px;
}

.bsc-hero-blob-2 {
    width: 220px;
    height: 220px;
    background: #dbeafe;
    bottom: 10%;
    left: -40px;
}

/* ---------- Card visual (left) ---------- */
.bsc-visual {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px 12px 48px;
    margin-bottom: 8px;
}

@media (min-width: 992px) {
    .bsc-visual {
        min-height: 440px;
        margin-bottom: 0;
    }
}

.bsc-pedestal {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: min(280px, 72%);
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(180deg, #93c5fd 0%, #60a5fa 55%, #3b82f6 100%);
    box-shadow:
        0 18px 36px -12px rgba(37, 99, 235, 0.45),
        inset 0 4px 12px rgba(255, 255, 255, 0.35);
}

.bsc-pedestal::after {
    content: '';
    position: absolute;
    inset: 8px 18px auto;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.bsc-mock-card {
    position: relative;
    z-index: 2;
    width: min(268px, 78vw);
    aspect-ratio: 1 / 1.58;
    border-radius: 18px;
    background: linear-gradient(145deg, #0c2d6b 0%, #061a40 48%, #04122e 100%);
    box-shadow:
        0 28px 60px -18px rgba(6, 26, 64, 0.65),
        0 8px 20px -8px rgba(15, 23, 42, 0.35);
    transform: perspective(900px) rotateY(-14deg) rotateX(6deg) rotateZ(-2deg);
    transform-origin: center bottom;
    overflow: hidden;
}

.bsc-mock-card-wave {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background:
        radial-gradient(ellipse 120% 80% at 10% 90%, rgba(96, 165, 250, 0.55), transparent 55%),
        radial-gradient(ellipse 90% 60% at 100% 0%, rgba(59, 130, 246, 0.35), transparent 50%);
    pointer-events: none;
}

.bsc-mock-card-wave::before {
    content: '';
    position: absolute;
    left: -20%;
    bottom: 18%;
    width: 140%;
    height: 42%;
    background: rgba(37, 99, 235, 0.18);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.bsc-mock-card-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.bsc-mock-logo {
    width: auto;
    height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 18px;
}

.bsc-mock-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.35;
    margin: 0 0 10px;
    max-width: 12em;
}

.bsc-mock-tagline {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 auto;
}

.bsc-mock-member {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
}

.bsc-mock-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.bsc-mock-member strong {
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.bsc-mock-member small {
    display: block;
    font-size: 9px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 2px;
}

.bsc-price-badge {
    position: absolute;
    z-index: 3;
    right: clamp(4px, 8%, 36px);
    bottom: 72px;
    width: 118px;
    height: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 8px;
}

.bsc-price-badge-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bsc-price-badge-label {
    position: relative;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #2563eb;
    line-height: 1.2;
    max-width: 88px;
    margin-bottom: 2px;
}

.bsc-price-badge-now {
    position: relative;
    font-size: 1.65rem;
    font-weight: 900;
    color: #2563eb;
    line-height: 1;
    letter-spacing: -0.02em;
}

.bsc-price-badge-was {
    position: relative;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: line-through;
    margin-top: 2px;
}

/* ---------- Hero content (right) ---------- */
.bsc-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.bsc-tag i {
    font-size: 13px;
}

.bsc-title {
    font-size: clamp(2rem, 5vw, 2.85rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
}

.bsc-title-dark {
    display: block;
    color: #0a1830;
}

.bsc-title-brand {
    display: block;
    color: #2563eb;
}

.bsc-lead {
    font-size: 0.98rem;
    line-height: 1.68;
    color: #475569;
    font-weight: 500;
    margin-bottom: 12px;
}

.bsc-lead:last-of-type {
    margin-bottom: 22px;
}

.bsc-checklist {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.bsc-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.55;
    color: #334155;
    font-weight: 500;
}

.bsc-check-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-top: 2px;
}

.bsc-strike {
    text-decoration: line-through;
    color: #94a3b8;
    font-weight: 500;
    margin-right: 4px;
}

.bsc-price-highlight {
    color: #2563eb;
    font-weight: 800;
}

.bsc-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.bsc-contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    background: #e8f1ff;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    flex: 1 1 200px;
    min-width: 0;
}

.bsc-contact-chip i {
    color: #2563eb;
    font-size: 16px;
    flex-shrink: 0;
}

.bsc-contact-chip:hover {
    background: #dbeafe;
    color: #0f172a;
    box-shadow: 0 8px 20px -14px rgba(37, 99, 235, 0.35);
}

.bsc-btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px 14px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0c2d6b, #061a40);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 32px -12px rgba(6, 26, 64, 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bsc-btn-buy:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -12px rgba(6, 26, 64, 0.6);
}

.bsc-btn-buy-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

/* ---------- Benefits grid ---------- */
.bsc-benefits-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #0d3483 42%);
    padding: 0 0 0;
    margin-top: 8px;
}

@media (min-width: 992px) {
    .bsc-benefits-section {
        margin-top: 0;
        padding-top: 12px;
    }
}

.bsc-benefits-panel {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 24px 24px 24px 24px;
    padding: 36px 28px 40px;
    box-shadow: 0 -8px 40px -20px rgba(15, 23, 42, 0.12);
    margin-bottom: -1px;
}

@media (min-width: 768px) {
    .bsc-benefits-panel {
        padding: 44px 40px 48px 48px;
        border-radius: 28px 28px 28px 28px;
    }
}

.bsc-benefit-item {
    text-align: left;
    height: 100%;
}

.bsc-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.bsc-benefit-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0a1830;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.bsc-benefit-text {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* ---------- Bottom strip ---------- */
.bsc-strip {
    background:  #11357d;
    padding: 18px 0 22px;
}

.bsc-strip-text {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.bsc-strip-text i {
    color: #60a5fa;
    font-size: 15px;
}

.bsc-strip-text strong {
    color: #60a5fa;
    font-weight: 800;
}

@media (max-width: 575.98px) {
    .bsc-visual {
        min-height: 340px;
        padding-bottom: 36px;
    }

    .bsc-mock-card {
        transform: perspective(800px) rotateY(-8deg) rotateX(4deg);
    }

    .bsc-price-badge {
        width: 104px;
        height: 104px;
        right: 2%;
        bottom: 64px;
    }

    .bsc-price-badge-now {
        font-size: 1.45rem;
    }

    .bsc-contact-chip {
        flex: 1 1 100%;
    }

    .bsc-btn-buy {
        width: 100%;
        justify-content: space-between;
    }
}
