
/*--------------shop----------------*/
.sch-hero {
    direction: rtl;
    background: #272B30;
    position: relative;
    overflow: hidden;
    padding: 200px 0;
}
@media (max-width: 767px){
    .sch-hero{
        padding: 150px 0;
    }
}

.sch-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(252, 190, 13, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 190, 13, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.sch-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #FCBE0D 25%, #F9DB81 50%, #FCBE0D 75%, transparent 100%);
}

.sch-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.sch-breadcrumb {
    display: inline-flex;
    align-items: center;
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    gap: 0;
}

.sch-breadcrumb li {
    font-size: 12px;
    color: #939598;
}

.sch-breadcrumb li + li {
    margin-right: 6px;
}

.sch-breadcrumb li + li::before {
    content: '›';
    margin-left: 6px;
    color: rgba(255, 255, 255, 0.15);
}

.sch-breadcrumb a {
    color: #939598;
    text-decoration: none;
    transition: color 0.2s;
}

.sch-breadcrumb a:hover {
    color: #FCBE0D;
}

.sch-breadcrumb .sch-bc-active {
    color: #FCBE0D;
    font-weight: 600;
}

.sch-heading {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 900;
    color: #F5F7F6;
    line-height: 1.3;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}
.sch-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 24px;
}

.sch-divider-line {
    width: 48px;
    height: 2px;
    background: rgba(252, 190, 13, 0.3);
    border-radius: 2px;
}

.sch-divider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FCBE0D;
    box-shadow: 0 0 10px rgba(252, 190, 13, 0.6);
}

.sch-desc {
    font-size: clamp(13px, 1.7vw, 15px);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.9;
    max-width: 540px;
    margin: 0 auto;
}

@media (max-width: 575px) {
    .sch-breadcrumb {
        margin-bottom: 24px;
    }

    .sch-divider-line {
        width: 32px;
    }
}

.gc-lineup {
    direction: rtl;
    background: #F5F7F6;
    padding: clamp(56px, 8vw, 96px) 0;
}

.gc-section-head {
    text-align: center;
    margin-bottom: clamp(32px, 5vw, 52px);
}

.gc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #FCBE0D;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.gc-eyebrow::before, .gc-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: #FCBE0D;
    opacity: 0.5;
}

.gc-section-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 10px;
}

.gc-section-desc {
    font-size: 14px;
    color: #939598;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.7;
}

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

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

@media (max-width: 480px) {
    .gc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.gc-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 24px 16px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FCBE0D, #F9DB81);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.gc-card:hover {
    box-shadow: 0 12px 36px rgba(47, 50, 53, 0.10);
    transform: translateY(-4px);
    border-color: rgba(252, 190, 13, 0.2);
}

.gc-card:hover::before {
    transform: scaleX(1);
}

.gc-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(252, 190, 13, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: background 0.2s;
}

.gc-card:hover .gc-card-icon {
    background: rgba(252, 190, 13, 0.18);
}

.gc-card-icon i {
    font-size: 22px;
    color: #FCBE0D;
}

.gc-card-weight {
    font-size: 15px;
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 6px;
    line-height: 1.2;
}

.gc-card-gram {
    font-size: 11px;
    font-weight: 600;
    color: #939598;
    margin-bottom: 10px;
}

.gc-card-desc {
    font-size: 12px;
    color: #939598;
    line-height: 1.65;
    margin-bottom: 14px;
    flex: 1;
}

.gc-card-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(252, 190, 13, 0.10);
    color: #7a5c00;
    border: 1px solid rgba(252, 190, 13, 0.25);
}

/* highlight the popular card */
.gc-card.gc-popular {
    border-color: rgba(252, 190, 13, 0.35);
    box-shadow: 0 4px 20px rgba(252, 190, 13, 0.12);
}

.gc-card.gc-popular::before {
    transform: scaleX(1);
}

.gc-popular-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #FCBE0D, #F9DB81);
    color: #2F3235;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 100px;
}

@media (max-width: 480px) {
    .gc-card {
        padding: 18px 12px 16px;
    }

    .gc-card-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
    }

    .gc-card-icon i {
        font-size: 18px;
    }

    .gc-card-weight {
        font-size: 13px;
    }

    .gc-card-desc {
        font-size: 11px;
    }
}

.gc-table-section {
    direction: rtl;
    background: #2F3235;
    padding: clamp(48px, 7vw, 80px) 0;
    position: relative;
    overflow: hidden;
}

.gc-table-section > .gc-svg-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gc-table-section > .container {
    position: relative;
    z-index: 1;
}

.gc-dot {
    animation: gcFloat linear infinite;
    opacity: 0;
}

@keyframes gcFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-120px) scale(0.5);
        opacity: 0;
    }
}

.gc-ring {
    animation: gcPulse ease-out infinite;
    transform-origin: center;
}

@keyframes gcPulse {
    0% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.gc-line {
    animation: gcDrift linear infinite;
}

@keyframes gcDrift {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 0.4;
    }
    100% {
        transform: translateX(-80px);
        opacity: 0;
    }
}

.gc-table-head {
    text-align: center;
    margin-bottom: 36px;
}

.gc-table-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: #F5F7F6;
    margin-bottom: 8px;
}

.gc-table-sub {
    font-size: 13px;
    color: #939598;
}

.gc-table-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.gc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    direction: rtl;
}

.gc-table thead tr {
    background: #272B30;
}

.gc-table thead th {
    padding: 16px 20px;
    font-size: 12px;
    font-weight: 700;
    color: #FCBE0D;
    letter-spacing: 0.05em;
    border: none;
    text-align: right;
}

.gc-table tbody tr {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.15s;
}

.gc-table tbody tr:hover {
    background: rgba(252, 190, 13, 0.04);
}

.gc-table tbody td {
    padding: 14px 20px;
    color: #F5F7F6;
    border: none;
    text-align: right;
}

.gc-table tbody td:first-child {
    font-weight: 700;
    color: #FCBE0D;
}

.gc-table tbody td:nth-child(2) {
    color: #939598;
    font-size: 13px;
}

.gc-table-note {
    font-size: 12px;
    color: #939598;
    margin-top: 16px;
    text-align: right;
}

@media (max-width: 575px) {
    .gc-table thead th,
    .gc-table tbody td {
        padding: 12px 14px;
        font-size: 12px;
    }
}

.pc-wrap {
    direction: rtl;
    font-family: inherit;
}

.pc-intro {
    background: #fff;
    padding: clamp(48px, 7vw, 80px) 0;
}

.pc-intro-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

.pc-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #FCBE0D;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.pc-section-eyebrow::before, .pc-section-eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: #FCBE0D;
    opacity: 0.5;
}

.pc-intro-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 16px;
    line-height: 1.35;
}

.pc-intro-title span {
    background: linear-gradient(110deg, #FCBE0D, #c9980a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pc-intro-text {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 14px;
}

.pc-intro-text a {
    color: #c9980a;
    text-decoration: none;
    font-weight: 600;
}

.pc-intro-text a:hover {
    text-decoration: underline;
}

.pc-intro-text strong {
    color: #2F3235;
}

.pc-why {
    background: #F5F7F6;
    padding: clamp(48px, 7vw, 80px) 0;
}

.pc-section-head {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.pc-section-title {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 8px;
}

.pc-section-sub {
    font-size: 14px;
    color: #939598;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.7;
    padding: 0 5px;
}

.pc-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 900px) {
    .pc-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pc-why-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.pc-feat-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 24px 18px;
    text-align: center;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.pc-feat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FCBE0D, #F9DB81);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.pc-feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(47, 50, 53, 0.10);
}

.pc-feat-card:hover::after {
    transform: scaleX(1);
}

.pc-feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(252, 190, 13, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.pc-feat-icon i {
    font-size: 22px;
    color: #FCBE0D;
}

.pc-feat-title {
    font-size: 14px;
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 8px;
}

.pc-feat-desc {
    font-size: 12px;
    color: #939598;
    line-height: 1.7;
}

.pc-identify {
    background: #2F3235;
    padding: clamp(48px, 7vw, 80px) 0;
    position: relative;
}

.pc-identify-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

.pc-identify .pc-section-title {
    color: #F5F7F6;
}

.pc-identify .pc-section-sub {
    color: #939598;
}

.pc-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
}

@media (max-width: 600px) {
    .pc-checklist {
        grid-template-columns: 1fr;
    }
}

.pc-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 16px;
    transition: background 0.2s;
}

.pc-check-item:hover {
    background: rgba(252, 190, 13, 0.06);
}

.pc-check-dot {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(252, 190, 13, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.pc-check-dot::after {
    content: '✓';
    font-size: 13px;
    font-weight: 800;
    color: #FCBE0D;
}

.pc-check-text {
    font-size: 13px;
    color: #F5F7F6;
    line-height: 1.6;
}

.pc-check-text strong {
    color: #FCBE0D;
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
}

.pc-weight-guide {
    background: #F5F7F6;
    padding: clamp(48px, 7vw, 80px) 0;
}

.pc-weight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 700px) {
    .pc-weight-cards {
        grid-template-columns: 1fr;
    }
}

.pc-weight-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 28px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
}

.pc-weight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(47, 50, 53, 0.10);
}

.pc-weight-card-num {
    font-size: 40px;
    font-weight: 900;
    color: rgba(252, 190, 13, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.pc-weight-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 6px;
}

.pc-weight-card-range {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #7a5c00;
    background: rgba(252, 190, 13, 0.10);
    border: 1px solid rgba(252, 190, 13, 0.25);
    border-radius: 100px;
    padding: 3px 10px;
    margin-bottom: 12px;
}

.pc-weight-card-desc {
    font-size: 13px;
    color: #939598;
    line-height: 1.7;
}

.pc-weight-card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FCBE0D, #F9DB81);
    border-radius: 0 18px 18px 0;
}

.pc-compare {
    background: #272B30;
    padding: clamp(48px, 7vw, 80px) 0;
    position: relative;
    overflow: hidden;
}

.pc-compare::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(252, 190, 13, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 190, 13, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.pc-compare-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.pc-compare .pc-section-title {
    color: #F5F7F6;
    text-align: center;
}

.pc-compare .pc-section-sub {
    color: #939598;
    text-align: center;
    max-width: 100%;
}

.pc-compare-table-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 32px;
}

.pc-compare-table {
    width: 100%;
    border-collapse: collapse;
    direction: rtl;
    font-size: 14px;
}

.pc-compare-table thead tr {
    background: #1e2124;
}

.pc-compare-table thead th {
    padding: 16px 20px;
    font-size: 12px;
    font-weight: 700;
    color: #FCBE0D;
    letter-spacing: 0.05em;
    border: none;
    text-align: right;
}

.pc-compare-table thead th:first-child {
    color: #939598;
}

.pc-compare-table tbody tr {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.15s;
}

.pc-compare-table tbody tr:hover {
    background: rgba(252, 190, 13, 0.04);
}

.pc-compare-table tbody td {
    padding: 14px 20px;
    color: #F5F7F6;
    border: none;
    text-align: right;
    font-size: 13px;
}

.pc-compare-table tbody td:first-child {
    color: #939598;
    font-weight: 600;
    font-size: 12px;
}

.pc-compare-table tbody td:nth-child(2) {
    color: #FCBE0D;
    font-weight: 600;
}

@media (max-width: 575px) {
    .pc-compare-table thead th,
    .pc-compare-table tbody td {
        padding: 11px 12px;
        font-size: 12px;
    }
}

.pc-tips {
    background: #fff;
    padding: clamp(48px, 7vw, 80px) 0;
}

.pc-tips-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

.pc-tips-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.pc-tip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #F5F7F6;
    border-radius: 14px;
    border-right: 4px solid #FCBE0D;
    font-size: 14px;
    color: #2F3235;
    line-height: 1.6;
    transition: background 0.2s;
}

.pc-tip-item:hover {
    background: rgba(252, 190, 13, 0.08);
}

.pc-tip-item i {
    font-size: 18px;
    color: #FCBE0D;
    flex-shrink: 0;
}

.pc-cta-note {
    margin-top: 32px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(252, 190, 13, 0.08), rgba(249, 219, 129, 0.05));
    border: 1px solid rgba(252, 190, 13, 0.2);
    border-radius: 16px;
    font-size: 14px;
    color: #2F3235;
    line-height: 1.8;
}

.pc-cta-note a {
    color: #c9980a;
    font-weight: 700;
    text-decoration: none;
}

.pc-cta-note a:hover {
    text-decoration: underline;
}

.mb-wrap {
    direction: rtl;
    font-family: inherit;
}

.mb-wrap *, .mb-wrap *::before, .mb-wrap *::after {
    box-sizing: border-box;
}

.mb-wrap a {
    color: #c9980a;
    text-decoration: none;
    font-weight: 600;
}

.mb-wrap a:hover {
    text-decoration: underline;
}

.mb-section {
    padding: clamp(52px, 8vw, 88px) 0;
}

.mb-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 28px);
}

.mb-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 4px 14px;
    border-radius: 100px;
    background: rgba(252, 190, 13, 0.12);
    color: #a07a00;
    border: 1px solid rgba(252, 190, 13, 0.3);
    margin-bottom: 14px;
}

.mb-hero {
    background: #272B30;
    position: relative;
    overflow: hidden;
    padding: clamp(52px, 8vw, 88px) 0;
}

.mb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 15% 50%, rgba(252, 190, 13, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.mb-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 28px);
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 40px;
    align-items: center;
}

@media (max-width: 700px) {
    .mb-hero-inner {
        grid-template-columns: 1fr;
    }
}

.mb-hero-content {
}

.mb-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #FCBE0D;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.mb-hero-tag::before {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #FCBE0D, transparent);
}

.mb-hero-title {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 900;
    color: #F5F7F6;
    line-height: 1.3;
    margin-bottom: 16px;
}

.mb-hero-title em {
    font-style: normal;
    color: #FCBE0D;
}

.mb-hero-desc {
    font-size: 14px;
    color: #939598;
    line-height: 1.9;
    margin-bottom: 0;
}

.mb-hero-desc strong {
    color: #F5F7F6;
}

.mb-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.mb-bar {
    border-radius: 8px;
    background: linear-gradient(135deg, #c9980a 0%, #FCBE0D 40%, #F9DB81 60%, #c9980a 100%);
    position: relative;
    overflow: hidden;
}

.mb-bar::after {
    content: '';
    position: absolute;
    top: 25%;
    left: -60%;
    width: 30%;
    height: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-20deg);
    filter: blur(2px);
}

.mb-bar-1 {
    width: 200px;
    height: 52px;
    opacity: 0.95;
}

.mb-bar-2 {
    width: 160px;
    height: 44px;
    opacity: 0.75;
}

.mb-bar-3 {
    width: 120px;
    height: 36px;
    opacity: 0.5;
}

.mb-info-box {
    margin-top: 28px;
    padding: 20px 24px;
    border: 1px solid rgba(252, 190, 13, 0.2);
    border-radius: 14px;
    background: rgba(252, 190, 13, 0.05);
    font-size: 13px;
    color: #939598;
    line-height: 1.8;
}

.mb-info-box strong {
    color: #FCBE0D;
}

.mb-features {
    background: #F5F7F6;
}

.mb-feat-header {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.mb-feat-title {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 8px;
}

.mb-feat-sub {
    font-size: 14px;
    color: #939598;
    max-width: 400px;
    margin: 0 auto;
}

.mb-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

@media (max-width: 800px) {
    .mb-feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .mb-feat-grid {
        grid-template-columns: 1fr;
    }
}

.mb-feat-item {
    background: #fff;
    border-radius: 18px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.mb-feat-item:hover {
    box-shadow: 0 10px 28px rgba(47, 50, 53, 0.09);
    transform: translateY(-3px);
}

.mb-feat-num {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    color: rgba(252, 190, 13, 0.12);
}

.mb-feat-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #272B30;
    flex-shrink: 0;
}

.mb-feat-icon-wrap i {
    font-size: 20px;
    color: #FCBE0D;
}

.mb-feat-name {
    font-size: 14px;
    font-weight: 800;
    color: #2F3235;
}

.mb-feat-desc {
    font-size: 12px;
    color: #939598;
    line-height: 1.7;
    margin: 0;
}

.mb-audience {
    background: #2F3235;
}

.mb-aud-header {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.mb-aud-title {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 800;
    color: #F5F7F6;
    margin-bottom: 8px;
}

.mb-aud-sub {
    font-size: 14px;
    color: #939598;
    margin: 0 auto;
    line-height: 1.7;
}

.mb-aud-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (max-width: 560px) {
    .mb-aud-grid {
        grid-template-columns: 1fr;
    }
}

.mb-aud-card {
    border-radius: 18px;
    padding: 24px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: background 0.2s, border-color 0.2s;
}

.mb-aud-card:hover {
    background: rgba(252, 190, 13, 0.06);
    border-color: rgba(252, 190, 13, 0.15);
}

.mb-aud-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(252, 190, 13, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mb-aud-icon i {
    font-size: 22px;
    color: #FCBE0D;
}

.mb-aud-name {
    font-size: 14px;
    font-weight: 800;
    color: #F5F7F6;
    margin-bottom: 5px;
}

.mb-aud-desc {
    font-size: 12px;
    color: #939598;
    line-height: 1.7;
    margin: 0;
}

.mb-process {
    background: #fff;
}

.mb-proc-header {
    margin-bottom: clamp(28px, 4vw, 44px);
}

.mb-proc-title {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 8px;
}

.mb-proc-sub {
    font-size: 14px;
    color: #939598;
    line-height: 1.7;
}

.mb-proc-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 32px;
}

.mb-proc-track::before {
    content: '';
    position: absolute;
    top: 28px;
    right: calc(100% / 6);
    left: calc(100% / 6);
    height: 2px;
    background: repeating-linear-gradient(90deg, #FCBE0D 0, #FCBE0D 8px, transparent 8px, transparent 16px);
}

@media (max-width: 580px) {
    .mb-proc-track {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mb-proc-track::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 70%;
        background: repeating-linear-gradient(to bottom, #FCBE0D 0, #FCBE0D 8px, transparent 8px, transparent 16px);
        right: 20px;
    }
}

.mb-proc-step {
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.mb-proc-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #272B30;
    border: 3px solid #FCBE0D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 900;
    color: #FCBE0D;
}

.mb-proc-step-name {
    font-size: 14px;
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 8px;
}

.mb-proc-step-desc {
    font-size: 12px;
    color: #939598;
    line-height: 1.7;
}

@media (max-width: 580px) {
    .mb-proc-step {
        gap: 14px;
        align-items: flex-start;
        text-align: right;
        padding: 0;
    }

    .mb-proc-circle {
        margin: 0;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .mb-proc-step-name {
        margin-top: 4px;
        margin-right: 40px;
    }

    .mb-proc-step-desc {
        margin-right: 40px;
    }
}

.mb-proc-note {
    font-size: 12px;
    color: #939598;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 16px;
    margin-top: 8px;
}

.mb-faq {
    background: #272B30;
}

.mb-faq-header {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.mb-faq-title {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 800;
    color: #F5F7F6;
    margin-bottom: 8px;
}

.mb-faq-sub {
    font-size: 14px;
    color: #939598;
}

.mb-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mb-faq-item {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.mb-faq-item input[type="checkbox"] {
    display: none;
}

.mb-faq-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #F5F7F6;
    background: rgba(255, 255, 255, 0.03);
    user-select: none;
    transition: background 0.2s;
    line-height: 1.5;
}

.mb-faq-label:hover {
    background: rgba(252, 190, 13, 0.06);
}

.mb-faq-arrow {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(252, 190, 13, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.2s;
}

.mb-faq-arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-left: 2px solid #FCBE0D;
    border-bottom: 2px solid #FCBE0D;
    transform: rotate(-45deg) translate(1px, -1px);
    display: block;
}

.mb-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 20px;
    font-size: 13px;
    color: #939598;
    line-height: 1.85;
    background: rgba(0, 0, 0, 0.12);
}

.mb-faq-item input:checked ~ .mb-faq-label .mb-faq-arrow {
    transform: rotate(-180deg);
    background: rgba(252, 190, 13, 0.18);
}

.mb-faq-item input:checked ~ .mb-faq-body {
    max-height: 300px;
    padding: 16px 20px;
}

.mb-faq-footer {
    margin-top: 28px;
    text-align: center;
    font-size: 13px;
    color: #939598;
}

.glc-wrap {
    direction: rtl;
    font-family: inherit;
}

.glc-wrap *, .glc-wrap *::before, .glc-wrap *::after {
    box-sizing: border-box;
}

.glc-wrap a {
    color: #c9980a;
    text-decoration: none;
    font-weight: 600;
}

.glc-wrap a:hover {
    text-decoration: underline;
}

.glc-section {
    padding: 46px 0;
}

.glc-container {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 28px);
}

.glc-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #7a5c00;
    background: rgba(252, 190, 13, 0.10);
    border: 1px solid rgba(252, 190, 13, 0.25);
    border-radius: 100px;
    padding: 4px 14px;
    margin-bottom: 14px;
}

.glc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #7a5c00;
    background: rgba(252, 190, 13, 0.10);
    border: 1px solid rgba(252, 190, 13, 0.25);
    border-radius: 100px;
    padding: 4px 14px;
    margin-bottom: 14px;
}

.glc-section-title {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 8px;
}

.glc-section-sub {
    font-size: 14px;
    color: #939598;
    max-width: 460px;
    line-height: 1.7;
}

.glc-head-center {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.glc-head-center .glc-section-sub {
    margin: 0 auto;
}

.glc-types-svg-bg {
    position: absolute
}

@keyframes glcCoinSpin {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

@keyframes glcGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.93);
        transform-origin: 130px 130px;
    }
    50% {
        opacity: 0.9;
        transform: scale(1);
        transform-origin: 130px 130px;
    }
}

@keyframes glcRingPulse {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.35;
        transform: scale(1.04);
    }
}

@keyframes glcTickSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes glcFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glc-intro {
    background: linear-gradient(145deg, #1a1d20 0%, #272B30 55%, #2f3438 100%);
    padding: clamp(60px, 9vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

.glc-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(252, 190, 13, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(252, 190, 13, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.glc-intro-inner {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 28px);
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 56px;
    align-items: center;
}

@media (max-width: 760px) {
    .glc-intro-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .glc-intro-visual {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .glc-intro-visual {
        display: none;
    }
}

.glc-intro-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #FCBE0D;
    margin-bottom: 18px;
}

.glc-intro-tag::before, .glc-intro-tag::after {
    content: '';
    display: block;
    width: 28px;
    height: 1.5px;
    background: rgba(252, 190, 13, 0.4);
}

.glc-intro-title {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 900;
    color: #F5F7F6;
    line-height: 1.2;
    margin-bottom: 18px;
}

.glc-intro-title em {
    font-style: normal;
    background: linear-gradient(110deg, #FCBE0D 20%, #F9DB81 60%, #c9980a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glc-intro-desc {
    font-size: 14px;
    color: #9aa0a6;
    line-height: 1.95;
    margin-bottom: 24px;
    max-width: 500px;
    text-align: justify;
}

.glc-intro-desc strong {
    color: #F5F7F6;
    font-weight: 700;
}

.glc-intro-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.glc-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #F5F7F6;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(252, 190, 13, 0.25);
    transition: background 0.2s, border-color 0.2s;
}

.glc-pill:hover {
    background: rgba(252, 190, 13, 0.1);
    border-color: rgba(252, 190, 13, 0.4);
}

.glc-pill::before {
    content: '✓';
    color: #FCBE0D;
    font-weight: 900;
    font-size: 11px;
}

/* stat strip */
.glc-intro-stats {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.glc-intro-stat {
    flex: 1;
    padding: 16px 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.glc-intro-stat:last-child {
    border-left: none;
}

.glc-intro-stat-num {
    font-size: 22px;
    font-weight: 900;
    color: #FCBE0D;
    line-height: 1;
    margin-bottom: 3px;
}

.glc-intro-stat-lbl {
    font-size: 11px;
    color: #6b7280;
}

@media (max-width: 480px) {
    .glc-intro-stats {
        flex-direction: column;
    }

    .glc-intro-stat {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .glc-intro-stat:first-child {
        border-top: none;
    }
}

/* coin SVG visual */
.glc-intro-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glc-coin-svg {
    width: 260px;
    height: 260px;
    overflow: visible;
}

.glc-coin-outer-ring {
    animation: glcRingPulse 3s ease-in-out infinite;
    transform-origin: center;
}

.glc-coin-tick-ring {
    animation: glcTickSpin 18s linear infinite;
    transform-origin: center;
}

.glc-coin-glow circle {
    animation: glcGlow 2.5s ease-in-out infinite;
}

/* ══ COIN TYPES ══ */
.glc-types {
    background: #fff;
}

.glc-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 720px) {
    .glc-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 460px) {
    .glc-types-grid {
        grid-template-columns: 1fr;
    }
}

.glc-type-card {
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    padding: 24px 20px;
    background: #F5F7F6;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.glc-type-card:hover {
    box-shadow: 0 12px 32px rgba(47, 50, 53, 0.10);
    transform: translateY(-4px);
    border-color: rgba(252, 190, 13, 0.4);
}

.glc-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #FCBE0D, #F9DB81);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.glc-type-card:hover::before {
    transform: scaleX(1);
}

.glc-type-card-num {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    color: rgba(252, 190, 13, 0.15);
}

.glc-type-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff;
    border: 1.5px solid rgba(252, 190, 13, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.glc-type-icon-wrap i {
    font-size: 22px;
    color: #c9980a;
}

.glc-type-name {
    font-size: 14px;
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 7px;
}

.glc-type-desc {
    font-size: 12px;
    color: #939598;
    line-height: 1.7;
    margin: 0;
}

/* last card centered when odd */
@media (min-width: 721px) {
    .glc-type-card:last-child:nth-child(3n+2) {
        grid-column: 2;
    }

    .glc-type-card:last-child:nth-child(3n+1):not(:first-child) {
        grid-column: 2;
    }
}

.glc-why {
    background: #fff;
    position: relative
}

.glc-why-head {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.glc-why-title {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 8px;
}

.glc-why-sub {
    font-size: 14px;
    color: #939598;
    max-width: 400px;
    margin: 0 auto;
}

.glc-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 560px) {
    .glc-why-grid {
        grid-template-columns: 1fr;
    }
}

.glc-why-card {
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
}

.glc-why-card-1 {
    background: #272B30;
}

.glc-why-card-2 {
    background: #F5F7F6;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.glc-why-card-3 {
    background: #F5F7F6;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.glc-why-card-4 {
    background: linear-gradient(135deg, rgba(252, 190, 13, 0.12), rgba(249, 219, 129, 0.06));
    border: 1.5px solid rgba(252, 190, 13, 0.2);
}

.glc-why-card-icon {
    font-size: 32px;
    margin-bottom: 14px;
    display: block;
    line-height: 1;
}

.glc-why-card-1 .glc-why-card-icon i {
    color: #FCBE0D;
}

.glc-why-card-2 .glc-why-card-icon i,
.glc-why-card-3 .glc-why-card-icon i {
    color: #2F3235;
}

.glc-why-card-4 .glc-why-card-icon i {
    color: #c9980a;
}

.glc-why-card-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.glc-why-card-1 .glc-why-card-title {
    color: #F5F7F6;
}

.glc-why-card-2 .glc-why-card-title,
.glc-why-card-3 .glc-why-card-title,
.glc-why-card-4 .glc-why-card-title {
    color: #2F3235;
}

.glc-why-card-desc {
    font-size: 13px;
    line-height: 1.75;
    margin: 0;
}

.glc-why-card-1 .glc-why-card-desc {
    color: #939598;
}

.glc-why-card-2 .glc-why-card-desc,
.glc-why-card-3 .glc-why-card-desc,
.glc-why-card-4 .glc-why-card-desc {
    color: #666;
}

.glc-why-note {
    margin-top: 20px;
    font-size: 12px;
    color: #939598;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 16px;
}

/* ══ PROCESS ══ */
.glc-process {
    background: #fff;
}

.glc-proc-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 28px;
}

.glc-proc-desc strong {
    color: #2F3235;
}

.glc-proc-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 580px) {
    .glc-proc-steps {
        grid-template-columns: 1fr;
    }
}

.glc-proc-item {
    background: #F5F7F6;
    border-radius: 20px;
    padding: 24px 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.glc-proc-item:hover {
    box-shadow: 0 10px 28px rgba(47, 50, 53, 0.08);
    transform: translateY(-3px);
}

@media (max-width: 580px) {
    .glc-proc-item {
        flex-direction: row;
        align-items: flex-start;
    }
}

.glc-proc-num {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 11px;
    background: #272B30;
    color: #FCBE0D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
}

.glc-proc-name {
    font-size: 14px;
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 6px;
}

.glc-proc-pdesc {
    font-size: 12px;
    color: #939598;
    line-height: 1.75;
    margin: 0;
}

.glc-proc-note {
    margin-top: 14px;
    font-size: 12px;
    color: #939598;
}


/* ══ COMPARE ══ */
.glc-compare {
    background: #F5F7F6;
}

.glc-compare-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 20px rgba(47, 50, 53, 0.07);
    margin-top: 15px;
}

.glc-compare-table {
    width: 100%;
    border-collapse: collapse;
    direction: rtl;
    font-size: 14px;
}

.glc-compare-table thead tr {
    background: #272B30;
}

.glc-compare-table thead th {
    padding: 16px 20px;
    font-size: 12px;
    font-weight: 700;
    color: #FCBE0D;
    letter-spacing: 0.04em;
    text-align: right;
    border: none;
}

.glc-compare-table tbody tr {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

.glc-compare-table tbody tr:hover {
    background: rgba(252, 190, 13, 0.04);
}

.glc-compare-table tbody td {
    padding: 14px 20px;
    border: none;
    font-size: 13px;
    text-align: right;
}

.glc-compare-table tbody td:first-child {
    color: #555;
}

.glc-compare-table tbody td:nth-child(2) {
    font-weight: 800;
    color: #2F3235;
}

.glc-compare-table tbody td:nth-child(3) {
    color: #939598;
}

@media (max-width: 580px) {
    .glc-compare-table thead th,
    .glc-compare-table tbody td {
        padding: 12px 12px;
        font-size: 12px;
    }
}


/* ══ FAQ ══ (matches melted-bars style) */
.glc-faq {
    background: #272B30;
    padding: clamp(52px, 8vw, 88px) 0;
}

.glc-faq-inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 28px);
}

.glc-faq-head {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.glc-faq-title {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 800;
    color: #F5F7F6;
    margin-bottom: 8px;
}

.glc-faq-sub {
    font-size: 14px;
    color: #939598;
}

.glc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.glc-faq-item {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.glc-faq-item input[type="checkbox"] {
    display: none;
}

.glc-faq-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #F5F7F6;
    background: rgba(255, 255, 255, 0.03);
    user-select: none;
    transition: background 0.2s;
    line-height: 1.5;
}

.glc-faq-label:hover {
    background: rgba(252, 190, 13, 0.06);
}

.glc-faq-arrow {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(252, 190, 13, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.2s;
}

.glc-faq-arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-left: 2px solid #FCBE0D;
    border-bottom: 2px solid #FCBE0D;
    transform: rotate(-45deg) translate(1px, -1px);
    display: block;
}

.glc-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
    padding: 0 20px;
    font-size: 13px;
    color: #939598;
    line-height: 1.85;
    background: rgba(0, 0, 0, 0.12);
}

.glc-faq-item input:checked ~ .glc-faq-label .glc-faq-arrow {
    transform: rotate(-180deg);
    background: rgba(252, 190, 13, 0.18);
}

.glc-faq-item input:checked ~ .glc-faq-body {
    max-height: 300px;
    padding: 16px 20px;
}

.glc-faq-footer {
    margin-top: 28px;
    text-align: center;
    font-size: 13px;
    color: #939598;
}
.zb-wrap {
    direction: rtl;
    font-family: inherit;
}

.zb-wrap *, .zb-wrap *::before, .zb-wrap *::after {
    box-sizing: border-box;
}

.zb-wrap a {
    color: #c9980a;
    text-decoration: none;
    font-weight: 600;
}

.zb-wrap a:hover {
    text-decoration: underline;
}

.zb-section {
    padding: clamp(52px, 8vw, 88px) 0;
}

.zb-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 28px);
}

.zb-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 4px 14px;
    border-radius: 100px;
    background: rgba(252, 190, 13, 0.12);
    color: #a07a00;
    border: 1px solid rgba(252, 190, 13, 0.25);
    margin-bottom: 14px;
}

/* ══ HERO ══ */
@keyframes zbBarFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg)
    }
    50% {
        transform: translateY(-8px) rotate(-2deg)
    }
}

@keyframes zbSealPulse {
    0%, 100% {
        opacity: .5;
        transform: scale(1)
    }
    50% {
        opacity: 1;
        transform: scale(1.06)
    }
}

@keyframes zbShineSweep {
    0% {
        transform: translateX(-140%) skewX(-20deg)
    }
    100% {
        transform: translateX(300%) skewX(-20deg)
    }
}

@keyframes zbLockGlow {
    0%, 100% {
        filter: drop-shadow(0 0 3px rgba(252, 190, 13, 0.4))
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(252, 190, 13, 0.9))
    }
}

.zb-hero {
    background: linear-gradient(140deg, #1c1f23 0%, #272B30 50%, #2e3338 100%);
    padding: clamp(60px, 9vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

.zb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 65% at 85% 45%, rgba(252, 190, 13, 0.06) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 5% 85%, rgba(252, 190, 13, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.zb-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 28px);
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 52px;
    align-items: center;
}

@media (max-width: 720px) {
    .zb-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 480px) {
    .zb-hero-visual {
        display: none;
    }
}

.zb-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #FCBE0D;
    margin-bottom: 16px;
}

.zb-hero-tag::before, .zb-hero-tag::after {
    content: '';
    width: 24px;
    height: 1.5px;
    background: rgba(252, 190, 13, 0.35);
    display: block;
}

.zb-hero-title {
    font-size: clamp(24px, 3.8vw, 40px);
    font-weight: 900;
    color: #F5F7F6;
    line-height: 1.25;
    margin-bottom: 16px;
}

.zb-hero-title em {
    font-style: normal;
    color: #FCBE0D;
}

.zb-hero-desc {
    font-size: 14px;
    color: #9aa0a6;
    line-height: 1.95;
    margin-bottom: 0;
    max-width: 480px;
}

.zb-hero-desc strong {
    color: #F5F7F6;
}

.zb-info-box {
    margin-top: 22px;
    padding: 20px 22px;
    border: 1px solid rgba(252, 190, 13, 0.2);
    border-radius: 14px;
    background: rgba(252, 190, 13, 0.05);
    font-size: 13px;
    color: #9aa0a6;
    line-height: 1.85;
}

.zb-info-box strong {
    color: #FCBE0D;
}

.zb-info-box h2 {
    font-size: 14px;
    font-weight: 800;
    color: #F5F7F6;
    margin-bottom: 8px;
}

/* zarbod SVG visual */
.zb-hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.zb-bar-wrap {
    animation: zbBarFloat 4s ease-in-out infinite;
    position: relative;
}

.zb-bar-svg {
    width: 200px;
    height: auto;
    overflow: visible;
}

.zb-bar-shine {
    animation: zbShineSweep 3.5s ease-in-out infinite 1s;
}

.zb-seal {
    animation: zbSealPulse 2.5s ease-in-out infinite;
    transform-origin: 100px 50px;
}

.zb-lock-icon {
    animation: zbLockGlow 2.5s ease-in-out infinite;
}

.zb-serial {
    font-size: 10px;
    font-family: monospace;
    letter-spacing: 0.1em;
    color: rgba(252, 190, 13, 0.5);
    text-align: center;
    margin-top: 4px;
}

/* ══ TYPES ══ */
.zb-types {
    background: #F5F7F6;
}

.zb-types-head {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.zb-types-title {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 8px;
}

.zb-types-sub {
    font-size: 14px;
    color: #939598;
}

.zb-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 700px) {
    .zb-types-grid {
        grid-template-columns: 1fr;
    }
}

.zb-type-item {
    background: #fff;
    border-radius: 18px;
    padding: 26px 20px;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.zb-type-item:hover {
    box-shadow: 0 12px 32px rgba(47, 50, 53, 0.10);
    transform: translateY(-4px);
    border-color: rgba(252, 190, 13, 0.35);
}

.zb-type-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #FCBE0D, #F9DB81);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s;
}

.zb-type-item:hover::after {
    transform: scaleX(1);
}

.zb-type-num {
    position: absolute;
    top: 12px;
    left: 14px;
    font-size: 30px;
    font-weight: 900;
    color: rgba(252, 190, 13, 0.13);
    line-height: 1;
}

.zb-type-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: #272B30;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zb-type-icon i {
    font-size: 20px;
    color: #FCBE0D;
}

.zb-type-name {
    font-size: 14px;
    font-weight: 800;
    color: #2F3235;
}

.zb-type-desc {
    font-size: 12px;
    color: #939598;
    line-height: 1.7;
    margin: 0;
}

/* ══ WHY ══ */
.zb-why {
    background: #2F3235;
}

.zb-why-head {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.zb-why-title {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 800;
    color: #F5F7F6;
    margin-bottom: 8px;
}

.zb-why-sub {
    font-size: 14px;
    color: #939598;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.zb-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (max-width: 560px) {
    .zb-why-grid {
        grid-template-columns: 1fr;
    }
}

.zb-why-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 22px 20px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.zb-why-card:hover {
    background: rgba(252, 190, 13, 0.06);
    border-color: rgba(252, 190, 13, 0.18);
    transform: translateY(-3px);
}

.zb-why-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(252, 190, 13, 0.1);
    border: 1px solid rgba(252, 190, 13, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zb-why-icon i {
    font-size: 20px;
    color: #FCBE0D;
}

.zb-why-name {
    font-size: 14px;
    font-weight: 800;
    color: #F5F7F6;
    margin-bottom: 5px;
}

.zb-why-desc {
    font-size: 12px;
    color: #939598;
    line-height: 1.7;
    margin: 0;
}

.zb-why-note {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 12px;
    color: #6b7280;
}

.zb-why-note strong {
    color: #FCBE0D;
}

/* ══ COMPARE ══ */
.zb-compare {
    background: #fff;
}

.zb-compare-head {
    margin-bottom: clamp(22px, 3vw, 32px);
}

.zb-compare-title {
    font-size: clamp(20px, 2.8vw, 26px);
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 6px;
}

.zb-compare-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 20px rgba(47, 50, 53, 0.07);
}

.zb-compare-table {
    width: 100%;
    border-collapse: collapse;
    direction: rtl;
    font-size: 14px;
}

.zb-compare-table thead tr {
    background: #272B30;
}

.zb-compare-table thead th {
    padding: 16px 20px;
    font-size: 11px;
    font-weight: 700;
    color: #FCBE0D;
    letter-spacing: 0.05em;
    text-align: right;
    border: none;
}

.zb-compare-table tbody tr {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.zb-compare-table tbody tr:hover {
    background: rgba(252, 190, 13, 0.04);
}

.zb-compare-table tbody td {
    padding: 14px 20px;
    border: none;
    font-size: 13px;
    text-align: right;
    color: #555;
}

.zb-compare-table tbody td:nth-child(2) {
    font-weight: 800;
    color: #2F3235;
}

.zb-compare-table tbody td:nth-child(3) {
    color: #939598;
}

@media (max-width: 560px) {
    .zb-compare-table thead th, .zb-compare-table tbody td {
        padding: 12px 12px;
        font-size: 12px;
    }
}

.zb-compare-note {
    margin-top: 10px;
    font-size: 12px;
    color: #939598;
}

/* ══ PROCESS ══ */
.zb-process {
    background: #F5F7F6;
}

.zb-proc-head {
    margin-bottom: clamp(22px, 3vw, 34px);
}

.zb-proc-title {
    font-size: clamp(20px, 2.8vw, 26px);
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 8px;
}

.zb-proc-sub {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
}

.zb-proc-sub strong {
    color: #2F3235;
}

.zb-proc-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 24px;
}

.zb-proc-track::before {
    content: '';
    position: absolute;
    top: 26px;
    right: calc(100% / 6);
    left: calc(100% / 6);
    height: 2px;
    background: repeating-linear-gradient(90deg, #FCBE0D 0, #FCBE0D 8px, transparent 8px, transparent 16px);
}

@media (max-width: 560px) {
    .zb-proc-track {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .zb-proc-track::before {
        content: '';
        position: absolute;
        top: 43px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 69%;
        background: repeating-linear-gradient(to bottom, #FCBE0D 0, #FCBE0D 8px, transparent 8px, transparent 16px);
        right: 19px;
    }
}

.zb-proc-step {
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.zb-proc-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #272B30;
    border: 3px solid #FCBE0D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: 900;
    color: #FCBE0D;
}

.zb-proc-name {
    font-size: 14px;
    font-weight: 800;
    color: #2F3235;
    margin-bottom: 6px;
}

.zb-proc-desc {
    font-size: 12px;
    color: #939598;
    line-height: 1.7;
}

@media (max-width: 560px) {
    .zb-proc-step {
        gap: 14px;
        align-items: flex-start;
        text-align: right;
        padding: 0;
    }

    .zb-proc-circle {
        margin: 0;
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .zb-proc-name {
        margin-top: 2px;
        margin-right: 40px;
    }
    .zb-proc-desc{
        margin-right: 40px;
    }
}

.zb-proc-note {
    font-size: 12px;
    color: #939598;
}

.zb-faq {
    background: #272B30;
    padding: clamp(52px, 8vw, 88px) 0;
}

.zb-faq-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 28px);
}

.zb-faq-head {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.zb-faq-title {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 800;
    color: #F5F7F6;
    margin-bottom: 8px;
}

.zb-faq-sub {
    font-size: 14px;
    color: #939598;
}

.zb-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zb-faq-item {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.zb-faq-item input[type="checkbox"] {
    display: none;
}

.zb-faq-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #F5F7F6;
    background: rgba(255, 255, 255, 0.03);
    user-select: none;
    transition: background 0.2s;
    line-height: 1.5;
}

.zb-faq-label:hover {
    background: rgba(252, 190, 13, 0.06);
}

.zb-faq-arrow {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(252, 190, 13, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.2s;
}

.zb-faq-arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-left: 2px solid #FCBE0D;
    border-bottom: 2px solid #FCBE0D;
    transform: rotate(-45deg) translate(1px, -1px);
    display: block;
}

.zb-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
    padding: 0 20px;
    font-size: 13px;
    color: #939598;
    line-height: 1.85;
    background: rgba(0, 0, 0, 0.12);
}

.zb-faq-body strong {
    color: #F5F7F6;
}

.zb-faq-item input:checked ~ .zb-faq-label .zb-faq-arrow {
    transform: rotate(-180deg);
    background: rgba(252, 190, 13, 0.18);
}

.zb-faq-item input:checked ~ .zb-faq-body {
    max-height: 300px;
    padding: 16px 20px;
}
.zb-faq-footer {
    margin-top: 28px;
    text-align: center;
    font-size: 13px;
    color: #939598;
}
/*------------end shop-----------------*/
